Questions

Q:

In the following question, a sentence has been given in Active/Passive voice. Out of the four alternatives suggested, select the one which best
expresses the same sentence in Passive/Active voice.
They renovated the restaurant in 2017.

A) The restaurant was renovated by them in 2017. B) Renovating the restaurant was done by them in 2017.
C) The renovated restaurant was by them in 2017. D) The restaurant in 2017 was being renovated by them.
 
Answer & Explanation Answer: A) The restaurant was renovated by them in 2017.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English

1 2340
Q:

Match List-I with List-II and select the correct answer using the code given below the Lists :

A) ABCD - 4 3 2 1 B) ABCD - 4 2 3 1
C) ABCD - 1 2 3 4 D) ABCD - 1 3 2 4
 
Answer & Explanation Answer: A) ABCD - 4 3 2 1

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

1 2340
Q:

In the following question the 1st and the last part of the sentence/passage are numbered 1 and 6. The rest of the sentence/ passage is split into four parts and named P, Q, R and S. These four parts are not given in their proper order. Read the sentence/passage and find out which of the four combinations is correct.

 

1. Rose was lonely in the house.
P. She was very good at that.
Q. She sat all day in a room on the terrace.
R. She would sit on the rug and do her reading and writing.
S. It was a little room with nothing but a bed and a rug.
6. It was the only thing she had learnt from the convent.

 

A) QRSP B) RSPQ
C) QSRP D) PSQR
 
Answer & Explanation Answer: C) QSRP

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2340
Q:

To keep warm, polar bears have a layer of ________ under their skin.

A) muscle B) fat
C) cartilage D) hair
 
Answer & Explanation Answer: B) fat

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

0 2340
Q:

An oligarchy is best defined as

A) rule by one B) rule by few
C) rule by many D) All of the above
 
Answer & Explanation Answer: B) rule by few

Explanation:

An oligarchy is the form of government which is rule by few form and that few people may be military control, or by wealthy society or through ethnic identities.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

2 2340
Q:

Who is the veteran communist leader and CM of West Bengal for a record five consecutive tems until Nov 2000?

Answer

Jyoti Basu

Report Error

View answer Workspace Report Error Discuss

1 2340
Q:

The average of five consecutive even numbers is 40. What is the value of smallest of these numbers?

A) 35 B) 36
C) 44 D) 48
 
Answer & Explanation Answer: B) 36

Explanation:
Report Error

View Answer Report Error Discuss

0 2339
Q:

Write a c program to print multiplication table

Answer

 #include<stdio.h>
int main(){
  int r,i,j,k;
  printf("Enter the number range: ");
  scanf("%d",&r);
  for(i=1;i<=r;i++){
      for(j=1;j<=10;j++)
           printf("%d*%d=%d ",i,j,i*j);
      printf("\n");
  }
  return 0;
}

Sample Output:
Enter the number range: 5

1*1=1 1*2=2 1*3=3 1*4=4 1*5=5 1*6=6 1*7=7 1*8=8 1*9=9 1*10=10
2*1=2 2*2=4 2*3=6 2*4=8 2*5=10 2*6=12 2*7=14 2*8=16 2*9=18 2*10=20
3*1=3 3*2=6 3*3=9 3*4=12 3*5=15 3*6=18 3*7=21 3*8=24 3*9=27 3*10=30
4*1=4 4*2=8 4*3=12 4*4=16 4*5=20 4*6=24 4*7=28 4*8=32 4*9=36 4*10=40
5*1=5 5*2=10 5*3=15 5*4=20 5*5=25 5*6=30 5*7=35 5*8=40 5*9=45 5*10=50

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2339