Google+

Sunday, 14 December 2014

Algorithm: Stack : Post 7

     Stacks...
Stacks are linear data structure in which items may be added or removed only.
It is more precisely a data structure management technique and it can simply be thought as Last in - first out list
A stack is a list of elements in which an element may be inserted or deleted only at one end.
Stack

Wednesday, 3 December 2014

Algorithm: Array : Post 6

Array :

           An array is a data structure (linear data structure) which can store a fixed number of elements of the same data type.
An array is used to store a collection of data, but in a simpler way we can think of it as a collection of variables of the same type.

Saturday, 8 November 2014

Algorithm: Data structure : Post 5

A Data Structure is a particular way of organizing data in a computer so that it can be used efficiently. 
                   or in other words 
Data structure refers to a scheme for organizing related pieces of information. 

Different kinds of data structure are suited for different use and for different kinds of application, and some are highly specialized to specific tasks.

Saturday, 1 November 2014

Algorithm: Solutions to some Star and other pattern problems: Post 4

So lets see the solutions of the pattern problems, once that were asked in previous post and some other too.

Lets start with previously asked problem
As I am more into java I am writing java solution but you can easily implement then in C and C++ too

1.Draw pattern
*****
****
***
**
*

Tuesday, 28 October 2014

Algorithm: Looping: Post 3

Hey guys, Today we are discussing looping.
See looping is one of the most important part of programming, because almost every program uses loops.
And if you are interested in jobs related to I.T. industries then looping is one thing you need to have command on.

Some very basic questions asked during technical interview are:-
1.Draw pattern 
*****
****
***
**
*
2.Write 
                                                                             11111
                                                                             2222
                                                                             333
                                                                             44
                                                                             5

Monday, 20 October 2014

Algorithm: Proper Programming Practices: Post 2

See the best coding practices are only a set of informal rules that the software development community has learned over years which can improve quality of software.

Saturday, 18 October 2014

Algorithm: Introduction to World of Programming: Post 1

The biggest question here is, After all WHAT IS PROGRAMMING?

What is the Computer Programming?
It can be said that Computer programming is simply the act of writing computer program.