Questions

Q:

The 'Blue Water Policy' was introduced by the Portugese leader_________

A) Franscisco-de-Almeida B) Alfonso de Albuquerque
C) Francis Caron D) Francis Martin
 
Answer & Explanation Answer: A) Franscisco-de-Almeida

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

3 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
Q:

In each of the questions given below, a passage has been given which are either situational based or describes a scenario. Below each passage, a question has been given which is framed to make you to infer something out of it. Mark out the correct inference as your answer.
A former lawmaker, Rewati Raman Bhandari, who drafted the measure that criminalised chhaupadi, said the push to eradicate the practice from villagers, the police and local politicians was still far too muted.
Which of the following describes the reaction of the authorities of towards the eradication of chhaupadi?

A) Subdued B) Softened
C) Dampened D) Quite
 
Answer & Explanation Answer: A) Subdued

Explanation:

Subdued means restrained in style or quality. Softened means being or made softer or less loud or clear.
Dampened means to suppress or constrain so as to lessen in intensity. Quite means to a degree (not used with a negative).
Silenced means reduced to silence. The reaction of the authorities is already mentioned, i.e. muted. All the options, except 'quite', are synonymous with 'muted'. But the reaction was toned-down. Hence, the correct answer is 1.

Report Error

View Answer Report Error Discuss

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

0 2066
Q:

Select the word with the correct spelling.

A) terains B) priestly
C) fereted D) ablasion
 
Answer & Explanation Answer: B) priestly

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2066
Q:

Kyoto Protocol is related to

A) Wetland conservation B) Ozone depletion
C) Air pollution D) Climate change
 
Answer & Explanation Answer: D) Climate change

Explanation:
Report Error

View Answer Report Error Discuss

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

5 2066