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
int arr[] = {1,2,3,4} int *ptr=arr; *(arr+3) = *++ptr + *ptr++; Final contents of arr[]
Write a program to find the biggest number of three numbers in c?
Write an algorithm for a program that receives an integer as input and outputs the product of of its digits. E.g. 1234 = 24, 705 = 0
What is volatile variable in c with example?
What is bash c?
What are the preprocessor categories?
What is the meaning of this decleration? unsigned char (*pArray[10][10]); please reply.
Read two numbers from keyboard and find maximum of them?
What is the output of printf("%d", printf("Hello"));?
What is null in c?
What is the difference b/w Structure & Union?
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }