Questions

Q:

What is the value of the Least Distance of Distinct vision (in cm) for a normal human being?

A) 2.5 B) 25
C) 58 D) 60
 
Answer & Explanation Answer: B) 25

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: Bank Exams

12 2156
Q:

Web pages are created by using which of the following?

A) HTTP B) SMTP
C) HTML D) SGML
 
Answer & Explanation Answer: C) HTML

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

2 2156
Q:

Which of the following is not true about X­rays?

A) have low penetrating power B) travel with the speed of light
C) Can be reflected or refracted D) can affect photographic plates
 
Answer & Explanation Answer: A) have low penetrating power

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

1 2156
Q:

Out of the four alternatives, choose the one which can be substituted for the given words/sentences and click the button corresponding to it.

A notice of a person's death

A) Memorandum B) Obituary
C) Reminder D) Rejoinder
 
Answer & Explanation Answer: B) Obituary

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2156
Q:

In the following question, out of the four alternatives, select the alternative which is the best substitute of the phrase.

a region of injured tissue or skin in which blood capillaries have been ruptured; a bruise.

A) pustule B) knurl
C) contusion D) tumour
 
Answer & Explanation Answer: C) contusion

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

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

Gopal is older than Mohan but younger than Ram. Mohan is older than Sohan but younger than Ram. Who is the oldest?

A) Gopal B) Mohan
C) Ram D) Sohan
 
Answer & Explanation Answer: C) Ram

Explanation:
Report Error

View Answer Report Error Discuss

3 2156
Q:

Which country has decided to withdraw its membership from OPEC as of January 2019?

A) Kuwait B) Iraq
C) Venezuela D) Qatar
 
Answer & Explanation Answer: D) Qatar

Explanation:

Qatar country has decided to withdraw its membership from OPEC as of January 2019. The OPEC is The Organization of the Petroleum Exporting Countries founded in Baghdad, Iraq, with the signing of an agreement in September 1960 by five countries namely Islamic Republic of Iran, Iraq, Kuwait, Saudi Arabia and Venezuela. They were to become the Founder Members of the Organization.

Report Error

View Answer Report Error Discuss

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

2 2155