Friday, May 21, 2010

How much knowledge of programming (Java, C++, etc) must I have to get an entry level job as a systems analyst?

Most systems analysts know little to nothing about programming.





That said, it would serve you well to learn VBA (Visual Basic For Applications), which will help you script Microsoft Office applications to perform better; and you will want a basic understanding of SQL.





While not needed, you will find a strong VBA background and basic SQL skills will make you much more marketable as an analyst.

How much knowledge of programming (Java, C++, etc) must I have to get an entry level job as a systems analyst?
None. A programmer has to have programming knowledge. That's why they call us programmers.





Analysts write memos and stuff so that the skilled programmers do not have to waste time with mundane things. Unfortunately, this also means that they have more time to go to lunch with managers and get their name all over the documents they write, so they usually get paid more.
Reply:Check the job description man... Look on the internet like http://www.monster.com. :P


Simple source code in C programming that implements "Merge Sort" in sorting an array.?

I really need a source code in C programming that uses merge sort in sorting an array. I need the most simplest and easiest program for me to understand it. Can you please help me?. thanks! godbless!!

Simple source code in C programming that implements "Merge Sort" in sorting an array.?
Example: 3 5 2 6 8





This is the function:





mergesort(int a[], int low, int high)


{


int mid;


if(low%26lt;high)


{


mid=(low+high)/2;


mergesort(a,low,mid);


mergesort(a,mid+1,high);


merge(a,low,high,mid);


}


return(0);


}





merge(int a[], int low, int high, int mid)


{


int i, j, k, c[50];


i=low;


j=mid+1;


k=low;


while((i%26lt;=mid)%26amp;%26amp;(j%26lt;=high))


{


if(a[i]%26lt;a[j])


{


c[k]=a[i];


k++;


i++;


}


else


{


c[k]=a[j];


k++;


j++;


}


}


while(i%26lt;=mid)


{


c[k]=a[i];


k++;


i++;


}


while(j%26lt;=high)


{


c[k]=a[j];


k++;


j++;


}


for(i=low;i%26lt;k;i++)


{


a[i]=c[i];


}


}





______________________________________...


______________________________________...





MergeSort uses divide %26amp; conquer strategy to sort the elements.


Here, you go on dividing till only one element is left.


Then this element will be merged with the next one and both will be put in correct order and since this is a recursive function, it will be repeated till you complete the merge and come out.





So, here is the sequence of calls:


a[] = {3, 5, 2, 6, 8}


low = 0; high = 4;


mergesort(a, 0, 4)


mid = 0 + 4 / 2 = 2


mergesort(a, 0, 2)


mergesort(a, 3, 4)


merge(a, 0, 4, 2)





So, each of the mergesort() calls will again go back and call mergesort() and merge(),


this goes on till: (low %26lt; high) is satisfied.





In the above example, there are only 5 elements; it is very easy to simulate. So, why don't you go on trying—as I showed—till it comes out. You will see a sorted list. It is worth doing this excercise, and in the end, you will know how it works.


Code in C programming that after i enter 10 numbers i can search 1 number by using linear search in the array.

Please help me, i really need the code in C programming that after i enter 10 numbers i can search 1 number by using linear searh. Thank you so much in advanse.

Code in C programming that after i enter 10 numbers i can search 1 number by using linear search in the array.
Sounds easy.





declare array of int


get int


put in in array


stop after 10 numbers


ask for number to search for


loop over array til number found


How do i pass c++ programming and database??

Have you tried to learn?

How do i pass c++ programming and database??
DUH...... Report It

Reply:master C first. then go on
Reply:Try some tutorial online.

purple flowers

Is there any good C++ game programming books?

Is there any good C++ game programming books out there that are good for beginners and intermediates?

Is there any good C++ game programming books?
Yes, I have a book that is very helpful called "C++ for Dummies". It is written in plain English and not geeky talk, and it helps you learn quickly. It comes with a free compiler and program examples on a disk.


Also check out "The Complete Idiot's Guide to C++".





Good luck!!!


How can we go from one window to another in windows programming in C???

for eg. if in 1 window there is a option of "start'...by clicking to the 'start '..a new window should open...Plzz provide the code for this in C language...

How can we go from one window to another in windows programming in C???
This is just a guess, but maybe you would want to call the CreateWindow (or CreateWindowEx) function when the "start" button is pressed?





You haven't specified, so I'm only assuming that you are talking about Win32 programming.





See link below.


Sunday, August 2, 2009

C programming: how would i go about this question:?

I'm trying to help my friend out with this and we cant get it working. How would you go about doing this?





1. Write a C program that opens two data files one for reading and another for


writing. The program must copy the contents of input data file to output file


with the data double line spaced. Example below. The program must work


for all data files [ and not just for the following example ]





Input file:





Earth is Solid


So is Moon.





Output File:





Earth is Solid





So is Moon.

C programming: how would i go about this question:?
If ur talkin bout c++ then its here:





#include%26lt;iostream.h%26gt;


#include%26lt;conio.h%26gt;


#include%26lt;fstream.h%26gt;


class handle2files


{


public:


readnWrite();


};


void handle2files::readnWrite()


{


ifstream inputfile;


inputfile.open("filename.ext");


ofstream outputfile;


outputfile.open("filename.ext",ios",io...


char ch[300]; //to temporarily store each char from input file


while(inputfile)


{


inputfile.get(ch[i]);


if(ch[i]=='\n') signal=-1; //one line read


cout%26lt;%26lt;ch;


if(signal==-1)


{


ch[++i]='\n'; //this is to add one more line gap(doubled gap)


outputfile.write(ch,sizeOf(ch)); //line written into output file


signal=0; i=0;





}


}


inputfile.close();


outputfile.close();


//done!


}





void main()


{


handle2files object;


object.readnWrite();


getch();


}
Reply:Open the input file for read


Read the first record


If end-of-file


print error message


end-if


Open the output file or write





Loop until end-of-file


output = input + '\n\n'


write output file


read input file


end-loop





Close input file


Close output file





That should do it.
Reply:Computer Tutorials, Interview Question And Answer


http://freshbloger.com/