Neudesic Latest placement paper On March 23,2012 in Hyderabad

Neudesic Latest  placement paper On March 23,2012 in Hyderabad

Name:
Name Of Institute:
Date:

Instructions: This paper consists of 3 sections. Choose the response that most accurately and completely answers each question. For questions 2, 5, 6, 7& 8 please provide the solution steps in the space provided. No negative marks will be allocated to wrong answers.

Neudesic Quantitative Ability Questions

1. If x and y are distinct negative integers greater than –10, what is the greatest possible product of x and y?
a) 2 b) 4 c) 72 d) 81 e) 90 

 
2. What is the maximum number of 3×3 squares that can be formed from the squares in the 6×6 checker board?
a) 4 b) 6 c) 12 d) 16    


3. 2 − (5 − 33[4 ÷ 2 +1]) =
a)–21 b) 32 c) 45 d) 60 e) 78 

4. Scott starts jogging from point X to point Y. A half-hour later his friend Garrett who jogs 1 mile per hour slower than twice Scott’s rate starts from the same point and follows the same path. If Garrett overtakes Scott in 2 hours, how many miles will Garrett have covered?
a) 11/5 b) 10/3 c) 4 d) 6 e) 20/3


5. Except for the first two numbers, every number in the sequence –1, 3, –3 . . . is the product of the two immediately preceding numbers. How many numbers of this sequence are odd?
a)One b)Two c)Three d) Four e) None of the Above


6. Some birds are sitting in an oak tree. Ten more birds land. More birds arrive until there are a total of four times as many birds as the oak tree had after the ten landed. A nearby maple tree has sixteen fewer than twelve times as many birds as the oak tree had after the ten landed. If both trees now have the same number of birds, how many birds were originally in the oak tree before the first 10 landed?

a)4 b) 7 c) 16 d) 24

7. AB + CD = AAA, where AB and CD are two-digit numbers and AAA is a three digit number; A, B, C, and D are distinct positive integers. In the addition problem above, what is the value of C?
a)1 b) 3 c) 7 d) 9 e) Cannot be determined

8. 
In the square above, 12w = 3x = 4y. What fractional part of the square is shaded?
a)2/3 b) 14/25 c) 5/9 d) 11/25 e) 3/7


9. A and B are standing in a queue. A is 18th from the front and B is 11th from the back. If there are 5 persons standing between A and B, then how many persons are standing in the queue?
a)34 b) 22 c) 28 d) Cannot be determined


10. The length of a rectangle is 25 m more than its breadth. If its length is decreased by 15 m and its breadth is increased by 10 m, it would become a square. Find its perimeter (in m).
a)70 b) 30 c) 190 d) None of the Above

 

Neudesic Verbal Ability Questions

1. If fallacy is to fallacious and malice is to malicious, then intruder to
a) Intrusive b) Intruded c) Intrude d) Intrudes
2. Pick out the right sentences
1. All of the trees didn’t have any leaves
2. She offered me some money but I refused
3. I felt very proud of myself
4. His daughter is married to a doctor
a) 3 & 2 b) 2 & 4 c) 3 & 4 d) 1 & 2
3. Choose the sentence where the underlined word is used correctly
a. The ripple breeze sways the crops
b. The problems of the textile industry have created ripple economy
c. Just one delayed flight can have a ripple effect.
d. Europe’s currency ripple crisis continues to be felt

 

4. Pick the correct option to complete the sentence. If you speak to the captain——–
a. I am sure he is going to help you
b. I am sure he would help you
c. I am sure he will help youd.

d.I am sure he could help you   
5. Which word does not make a sensible word/phrase when added to the word: HEAVY?
a) Weight b) Set c) Duty d) Scream

 

6. Arrange the following in the right order to make a complete sentence
i. By the Chinese media, with TV stations broadcasting
ii. Along with some gruesome video of rescue operations
iii. The earthquake received blanket coverage
iv. Almost hourly updates of the number of fatalities
a. ii, i, iii, iv
b. iv, i, iii, ii
c. iii, i, iv, ii
d. ii, iii, iv, i

 

For questions 7 to 8: Select the option that indicates the grammatically correct and appropriate sentence(s).
7.   (A) Such things do not happen to you and I do they?
(A) The visiting lecturer complained about the poor accommodation at the hostel.
(B) Ram, as well as his brothers, are coming to town.
(C) The wages of sin is death.
a) C and D b) A and B c) B and D d) A and C 
8. (A) Everyone is looking forward to see Shahrukh Khan.
(B) One of the halls have been closed for a week
(C) Mr Kumar was not at all satisfied with his new assignment.
(D) I have only a one-rupee note.
a) A, B and D b) A and B c) C and D d) B and C
Directions for questions 9– 10: Select one possible filler sentence to complete the given statement in the form of a small paragraph.
9.  Most people have certain prejudices against certain types or styles of writing. (…) But these are common and meaningful modes of communication that we need to study and understand.
(A) For example, popular science and children’s fiction are considered unintellectual
(B) Some of us would regard ‘Sunday magazine’ journalism and advertising as cheap and even improper.
(C) Great essayists have always been a source of inspiration to young writers
a) only A b) only B c) only C d) A or B
10. Teachers and professionals imparting technical training use speech, writing and diagrams in various combinations (…) Responding to this the Technical Education Council has recommended a course on “communication theory” as common core item.
(A) Yet technical students receive no instruction in the theory and use of information structures in communication
(B) Soon interactive video will be a common feature of technical education
(C) Steadily failing costs have brought sophisticated information technology to the door of the typical classroom
a) only A  b) only B c) only C d) A or B
Neudesic C Language Questions
1. What will print out?
main()
{
char *p1=“name”;
char *p2;
p2=(char*)malloc(20);
memset (p2, 0, 20);
while(*p2++ = *p1++);
printf(“%sn”,p2);
}


