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 is needed, select "no improvement".

 

All the other subjects (has been reduced) to nameless and faceless extras.

A) have been reduced B) have being reduced
C) has been reducing D) no improvement
 
Answer & Explanation Answer: A) have been reduced

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2069
Q:

In the following questions, one part of the sentence may have an error. Find out which part of the sentence has an error and click the button corresponding to it. If the sentence is free from error, click the "No error" option.

The severe cyclonic storm (A)/ has left behind (B)/ a trial of misery (C)/ No Error (D)

A) A B) B
C) C D) D
 
Answer & Explanation Answer: C) C

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2069
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.

The modes of action are _____ in science and religion. Science relies on experiment, whereas religion is based on experience. Any religious _____ whether it is Christ’s or Ramakrishna’s is personal and _____ . Science, on the other hand is marked by objectivity. Theory has to be corroborated by _____ proof providing material comforts. The frontiers of science do not end in knowledge but are _____ to the formation of appliances for actual use.

it is Christ's or Ramakrishna's is personal and _____ .

A) significant B) irrelevant
C) subjective D) objective
 
Answer & Explanation Answer: C) subjective

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

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

Vinegar is __________ .

A) diluted acetic acid B) glacial acetic acid
C) glacial formic acid D) diluted formic acid
 
Answer & Explanation Answer: A) diluted acetic acid

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

1 2068
Q:

The non-green heterotropic plants of plant kingdom are

A) Algae B) Ferns
C) Mosses D) Fungi
 
Answer & Explanation Answer: D) Fungi

Explanation:

The non-green heterotropic plants of plant kingdom are Fungi.

Report Error

View Answer Report Error Discuss

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

1 2068
Q:

Which is the India's largest milk producing state?

A) Andhra Pradesh B) Uttar Pradesh
C) Himachal Pradesh D) Madhya Pradesh
 
Answer & Explanation Answer: B) Uttar Pradesh

Explanation:

Uttar Pradesh is the India's largest milk producing state. It contributes 17% of the total milk production in the country followed by Andhra Pradesh.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Job Role: Analyst , Bank Clerk , Bank PO

5 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