Questions

Q:

Look at the underlined part of each sentence. Below each sentence are given three possible substitutions for the underlined part. If one of them (a), (b) or (c) is better than the underlined part, indicate your response on the Answer Sheet against the corresponding letter. If none of the substitutions imporves the sentence, indicate (d) as your response on the Answer Sheet.

The chairman with the other members of the board are touring Europe these days.

A) have been on touring B) is touring
C) have toured D) no improvement
 
Answer & Explanation Answer: B) is touring

Explanation:

The main subject ‘The Chairman’ is singular, hence singular verb ‘is touring’ will be used.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

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

A sentence has been given in Active/Passive Voice. Out of the four given alternatives, select the one which best expresses the same sentence in Passive/Active Voice.

 

George Orwell wrote 1984.

 

A) 1984 is wrote by George Orwell. B) 1984 was wrote by George Orwell.
C) 1984 was written by George Orwell. D) 1984 written by George Orwell.
 
Answer & Explanation Answer: C) 1984 was written by George Orwell.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams , GRE , TOEFL

0 2051
Q:

Look at the underlined part of each sentence. Below each sentence are given three possible substitutions for the underlined part. If one of them (a), (b) or (c) is better than the underlined part, indicate your response on the Answer Sheet against the corresponding letter. If none of the substitutions imporves the sentence, indicate (d) as your response on the Answer Sheet.

 

He did not abide with my decision.

A) to  B) by
C) for D) no improvement
 
Answer & Explanation Answer: B) by

Explanation:

‘Abide’ means ‘to put up with’. ‘abide’ is always followed by the preposition ‘by’.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2050
Q:

Which of the following statements about DNA replication is false?

A) The enzyme that catalyzes DNA replication is DNA polymerase. B) Unwinding of the DNA molecule occurs as hydrogen bonds break.
C) The process is known as semiconservative replication because one old strand is conserved in the new molecule. D) Replication occurs as each base is paired with another exactly like it.
 
Answer & Explanation Answer: D) Replication occurs as each base is paired with another exactly like it.

Explanation:
Report Error

View Answer Report Error Discuss

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

2 2050
Q:

A passage is given with 5 questions following it. Read the passage carefully and choose the best answer to each question out of the four alternatives.

Due to poor rainfall over the past few months, the vadu mangai season is expected to be short this year. There are two distinct varieties available in the vicinity of Coimbatore. The closest to Coimbatore, and the one that appears in the markets first, is the Thadagam variety. The second and more popular variety is the one from the Thirumoorthy Hills, near Udumalpet. Representatives from commercial pickle brands whisk these mangais away in big lots directly from the wholesalers. Only a small portion of the year's harvest trickles down to the local markets. Small vendors bring sacks full of these tiny tender mangoes to one particular street corner in Ram Nagar during the season. The corner of Rajaji Road and Sathyamurthy Road plays host to these vendors from as early as 7.00 am every day. Depending on the quantity they have, the mangais are available until around 11.00 am. If the vendors have a good day and their produce is sold quickly, they pack up and leave even as early as 9.00 am.

Which of the following best describes the vadu mangai mangoes?

A) Big and juicy B) Orange but raw
C) Tiny and tender D) Sour and sweet
 
Answer & Explanation Answer: C) Tiny and tender

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2050
Q:

In the following question, four words are given out of which one word is correctly spelt. Select the correctly spelt word.

A) poseses B) posesses
C) possesses D) posseses
 
Answer & Explanation Answer: C) possesses

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2050
Q:

The first step in the marketing research process is to

A) Decide Research Approach B) Develop Research Plan
C) Define the Problem D) Collect Relevant Data and Information
 
Answer & Explanation Answer: C) Define the Problem

Explanation:

Marketing Research Process is a systematic method for planning and executing market research projects to inform business decisions.

 

The 5 Step Marketing Research Process :

 

  1. Define the Problem or Opportunity
  2. Develop Your Research Plan
  3. Collect Relevant Data and Information
  4. Analyze Data and Report Findings
  5. Take Action.
Report Error

View Answer Report Error Discuss

Filed Under: Marketing and Sales

0 2050