Questions

Q:

Which place is NOT associated with Gautama Buddha?

A) Saranath B) Bodh Gaya
C) Kushinagar D) Pawapuri
 
Answer & Explanation Answer: D) Pawapuri

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

2 2064
Q:

Find the resistance (in mega Ω) of a wire of length 20m, cross sectional area 1 cm2 and made of a material of resistivity 200 Ωm.

A) 40 B) 4000
C) 80 D) 2000
 
Answer & Explanation Answer: A) 40

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

3 2063
Q:

Example of a single celled organism

A) Algae B) Amaeba
C) Paramaecium D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

Single selled organisms are also known as Unicellular organisms in which they have only one cell.

Examples are :: Fungi, Algae, Amaeba, Paramaecium,...

 

Hence, all the above given options are single selled organisms.

Report Error

View Answer Report Error Discuss

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

3 2063
Q:

The renal corpuscle is made up of

A) Bowman's capsule B) Glomerulus
C) Both A & B D) None of the above
 
Answer & Explanation Answer: C) Both A & B

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2063
Q:

When the Indian Space Research Organisation (ISRO) was set up?

A) 1952 B) 1959
C) 1964 D) 1969
 
Answer & Explanation Answer: D) 1969

Explanation:

The Indian Space Research Organisation is the space agency of the Government of India was set up in the year 1969, headquartered in the city of Bangalore. Its vision is to "harness space technology for national development while pursuing space science research and planetary exploration.

 

Report Error

View Answer Report Error Discuss

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

1 2063
Q:

Trade blocs help countries by

A) competition B) economic integration
C) Increase in trade D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

A trade bloc is a type of intergovernmental agreement for a group of countries where barriers to trade are reduced or eliminated among the participating states and less competition and for economic integration.

Report Error

View Answer Report Error Discuss

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

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

What is a job queue?

Answer

When a process enters the system it is placed in the job queue.

Report Error

View answer Workspace Report Error Discuss

0 2063