my name is nani i completed my b-tech in hyd now i want go
for interveiw but i dont know the process of software field
interveiws plz help me anyone how many rouds there n what
rounds plz plz plz help me n where i can get these details
Answer Posted / padma
in some companys three rounds are held so u can prepare technical questions in web sites
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are preprocessor directives in c?
What is the scope of global variable in c?
What is c mainly used for?
What is ambagious result in C? explain with an example.
What is the difference between a function and a method in c?
what are the facialities provided by you after the selection of the student.
What is %d called in c?
Why doesnt this code work?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
What is far pointer in c?
How can I run c program?
How do we open a binary file in Read/Write mode in C?
Explain what does it mean when a pointer is used in an if statement?
Can the size of an array be declared at runtime?
I came across some code that puts a (void) cast before each call to printf. Why?