Questions

Q:

The quality or tone of a musical sound produced by a stringed instrument depends on

A) frequency of vibration B) length of the strings in the instrument
C) Amplitude of vibration D) waveform of the sound
 
Answer & Explanation Answer: D) waveform of the sound

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

4 2054
Q:

With the establishment of Grameen Bank in which of the following countries in 1983 is micro credit considered to have been originated?

A) Bangladesh B) Afghanistan
C) Combodia D) India
 
Answer & Explanation Answer: A) Bangladesh

Explanation:

Grameen Bank is a microfinance and community development bank first started in Bangladesh in the year 1983. By the name itself, it is mainly for the village people to give small loans (microcredit).

Report Error

View Answer Report Error Discuss

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

4 2054
Q:

'Green Banking' means :

A) Banks financing agriculture B) Banks financing irrigation projects
C) Banks financing farmers D) Banks financing pro-­environmental projects
 
Answer & Explanation Answer: D) Banks financing pro-­environmental projects

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

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

Write a c program to copy a data of file to other file.

Answer

#include<stdio.h>
int main(){
  FILE *p,*q;
  char file1[20],file2[20];
  char ch;
  printf("\nEnter the source file name to be copied:");
  gets(file1);
  p=fopen(file1,"r");
  if(p==NULL){
      printf("cannot open %s",file1);
      exit(0);
  }
  printf("\nEnter the destination file name:");
  gets(file2);
  q=fopen(file2,"w");
  if(q==NULL){
      printf("cannot open %s",file2);
      exit(0);
  }
  while((ch=getc(p))!=EOF)
      putc(ch,q);
  printf("\nCOMPLETED");
  fclose(p);
  fclose(q);
 return 0;
}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2054
Q:

What's the difference between L1 and L2 cache?

Answer

Level 1 cache is internal to the chip, Level 2 is external.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2054
Q:

Kalhana’s ‘Rajatarangini’ is a history of--

A) Kashmir B) Harsha’sreign
C) Rajasthan D) Chandragupta’s reign
 
Answer & Explanation Answer: A) Kashmir

Explanation:
Rajatarangini is a historical chronicle of the north - western Indian subcontinent, particularly the kings of Kashmir and was written in Sanskrit by Kashmiri historian Kalhana in the 12th century CE.
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

2 2054
Q:

What did Sir William Herschel discover in 1800?

A) Ultraviolet rays B) Infra-red radiation
C) X rays D) Microwaves
 
Answer & Explanation Answer: B) Infra-red radiation

Explanation:

Sir William Herschel discovered Infra-red radiation in 1800.

Report Error

View Answer Report Error Discuss

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

0 2054