Questions

Q:

If m+n=1, then the value of m3+n3+3mn is equal to

A) 0 B) 1
C) 2 D) 3
 
Answer & Explanation Answer: B) 1

Explanation:
Report Error

View Answer Report Error Discuss

0 1995
Q:

On January 3, 2018, RBI initiated ‘PCA’ against the Allahabad Bank. How many public sector banks have been covered under ‘PCA’?

 

A) 18 B) 17
C) 11 D) 15
 
Answer & Explanation Answer: C) 11

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy
Exam Prep: Bank Exams

3 1995
Q:

Which stage of cellular respiration produces the most ATP?

A) Glycolysis B) Kreb's cycle
C) Electron transport chain D) All the above
 
Answer & Explanation Answer: C) Electron transport chain

Explanation:

There are 3 stages in cellular respiration. They are:

1. Glycolysis

2. Kreb's cycle

3. Electron transport chain

 

Here, Glycolysis produces only 2 ATP whereas Kreb's cycle produces no ATP. Electron transport chain of the cellular respiration produces the maximum ATP.

Report Error

View Answer Report Error Discuss

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

0 1995
Q:

Which part of flower produces pollen grains that are generally yellowish in color?

A) Sepals B) Petals
C) Stamens D) Carpels
 
Answer & Explanation Answer: C) Stamens

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology

0 1995
Q:

The main products of photosynthesis are

A) Oxygen B) Sugar
C) Both A & B D) Carbon dioxide
 
Answer & Explanation Answer: C) Both A & B

Explanation:

The two main products of photosynthesis are sugar and oxygen. Oxygen is emitted as waste product and sugar is used for energy preparation using sun light.

Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: AIEEE , Bank Exams , GATE
Job Role: Analyst , Bank Clerk , Bank PO

1 1995
Q:

Which of the following is responsible for regulating noise pollution?

A) Central authorities B) State authorities
C) Local authorities D) Both B & C
 
Answer & Explanation Answer: D) Both B & C

Explanation:

Both State and Local governments are responsible for regulating noise pollution. Noise pollution refers to the high noise level that we can not bear.

Report Error

View Answer Report Error Discuss

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

1 1994
Q:

Where is the RAM located in a computer?

A) Monitor B) Processor
C) Mother board D) None of the above
 
Answer & Explanation Answer: C) Mother board

Explanation:

On the right corner of the mother board RAM is located in a computer.

Report Error

View Answer Report Error Discuss

3 1993
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 1993