please give me some tips for the selection in TCS.
Answers were Sorted based on User's Feedback
Answer / sukekshani
for written exam...prepare GRE Barrons 12
edition...n.....for tech interviwe...b confident for every
answer
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / vassu
Be cofident.... perfect with ur basics they don't ask u
deeply in tech round.... All the best....
| Is This Answer Correct ? | 0 Yes | 0 No |
What is 02d in c?
#include<stdio.h> void main() { int a [5]; for (i=0; i<=4; i++) printf(ā%dā ,a[i]); }
How can you tell whether two strings are the same?
Write a C++ program to give the number of days in each month according to what the user entered. example: the user enters June the program must count number of days from January up to June
value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?
Explain how do you print only part of a string?
What will be the result of the following program? main() { char p[]="String"; int x=0; if(p=="String") { printf("Pass 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } else { printf("Fail 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } } a) Pass 1, Pass 2 b) Fail 1, Fail 2 c) Pass 1, Fail 2 d) Fail 1, Pass 2 e) syntax error during compilation
What is return type in c?
what are threads ? why they are called light weight processes ? what is the relation between process and threads ?
Why ca not I do something like this?
code for bubble sort?
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)