Questions

Q:

A floppy disk contains

A) Sectors only B) Circular tracks only
C) Both A & B D) None of the above
 
Answer & Explanation Answer: C) Both A & B

Explanation:

A floppy disk contains both circular tracks and sectors in it.

Report Error

View Answer Report Error Discuss

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

4 1985
Q:

Who wrote the book "Ignited Minds"?

A) Vikram Seth B) APJ Abdul Kalam
C) Arundhati Roy D) Manmohan Singh
 
Answer & Explanation Answer: B) APJ Abdul Kalam

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: Bank Exams

1 1984
Q:

What is LB Shastri’s memorial?

A) Bapughat B) Veerghat
C) Vijayghat D) None of the above
 
Answer & Explanation Answer: C) Vijayghat

Explanation:
Report Error

View Answer Report Error Discuss

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

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

What two countries have nearly 50% of global coal reserves?

A) Iran & USA B) USA & China
C) Russia & USA D) Brazil & Russia
 
Answer & Explanation Answer: C) Russia & USA

Explanation:

United States and Russia have together almost 400 billion tones. Which represents nearly 50% of world's reserves of coal.

 

Report Error

View Answer Report Error Discuss

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

0 1984
Q:

The Great wall of China was built in the year

Answer

214 BC

Report Error

View answer Workspace Report Error Discuss

Subject: World History

2 1983
Q:

Bacteria divide by

A) Binary Fission B) Spirilla
C) RNA D) Fusion
 
Answer & Explanation Answer: A) Binary Fission

Explanation:

Bacteria divided and reproduce by Binary fission. In this process, the bacterium, which is a single cell, divides into two identical daughter cells. Binary fission begins when the DNA of the bacterium divides into two replicates.

Report Error

View Answer Report Error Discuss

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

3 1983
Q:

The given sentences, when properly sequenced, form a coherent paragraph. Each sentence is labelled with a letter. Choose the most logical order of the sentences from among the five given choices to construct a coherent paragraph keeping 1 as the first statement.

1) For first-time Indian travellers, stepping out of the airport in Singapore or Japan is a momentous, potentially mindset-changing experience.

A) But walk in a cramped gully in Delhi or even on the main road and everything that is not desirable inside, finds its way outside.

B) Public littering is a social issue that results in massive aesthetic, financial and health- related costs for India. It’s not as if we don’t value cleanliness. Our homes are the textbook definition of clean.

C) How does that compare with our paan- stained buses filled with peanut shells?

D) How can bustling cities packed with people be so spotless? As far as the eye can go, there is not a single piece of stray paper on the road or in public transport.

A) BCAD B) DCBA
C) DBCA D) ADBC
 
Answer & Explanation Answer: B) DCBA

Explanation:

The correct sequence is DCBA.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

1 1983