Questions

Q:

Look at the underlined part of each sentence. Below each sentence are given three possible substitutions for the underlined part. If one of them (a), (b) or (c) is better than the underlined part, indicate your response on the Answer Sheet against the corresponding letter. If none of the substitutions imporves the sentence, indicate (d) as your response on the Answer Sheet.

Your services are dispensed for.

A) from B) with
C) off D) no improvement
 
Answer & Explanation Answer: C) off

Explanation:

‘dispensed’ should be followed by ‘off’. Dispensed off means given away, therefore the sentence means that his services are no longer needed.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2339
Q:

The question below consists of a set of labelled sentences. Out of the four options given, select the most logical order of the sentences to form a coherent paragraph.
P- The magnitude of the interdependence depends on the technique of production causing the shifts in the food supply curve.
Q- Interdependence of food and labour market is important for the development process.
R- Similarly, an upward shift in the food supply curve shifts up the food demand curve.
S- An upward shift in the food supply curve would simultaneously result in an upward shift in the labour demand curve.

A) QSPR B) QPRS
C) PSRQ D) SPQR
 
Answer & Explanation Answer: A) QSPR

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2339
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
Q:

Which Malayalam actor received the Special Jury National Award for the Telugu film 'Janatha Garage'?

A) Mohanlal B) Prithviraj
C) Suresh Gopi D) Mammooty
 
Answer & Explanation Answer: A) Mohanlal

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities
Exam Prep: Bank Exams

0 2338
Q:

Give a circuit to divide frequency of clock cycle by two?

Answer

You can divide the frequency of a clock by just implementing T Flip flop.


Give clock as clock input and tie the T input to logic 1.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2338
Q:

In each of the questions, four alternatives are given for the Idiom/Phrase. Choose the alternative which best expresses the meaning of the Idiom/Phraseand click the button corresponding to it.

Once in a blue moon

A) Very rarely B) Common
C) Predictable D) Ordinary
 
Answer & Explanation Answer: A) Very rarely

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2338
Q:

Beyond the _____________, the Himalayas bend sharply to the south and spread along the eastern boundary of India.

A) Zoji La Pass B) Dihang gorge
C) Bhutan border D) Nepal Border
 
Answer & Explanation Answer: B) Dihang gorge

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

0 2338