Questions

Q:

RBI issued currency notes under which system

A) Maximum Fiduciary System B) Proportional Reserve System
C) Fixed Fiduciary System D) Fixed Minimum Reserve System
 
Answer & Explanation Answer: D) Fixed Minimum Reserve System

Explanation:

RBI issued currency notes under Fixed Minimum Reserve System.

Report Error

View Answer Report Error Discuss

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

2 1992
Q:

Five statements are given below, labelled A, B, C, D and E, among these, four statements are in logical order and form a coherent paragraph/passage. From the given options, choose the option that does not fit into the theme of the passage.

A) The global cooperation that has emerged lately is certainly welcome. B) The ocean has suffered decades of abuse and neglect.
C) It has been treated as a free-for-all garbage bin and race-to-the-bottom buffet. D) We have financed its destruction, with no regard for the consequences.
 
Answer & Explanation Answer: A) The global cooperation that has emerged lately is certainly welcome.

Explanation:

All statements except ‘A’ are based about the same theme which is The Fight for Ocean Health while sentence A talks about The Next Phase of Climate Action.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 1992
Q:

Systems biology is mainly an attempt to

A) Understand the behavior of entire biological systems B) Speed up the technological application of scientific knowledge
C) Analyze genomes from different species. D) None of the above
 
Answer & Explanation Answer: A) Understand the behavior of entire biological systems

Explanation:

An approach to studying biology that aims to model the dynamic behavior of whole biological systems based on a study of the interactions among the system's parts.

Report Error

View Answer Report Error Discuss

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

1 1991
Q:

Choose the correctly spelt word:-

A) Sepulchral B) Sepalchrle
C) Sepalchral D) Sepulchrle
 
Answer & Explanation Answer: A) Sepulchral

Explanation:

Sepulchral is spelt correctly which means joyless

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

1 1991
Q:

Define what is Six Sigma?

Answer



Six sigma is a data-driven technique and way for eliminating defects in any progress from product to service and from manufacturing to transactional.


 

Report Error

View answer Workspace Report Error Discuss

Subject: Manufacturing

2 1990
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 1990
Q:

What is a property of most metals?

A) Conductivity B) Malleability
C) Luster D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

We know that most of the metals are goof conductors of electricity and heat. Metals are very strong but they are malleable i.e, they can be bent into a shape. These are shiny when they are cut or polished. 

 

Hence, metals are malleable, conductors and luster. All the above are properties of the metals.

Report Error

View Answer Report Error Discuss

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

3 1990
Q:

What is Stack Pointer?

Answer

Stack pointer is a special purpose 16-bit register in the Microprocessor, which holds the address od the top of the stack.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 1989