Aptitude (30 minutes, 30 Questions)
- Verbal
- Analogies
- Word-word
- There would be five options,out of which one word would belong to the same category as the remaining words.
- logical reasoning(like GRE, but easy)
Non-verbal
1. What would be the next figure in the sequence
- Quantitative aptitude
- Time and work(easy)
- Allegation and mixture
As concentration is 10%,b’s 20%,c’s 30%.the liquids are mixed in the ratio 1:2:3.the resultant concentration of the mixture is 23%.find each’s concentration. (I am not sure about the numbers)
- Time and distance in a 100m race ‘a’ is ahead of ‘b’ by 10feets.if the speed
- Of b is increased by 3m/s she is ahead of ‘a’ by 10feets in 120m race.find the speed of ‘a’. Age(easy)
- Data interpretation (questions were asked from the above models for me)
2.c Or c++(it’s your choice to choose one,30 minutes,30 questions)
It was bit tough
- pointers
- function pointer
- structure
struct emp
{
Int a;
char b;
};
struct mn
{
double c;
struct emp d;
} q;
Q.sizeof(q)
ans:11(check it)
*char a="kamal";
char p*="anand";
a)compilation error
b)runtime error
c)work properly
d)
*char a[]={10,20,20,30};
*if there is a global variable defined in another file is it necessary to define it again in the current program.
char *p;
int b;
p=&a;
b=*p++;
printf("%d",b);
(this is all i remember)