Questions

Q:

A group of inter­connected islands is known as __________ .

A) Strait B) Peninsula
C) Archipelago D) Lagoon
 
Answer & Explanation Answer: C) Archipelago

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

0 2064
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 2064
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 2064
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 2064
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:

Which tissue makes the plant hard and stiff?

A) Parenchyma B) Sclerenchyma
C) Collenchyma D) Xylem
 
Answer & Explanation Answer: B) Sclerenchyma

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE , Bank Exams , CAT

2 2063
Q:

Sociologists define the concept of "race" as

A) a socially constructed category composed of people who share biologically transmitted traits that members of a society consider important. B) people who fall into any minority category.
C) a cultural heritage shared by a category of people. D) a person's skin color.
 
Answer & Explanation Answer: A) a socially constructed category composed of people who share biologically transmitted traits that members of a society consider important.

Explanation:

Sociologists define the concept of "race" as a socially constructed category composed of people who share biologically transmitted traits that members of a society consider important.

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