Questions

Q:

In the following question, a sentence has been given in Active/Passive voice. Out of the four alternatives suggested, select the one which best expresses the same sentence in Passive/Active voice.

 

I applied band-aid to the wound.

A) To my wound I applied my Band-aid by myself. B) Band-aid by myself would be applied to the wound.
C) Application of the Band-aid to the wound was done my me. D) Band-aid was applied by me to the wound.
 
Answer & Explanation Answer: D) Band-aid was applied by me to the wound.

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2153
Q:

Project Scope Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Create WBS ?

Answer

I. Inputs



  • Organizational process assets

  • Project scope statement

  • Project scope management  plan

  • Approved Change requests


II. Tools and Techniques



  • Work breakdown structure templates

  • Decomposition


III. Outputs



  • Project scope statement(updates)

  • Work breakdown structure

  • WBS dictionary

  • Scope baseline

  • Project scope management plan(updates)

  • Requested changes

Report Error

View answer Workspace Report Error Discuss

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

In which graphics, digital photos and scanned images are typically stored with extensions such as.bmp, .png, .jpg, .tif or.gif?

A) Bitmap B) Pixels
C) Plane D) Both Bitmap and Pixels
 
Answer & Explanation Answer: A) Bitmap

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

2 2152
Q:

The sentences given with blanks are to be filled with an appropriate word(s). Four alternatives are suggested for each question. For each question, choose the correct alternative and click the button corresponding to it.

Food was packed, and they__________, a merry, delighted party.

A) went off B) start off
C) cut off D) set off
 
Answer & Explanation Answer: D) set off

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2152
Q:

In the following questions, the sentence given with blank to be filled in with an appropriate word. Select the correct alternative out of the four and indicate it by selecting the appropriate option.

Management is a set of _____ that can keep a complicated system of people and technology running _____. The most _____ aspects of management include planning, budgeting, organizing, staffing, controlling and problem solving. Leadership is a set of process that creates organization in the first place or adapts, them to _____ changing circumstances. Leadership defines what the future should look like, aligns people with that _____ and inspires them to make it happen despite the obstacles.

Leadership defines what the future should look like, aligns people with that _____ and inspires them to make it happen despite the obstacles.

A) look B) role
C) source D) vision
 
Answer & Explanation Answer: D) vision

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2152
Q:

Persons with type AB blood are sometimes called universal donors.

A) TRUE B) FALSE
Answer & Explanation Answer: B) FALSE

Explanation:

Persons with type AB blood are sometimes called universal donors is a FALSE statement. 


 


Persons with type AB blood are sometimes called universal recepients.


 


Persons with type O blood  are called universal donors.


 

Report Error

View Answer Workspace Report Error Discuss

Subject: Biology
Exam Prep: Bank Exams

5 2152