Questions

Q:

The question below consists of a set of labelled sentences. Out of the four options given, select the most logical order of the sentences to form a coherent paragraph.

I learnt he had

A-spoke about yoga, slums, and Indian

B-never been to India, yet he

C-cinema with conviction

A) ACB B) BAC
C) ABC D) CBA
 
Answer & Explanation Answer: B) BAC

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams , CAT

0 2067
Q:

In the following passage some of the words have been left out. Read the passage carefully and select the correct answer for the given blank out of the four alternatives.

Truth is indeed a controversial aspect of ______. But almost always it can be justified as a moral principle on the basis of ______. When we talk about speaking the truth in order not to hide what, if hidden, will only prove damaging to others, we are emphasizing the ability to ‘feel’ for others. Again, often we purposely keep ourselves from communicating the truth as, once ______, it may hurt someone‘s feelings and sentiments. But keeping a person in the dark or denying him or her knowledge which he or she ought to have amounts to ______ another soul of its right to know that with which it has a ______.

Truth is indeed a controversial aspect of ______.

A) morality B) ability
C) civility D) debility
 
Answer & Explanation Answer: A) morality

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

1 2067
Q:

What did you enjoy most and least in your last retailing job?

Answer

i enjoy the most learning new things like staff management,motivation,management,smart working etc. i enjoy the least free timing during my job.

Report Error

View answer Workspace Report Error Discuss

Subject: Retail

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:

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