Symmetric technologies interview questions.
For Computer science candidates the first round is a
objective type written test consisting of 16 questions.It is
very easy ,any police man can solve this. And next round is
a written test consists of both objective and subjective
.Total 40 question related to c,c++ and operating system
related questions.
And then a technical interview and give some program to
solve with computer.The md is adamant person, whatever he
says we have to accept that is the condition.
And one more thing ,,,these interview is just for a
formality..the company will select only innocent guys.. the
person's without a backbone only they require..
And u have to submit the certificates this is the most
important problem...So if you are not getting any other
jobs..then only join with this...
It is better to try for other company...And apart from that
symmetric do a lot of projects..If a candidate can manage
everything u can join and make good career with this
company... The Md will normally speak rudely..but he is good
person and he will give you a lot of very good chances to
improve your career....but with cheap salary....
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?
write a program to find the number of even integers and odd integers in a given array in c language
13 Answers IAI Cameroun, NIIT, Olive Tech, QIS,
what is the output for the code : main() { int i,j; printf("%d %d ",scanf("%d%d",&i,&j)); }
how to find that no is int or float?
How to write in a function declaration and in function call in which the function has 'n' number of varible or arguments?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
int a=1,b=2,c=3; printf("%d,%d",a,b,c); What is the output?
What is the size of structure pointer in c?
Can a pointer be volatile in c?
What is multidimensional arrays
What is the o/p of the follow pgm? #include<stdio.h> main() { char char_arr[5]=”ORACL”; char c=’E’; prinf(“%s\n”,strcat(char_arr,c)); } a:oracle b. oracl c.e d.none
9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?