i want to know aptitude questions,technical questions
Answers were Sorted based on User's Feedback
Answer / gokul
yes i need to know aptitude questions,technical questions
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / vignesh1988i
SEE.,..... 1 ST ROUND WILL BE THE APTITUDE ROUND.......
in this basic questions on maths,vocabulary, reasoning
questions will be asked...... it can be online or writtern
accordsing to the companies...............
in vocabulary section:
meanings .... antonyms and synomys will be given so refer
GRE BARRONS 12th edition..........
comprehension passasges.... word anology........ sentence
corrections .............
in quantitative section:(BASIC MATHS)
questions related to numbers sequences,time and
distances, work finish sums, graphs will be given from that
questions will be asked....., next is pipes and cartesims
sums,,,, age problems,.... mixtures and allegation
problems....... etc etc will be asked....... so PLEASE REFER
TO PREVIOUS YEARS QUESTIONS AND R.S.AGGARWAL..............
in reasoning section:
critical reasoning......... TCS followes this.......
pl. refer GRE BARRONS 12th edition......... a passage will
be given.. then 5 q. will be asked ..... but the given all
choices you would think it is correct.. but one only it wil
be .......... this will be always tough...... then logical
reasoning.................. here you have to draw an see as
venn diagrams etc........ refer GRE BARRONS.............
TECH.INTERVIEW
if you are an comp. student you must have ideas about
C.C++,OS,data structures,DBMS very important....... and
microprocessors.......... what you put as your AREA OF
INTEREST they will concentrate in that........ questions
also will be there from your projects.........
if you are an non IT student.... you ought to
know C/C++.... basic criteria.......... if you are strong
enough in C/c++ you can be sure to enter any IT
companies...................................................
ALL THE BEST
| Is This Answer Correct ? | 4 Yes | 1 No |
What is difference between constant pointer and constant variable?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
What is #include stdlib h?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
Write a C function to search a number in the given list of numbers. donot use printf and scanf
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
void main() {int a[5],i,b=16; for(i=0;i<5;i++) a[i]=2*i; f(a,5,b); for(i=0;i<5;i++) printf("\n %d",a[i]); printf("\n %d",b); } f(int *x,int n,int y) { int i; for(i=0;i<n;i++) *(x+i)+=2; y=y+2; }wat r the errors in the prg.and improvise the prg to get o/p.?
if the area was hit by a virus and so the decrease in the population because of death was x/3 and the migration from other places increased a population by 2x then annually it had so many ppl. find our the population in the starting.
How many levels of pointers can you have?
Why is sizeof () an operator and not a function?
How are Structure passing and returning implemented by the complier?