Suppose there are three modules A-B-C, the output of A is responsible for B and output of B is responsible for C and if A & C is not ready & B module is ready then how can u check Module B
4 9278main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 33211#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }
14 47471Hi, Could any one tell me which schema (star and snow flake schema) will take much space? Thanks S.A.K
6 11435Post New TCS Interview Questions
what are the different type of normalization? : Sql dba
Explain asset history sheet? : fi- asset accounting
What are the different components of culture?
what is swap-in and swap-out?
What is the problem of ordered sequential files access?
How to select first n records in teradata?
How do I delete a database in phpmyadmin?
What is the usage of apex program with within visual force page?
Which is the best os for mobile?
What is the procedure to recover a namenode when it is slow?
How to update table using module?
Why does java doesnt suuport unsigned values?
What are php magic methods/functions?
Why to use Html.Partial in ASP.Net MVC?
Is array faster than arraylist?