Questions

Q:

In the following question, out of the four alternatives, select the alternative which best expresses the meaning of the idiom/phrase.

Go for a song

A) One's favourite music B) Happy go lucky attitude
C) Sold cheaply D) Something which is prohibitively expensive
 
Answer & Explanation Answer: C) Sold cheaply

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2155
Q:

What is the value of the Least Distance of Distinct vision (in cm) for a normal human being?

A) 2.5 B) 25
C) 58 D) 60
 
Answer & Explanation Answer: B) 25

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: Bank Exams

12 2155
Q:

The Third Amendment to the Constitution would be violated if 

A) people were forced to house soldiers in their homes B) people had their property searched without a warrant
C) people were not allowed to practice their religion D) people were not allowed to speak freely
 
Answer & Explanation Answer: A) people were forced to house soldiers in their homes

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2155
Q:

Which of the following cities is the venue of the 4th edition of World Summit on Accrediation (WOSA) 2018?

A) Hyderabad B) Pune
C) New Delhi D) Patna
 
Answer & Explanation Answer: C) New Delhi

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2155
Q:

Project Integration Management - Processes

Describe the Inputs, Tools and Techniques, Outputs of Direct and Manage Project Execution Phase?

Answer

I. Inputs



  • Project management plan

  • Approved corrective actions

  • Approved preventive actions

  • Approved change requests

  • Approved defect repair

  • Validated defect repair

  • Administrative closure procedure


II. Tools and Techniques



  • Project management methodology

  • Project management information system


III. Outputs



  • Deliverables

  • Requested changes

  • Implemented change requests

  • Implemented corrective actions

  • Implemented preventive actions

  • Implemented defect repair

  • Work performance information

Report Error

View answer Workspace Report Error Discuss

0 2155
Q:

Queen Elizabeth I ascended the throne of England in the year

Answer

1558 AD

Report Error

View answer Workspace Report Error Discuss

Subject: World History

2 2155
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 2155
Q:

Henry T. Colebrooke was a Professor of Sanskrit in which one of the following institutions?

A) Fort William College B) Serampore Mission
C) Kashi Vidyapith D) Asiatic Society
 
Answer & Explanation Answer: A) Fort William College

Explanation:

In 1782 Colebrooke was appointed through his father's influence to a writer-ship with the East a India Company in Calcutta.Lord Wellesley appointed him honorary professor of Hindu law and Sanskrit at the college of Fort William.

Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities
Exam Prep: Bank Exams

0 2155