Questions

Q:

In the following question, a sentence has been given in Direct/Indirect speech. Out of the four alternatives suggested, select the one which best expresses the same sentence in Indirect/Direct speech.

 

The driver said, "I have been waiting here at the airport since two hours for my master."

A) The driver said that he had been waiting there at the airport since two hours for his master. B) The driver said that he had been waiting here at the airport since two hours for his master.
C) The driver said that he has been waiting there at the airport since two hours for his master. D) The driver said that he has been waiting here at the airport since two hours for his master.
 
Answer & Explanation Answer: A) The driver said that he had been waiting there at the airport since two hours for his master.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2057
Q:

Which statement best describes perigee?

A) The closet point in the Moon's orbit to Earth B) The farthest point in the Moon's orbit to Earth
C) The closest point in Earth's orbit of the Sun D) The Sun's orbit that is closest to the Moon
 
Answer & Explanation Answer: A) The closet point in the Moon's orbit to Earth

Explanation:

The closet point in the Moon's orbit to Earth is called perigee whereas the farthest point in the Moon's orbit to Earth is called apogee.

Report Error

View Answer Report Error Discuss

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

2 2057
Q:

In the following question, out of the four alternatives, select the word similar in meaning to the word given.

Opulent

A) Fake B) Gloomy
C) Rich D) Selfish
 
Answer & Explanation Answer: C) Rich

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: TOEFL , GRE , CAT

0 2057
Q:

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

 

Comfort someone at a time of grief or disappointment

 

A) Arouse B) Pique
C) Fluster D) Console
 
Answer & Explanation Answer: D) Console

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2057
Q:

Motion of a train is an example of ______.

A) Rotatory motion B) Spin motion
C) Projectile motion D) Translatory motion
 
Answer & Explanation Answer: D) Translatory motion

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

2 2056
Q:

Project Communications Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Communications planning?

Answer

I. Inputs



  • Enterprise environmental factors

  • Organizational process assets

  • Project scope statement

  • Project management plan


                   - Constraints


                   - Assumptions


II. Tools and Techniques



  • Communications requirements analysis

  • Communications technology


III. Outputs



  • Communications management plan

Report Error

View answer Workspace Report Error Discuss

0 2056
Q:

The Wheeler Island has been renamed as

A) Vikram Sarabhai island B) Satish Dhawan island
C) Abdul Kalam island D) C.V. Raman island
 
Answer & Explanation Answer: C) Abdul Kalam island

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Places
Exam Prep: Bank Exams

19 2056
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 2056