2. What will be the output when you execute following c code?
#include<stdio.h>
#define var 3
int main(){
char *cricket[var+~0]={“clarke”,”kallis”};
char *ptr=cricket[1+~0];
printf(“%c”,*++ptr);
return 0;
}
Choose all that apply:
(A) a
(B) r
(C) l
(D) Compilation error
(E) None of the above


3. What will be the output of the following c program?
#include<stdio.h>
int main(){
int goto=5;
printf(“%d”,goto);
return 0;
}
(A) 5
(B) **
(C) **
(D) Compilation error
(E) None of these


4. What will be the output of the following c code?
#include<stdio.h>
int main(){
int i,j;
i=j=2,3;
while(–i&&j++)
printf(“%d %d”,i,j);
return 0;
}
(A) 2
(B) 3
(C) 13
(D)Infinite loop
(E) Compilation error


5. What will be the output of the following program?
#include<stdio.h>
int main(){
int i = 3;
int *j;
int **k;
j=&i;
k=&j;
printf(%u %u %d ”,k,*k,**k);
return 0;
}
(A) Address, Address, 3
(B) Address, 3, 3
(C) 3, 3, 3
(D) Compilation error
(E) None of above


6. What will be the output when you execute the following c code?
#include<stdio.h>
int main(){
int const SIZE=5;
int expr;
double value[SIZE]={2.0,4.0,6.0,8.0,10.0};
expr=1|2|3|4;
printf(“%f”,value[expr]);
return 0;
}
Choose all that apply:
(A) 2.000000
(B) 4.000000
(C) 8.000000
(D) Compilation error
(E) None of the above


7. What will be printed as a result of the operation below:
int x;
int modifyvalue()
{
return(x+=10);
}
int changevalue(int x)
{
return(x+=1);
}
void main()
{
int x=10;
x++;
changevalue(x);
x++;
modifyvalue();
printf(“First output:%dn”,x);
x++;
changevalue(x);
printf(“Second output:%dn”,x);
modifyvalue();
printf(“Third output:%dn”,x);
}


8. What will be printed a result of the operation below:
#define swap(a,b) a=a+b;b=a-b;a=a-b;
void main()
{
int x=5, y=10;
swap (x,y);
printf(“%d %dn”,x,y);
swap2(x,y);
printf(“%d %dn”,x,y);
}
int swap2(int a, int b)
{
int temp;
temp=a;
b=a;
a=temp;
return 0;
}


9. What will be printed as a result of the operation below:
main()
{
int x=5;
printf(“%d,%d,%dn”,x,x< <2,x>>2);
}


10. What will be the result of the following code?
#define TRUE 0 // some code
while(TRUE)
{
// some code
}


11. What will be the output of the following c program?
#include<stdio.h>
int main(){
int;
int public=25;
int private=30;
class = class >> private – public;
printf(“%d”,class);
return 0;
}
(A) 1
(B) 2
(C) 4
(D) Compilation error
(E) None of these


12. What will be the output of the following c program?
#include<stdio.h>
int main(){
long int 1a=5l;
printf(“%ld”,1a);
return 0;
}
(A) 5
(B) 51
(C) 6
(D) Compilation error
(E) None of these


13. What will be the output when you execute the following c code?
#include<stdio.h>
int main(){
int a=5,b=10,c=1;
if(a&&b>c){
printf(“cquestionbank”);
}
else{
break;
}
return 0;
}
Choose all that apply:
(A)cquestionbank
(B)It will print nothing
(C)Run time error
(D)Compilation error
(E)None of the above


14. What will be the output when you execute the following c code?
#include<stdio.h>
#define L 10
int main(){
auto money=10;
switch(money,money*2){
case L: printf(“Willian”);
break;
case L*2:printf(“Warren”);
break;
case L*3:printf(“Carlos”);
break;
default: printf(“Lawrence”);
case L*4:printf(“Inqvar”);
break; Copyright@ritesh kumar: http://cquestionbank.blogspot.com/ Page 15
}
return 0;
}
Choose all that apply:
(A) Willian
(B) Warren
(C) Lawrence Inqvar
(D) Compilation error: Misplaced default
(E) None of the above


15. What will be the output of the following c code?
#include<stdio.h>
int main(){
int x=011,i;
for(i=0;i<x;i+=3){
printf(“Start “);
continue;
printf(“End”);
}
return 0;
}
(A) End End End
(B) Start Start Start
(C) Start End Start
(D) Start Start Start Start
(E) Compilation error

 

 

Leave a Reply0

Your email address will not be published.