Questions

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:

Who has chosen for the first "Bhagwan Mahavir Ahimsa Puraskar"?

A) Subhash Chandra Bose B) Alluri Seetha Ramaraju
C) Abhinandan Varthaman D) None of the above
 
Answer & Explanation Answer: C) Abhinandan Varthaman

Explanation:

Abhinandan Varthaman who shot down the Pakistan's F-16 jet has chosen for the first "Bhagwan Mahavir Ahimsa Puraskar".

Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

4 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'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:

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:

Protists and bacteria are grouped into different domains because

A) protists have a membrane-bounded nucleus, which bacterial cells lack. B) protists eat bacteria
C) bacteria decompose protists D) protists are photosynthetic
 
Answer & Explanation Answer: A) protists have a membrane-bounded nucleus, which bacterial cells lack.

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2054
Q:

Which statement concerning the diagnosis of ADHD is true?

A) Boys are more likely to be diagnosed with ADHD than girls B) Most children "outgrow" symptoms of ADHD
C) About 20 percent of school-age children are diagnosed with ADHD D) Racial minority status is a good predictor of being diagnosed with ADHD
 
Answer & Explanation Answer: A) Boys are more likely to be diagnosed with ADHD than girls

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE
Job Role: Analyst

3 2054
Q:

The demand curve shows the relationship between

A) good price and the service B) quantity demanded and the price of the good
C) quality and quantity of the good D) quality and price of the good
 
Answer & Explanation Answer: B) quantity demanded and the price of the good

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

0 2054