ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
tip       Ask Questions on ANYTHING, that arise in your Daily Life at     FORUM9.COM
Google
 
Categories  >>  Software  >>  Programming Languages  >>  C
 
 


 

 
 C interview questions  C Interview Questions
 C++ interview questions  C++ Interview Questions
 VC++ interview questions  VC++ Interview Questions
 Delphi interview questions  Delphi Interview Questions
 Programming Languages AllOther interview questions  Programming Languages AllOther Interview Questions
Question
why i join syntel?
 Question Submitted By :: Guest
I also faced this Question!!     Rank Answer Posted By  
 
  Re: why i join syntel?
Answer
# 1
becouse the opportunities provide by syntel is much better 
for me and the envoerment is good for workers
 
Is This Answer Correct ?    2 Yes 4 No
Guest
 
  Re: why i join syntel?
Answer
# 2
work environment is good. but pls post questions for 
technical related this is help to others
 
Is This Answer Correct ?    1 Yes 5 No
Softwaretester4u
[EDS]
 
 
 
  Re: why i join syntel?
Answer
# 3
because i think it is the perfect start for my future. and 
think iwill gain a lots of experience by working in syntel
 
Is This Answer Correct ?    2 Yes 4 No
Guest
 
  Re: why i join syntel?
Answer
# 4
every person have their own targets, and one can reach 
their targets easily if they can join in syntel.BECAUSE  OF 
that i want to join in syntel.
 
Is This Answer Correct ?    1 Yes 6 No
Venu,1cse,vec,guntur
 
  Re: why i join syntel?
Answer
# 5
Every one have a willing to starring in the future.Syntel 
is one of the good MNC in the IT field.So who are all want 
to acheive something good than others, they will surely 
join in syntel
 
Is This Answer Correct ?    1 Yes 7 No
Jagadeesan E.s
 
  Re: why i join syntel?
Answer
# 6
Syntel's entrepreneurial culture encourages employees to
think and act like company owners, delivering a 

culture of Opportunity, Choice, and Ownership.It increases
interpersonal skills as well as problem solving skills in
the global world.
 
Is This Answer Correct ?    2 Yes 4 No
Anita
 
  Re: why i join syntel?
Answer
# 7
It is used to take risks,develop creative solution among
client/employees.It gives lots of confidence to work in a
business level.
 
Is This Answer Correct ?    0 Yes 6 No
Rose
 
  Re: why i join syntel?
Answer
# 8
I dont have job, at least this.
 
Is This Answer Correct ?    6 Yes 2 No
Dummi
 
  Re: why i join syntel?
Answer
# 9
i search job for my career . syntel is one of the good 
company for my job career.
 
Is This Answer Correct ?    0 Yes 5 No
Surya
 
  Re: why i join syntel?
Answer
# 10
its my target....
 
Is This Answer Correct ?    1 Yes 5 No
Anu
 
  Re: why i join syntel?
Answer
# 11
I am totally vexed in attending companies....n i hope i cud 
crack syntel n i wanna begin my career...
 
Is This Answer Correct ?    0 Yes 5 No
Anu
 
  Re: why i join syntel?
Answer
# 12
Good for beginner
very good environment to work for a fresher.

If you want to start ur career and want to settle in life 
syntel is one of the very good company. it have employeee 
freindly environment, you would have cheers here.

But people who are unsatisfied and A type personlity very 
bad for them. Syntel's tag is COme grow with us.

Growth is not for a experienced person.

They are specialized in Mainframe and recon(in KPO). I 
think world is far ahed of this. their vertical so bad

As for organisation heirerchy is concerned it have "tall 
one" this is very bad.

Top level management has very good vision, but middle level 
and lower level. SO Bad. Only puppet get promotion and 
variables

If every employee would vision of keshav and bharat, 
difinitely syntel will grow. But ground level is totaly 
different from this. 

I never listened any syntel employee who apraised his/her 
manager. like onther company's employee who party with boss.
One more think is there, middle level management never 
engaged with employee. neither they listened their 
greviences.
 
Is This Answer Correct ?    1 Yes 5 No
Sac
 

 
 
 
Other C Interview Questions
 
  Question Asked @ Answers
 
dynamically allocate memory for linear array of n integers,store some elements in it and find some of them  1
What character terminates all strings composed of character arrays? 1) 0 2) . 3) END  3
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+.... Ignou2
what's the return value of malloc()  8
program for comparing 2 strings without strcmp()  3
what is the other ways to find a logic to print whether a number is an even or odd wit out using % symbol??????? i know three different ways to print it. so i need any other different logic>>>>> TCS3
User define function contain thier own address or not.  2
Is reference used in C?  1
please give me answer with details #include<stdio.h> main() { int i=1; i=(++i)*(++i)*(++i); printf("%d",i); getch(); }  3
Give me basis knowledge of c , c++...  4
Is main() function predfined or userdefined?  7
Write code for initializing one dimentional and two dimentional array in a C Program? Deshaw5
Write a program to remove the C comments(/* */) and C++ comments(//) from a file. The file should be declared in command line. Subex2
int i =10 main() { int i =20,n; for(n=0;n<=i;) { int i=10 i++; } printf("%d", i); HCL5
what are the languages used in c#? Infosys1
what is output of the following statetment?Printf(“%x”, -1<<4); ?  3
Find string palindrome 10marks Honeywell5
write an algorithm which can find the largest number among the given list using binary search ............... this was asked in the interview Satyam2
main() { printf(5+"good morning"); printf("%c","abcdefgh"[4]); }the o/p is morning and e...how someone explain  1
f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p? Hughes4
 
For more C Interview Questions Click Here 
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com