Questions

Q:

In the following question, out of the four alternatives, select the alternative which will improve the bracketed part of the sentence. In case no improvement isneeded, select "no improvement".

My daughter (comes running) as fast as her little feet can take her while her eyes sparkle vivaciously

A) comes run B) come running
C) came run D) no improvement
 
Answer & Explanation Answer: D) no improvement

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2066
Q:

Which of the following choices is a sound argument?

A) All teachers wear sarees. Mrs. Gomati does not wear a saree. Therefore, Mrs. Gomati is not a teacher. B) All turtles are reptiles. The snake is not a turtle. Therefore, the snake is not a reptile.
C) Amitav Ghosh is an author. Arundati Roy is an author. Therefore, I want to be an author. D) All of the above
 
Answer & Explanation Answer: A) All teachers wear sarees. Mrs. Gomati does not wear a saree. Therefore, Mrs. Gomati is not a teacher.

Explanation:

From the given choices, "All teachers wear sarees. Mrs. Gomati does not wear a saree. Therefore, Mrs. Gomati is not a teacher" is a sound argument.

Report Error

View Answer Report Error Discuss

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

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

What are * and? when using them for wildcards in windows?

Answer

* - any characters, aribitary among


? - single character

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2066
Q:

When should you stop at green and go at red?

Answer

When you are eating a Watermelon, we eat what is red and stop at green layer.

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles Exam Prep: TOEFL , GRE , GATE , CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk , Analyst

2 2066
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 2066
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