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 |
from which concept of 'c', the static member function of 'c++' has came?
How can you return multiple values from a function?
Is c call by value?
what is the advantage of software development
Explain how can you check to see whether a symbol is defined?
if p is a string contained in a string?
Can variables be declared anywhere in c?
Write a function to find the area of a triangle whose length of three sides is given
what is the differance between pass by reference and pass by value.
1. Write a c pgm to print 1 to 100 without using loops. 2. Write a c pgm for leap year 3. Write a c pgm fibbonacci series,factorial 4. Write a c pgm count no of lines , blanks, tabs in a para(File concept) 5. Write a c pgm to print the letter as per given condition i.e.. if u give 4 out put should b 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 6.how do get the o/p in number from 1 to 100 in the screen without using control statement? 7. who do u print the word "hello world" without using "printf" statement? 8. write sql program to get the detail of student in a class? Definitions: structure union arrays linkedlist macros directives difference b/w pre processorsDiffrence: 1.Constructors and destructors 2.Structure and Union 3.Array and Lists 4.pre processor... 5. Privillages in C++ 6.structure and union 7.break and continue 8.while and dowhile Pgm..
Given a number N, product(N) is the product of the digits of N. We can then form a sequence N, product(N), product(product(N))… For example, using 99, we get the sequence 99, 99 = 81, 81 = 8. Input Format: A single integer N Output Format: A single integer which is the number of steps after which a single digit number occurs in the sequence. Sample Test Cases: Input #00: 99 Output #00: 2 Explanation: Step - 1 : 9 * 9 = 81 Step - 2 : 8 * 1 = 8 There are 2 steps to get to this single digit number. Input #01: 1137638147
what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits