Analytical Section - Interview Questions and Answers
Analytical Section - Interview Questions and Answers
Question 1-3
Three men (Tom, Peter and Jack) and three women (Eliza, Anne and Karen) are spending a few months at a hillside. They are to stay in a row of nine cottages, each one living in his or her own cottage. There are no others staying in the same row of houses.
Question 1-3
Three men (Tom, Peter and Jack) and three women (Eliza, Anne and Karen) are spending a few months at a hillside. They are to stay in a row of nine cottages, each one living in his or her own cottage. There are no others staying in the same row of houses.
Labels:
Verbal
Analytical Reasoning
Analytical Reasoning
Analytical Section : Analytical Reasoning
Analytical Reasoning
This course provides extensive practice in test-taking strategies and verbal skills with individual feedback to raise your score on
the General Management Admissions Test.
The focus of the course is on the Analytical Reasoning section, but it also deals with the Logical Reasoning Section to the extent
Labels:
Verbal
Analytical Reasoning
logical REASONING
1) In a group of five persons A,B,C,D,and E
a)A and C are intelligent in English and Reasoning.
b)B and C are intelligent in English and General Awareness.
c)E and D are intelligent in Arithmatic and Inteview.
d)E is intelligent in Interview,reasoning and Arithe matic.
c)E and D are intelligent in Arithmatic and Inteview.
d)E is intelligent in Interview,reasoning and Arithe matic.
e)B and D are intelligent in Arithematic and General Awareness.
Labels:
Verbal
Write a c program to add two numbers without using addition operator
Add two numbers in c without using operator
How to add two numbers without using the plus operator in c
#include<stdio.h>
int main(){
int a,b;
int sum;
printf("Enter any two integers: ");
scanf("%d%d",&a,&b);
//sum = a - (-b);
sum = a - ~b -1;
printf("Sum of two integers: %d",sum);
return 0;
}
Sample output:
Enter any two integers: 5 10
Sum of two integers: 15
Explanation:
In c ~ is 1's complement operator. This is equivalent to:
~a = -b + 1
So, a - ~b -1
= a-(-b + 1) + 1
= a + b – 1 + 1
= a + b
Labels:
TECHNICAL COLLECTION
FIND POWER OF A NUMBER USING C PROGRAM
How to calculate power of a number in c
How to write power in c
#include<stdio.h>
int main(){
int pow,num,i=1;
long int sum=1;
printf("\nEnter a number: ");
scanf("%d",&num);
printf("\nEnter power: ");
scanf("%d",&pow);
while(i<=pow){
sum=sum*num;
i++;
}
printf("\n%d to the power %d is: %ld",num,pow,sum);
return 0;
}
Labels:
TECHNICAL COLLECTION
Write a c program to find out sum of digit of given number
Code 1:
1. C program to add digits of a number
2. C program for sum of digits of a number
3. C program to calculate sum of digits
Labels:
TECHNICAL COLLECTION


