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.
Heena said, "I bought a dress yesterday."

A) Heena said that she has bought a dress the day before. B) Heena said that she had bought a dress the day before.
C) Heena said that she has bought a dress the day before yesterday. D) Heena said that she had bought a dress the day before yesterday.
 
Answer & Explanation Answer: B) Heena said that she had bought a dress the day before.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English

0 2067
Q:

In what city would you find the world's tallest building?

Answer

Dubai

Report Error

View answer Workspace Report Error Discuss

Subject: World Geography

1 2067
Q:

Who has won the Miss India USA 2019 title?

A) Manushi Chhillar B) Kim Kumari
C) Anu Kreethy Vas D) Shree Saini
 
Answer & Explanation Answer: B) Kim Kumari

Explanation:

Kim Kumari of New Jersey crowned Miss India USA 2019 tite.

Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

4 2067
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 2067
Q:

In the following question, out of the given four alternatives, select the alternative which best expresses the meaning of the Idiom/Phrase.

 

In a flutter

A) Effective B) Almost nothing
C) In a nervous state D) Certain
 
Answer & Explanation Answer: C) In a nervous state

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2067
Q:

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

 

An opinion or conclusion formed on the basis of incomplete information

 

A) Proof B) Conjecture
C) Clincher D) Averment
 
Answer & Explanation Answer: B) Conjecture

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

1 2067
Q:

What is a job queue?

Answer

When a process enters the system it is placed in the job queue.

Report Error

View answer Workspace Report Error Discuss

0 2066
Q:

What is a device queue?

Answer

A list of processes waiting for a particular I/O device is called device queue.

Report Error

View answer Workspace Report Error Discuss

0 2066