Sunday 26 October 2014

Is mathematics necessary for programming?



In my experience math is required in programming, you can't get away from it. The whole of programming is based on math.
The issue is not black and white, but more colorful. The question is not whether or not you need math, but how much. The higher levels of math will give you more tools and open up your mind to different paths of though.
For example, you can program if you only known addition and subtraction. When multiplication is required, you will have to perform a lot of additions. Multiplication simplifies repetitive additions. Algebra allows one to simplify math before implementing it into programs. Linear Algebra provides tools for transforming images. Boolean Algebra provides mechanics for reducing all those if statements.
And don't forget the sibling to mathematics, Logic and Philosophy. Logic will help you make efficient use of case or switch statements. Philosophy will help you understand the thinking of the guy who wrote that code you are modifying.
Yes, you don't need much math to write programs. Some programs may require more math than others. More math knowledge will give you an advantage over those who have lesser understanding. In these times, people need every advantage they can get to obtain those jobs.

So the answer to your question is - it depends on what you are trying to do.

Advanced maths knowledge is vital if you're going to be writing a new programming language. Or you need write your own algorithms.


Friday 16 May 2014

JAVA, Excel Related Softwares

JAVA, Excel Related Soft wares

 JAVA

netbeans - Framwork
JAVA COFFEE CUP



SQL SERVER


VISUAL STUDIO


Friday 16 March 2012

ASP.NET

ASP.NET

According to Microsoft, "ASP.NET is a technology for building powerful, dynamic Web applications and is part of the .NET Framework".

Basic HTML and CSS knowledge is preferable. Having worked with Classic ASP or PHP won't give you much of an advantage, since ASP.NET is a whole new way of doing things.

The most common languages for writing ASP.NET applications are C# and VB.NET.

The 2 languages are not that different, and if you have used one of them, you will have no problems at all learning the other.


One of the main differences between ASP.NET and Classic ASP/PHP is the fact that ASP.NET is compiled, while Classic ASP is always interpreted. PHP can be compiled by using commercial products, but usually it's interpreted as well.

Friday 6 January 2012

GROUPWARE


The popular term for the software component that supports the collaborative efforts of a team.
Groupware Supports Three Functions:

  1. Team Dynamics
  2. Document Management
  3. Applications Development

Monday 28 November 2011

Introduction to Networking Tutorials


These free training courses will give you what it takes to become an IT professional

Introduction to Networking Tutorials

training package

FREE OF CHARGE.
This free training can be used towards achieving full Microsoft Accreditation.
This is a completely free system that offers you flexibility and choice without any long-term commitments. Designed to increase access to online learning provision, the site offers an ever growing list of course titles covering many topics.
You’ll do your learning online so all you need is access to the Internet.  This means you can learn at a time, place and pace to suit you.

 



http://www.free-online-training-courses.com/introduction-networking/?gclid=CN6T9bn72KwCFaZV4godExyhvA

Thursday 24 November 2011

Compiler

Compiler


compiler is a computer program (or set of programs) that transforms source code written in a programming language (the source language) into another computer language (the target language, often having a binary form known as object code). The most common reason for wanting to transform source code is to create an executable program.