Questions

Q:

A sentence has been given in Active/Passive Voice. Out of the four given alternatives, select the one which best expresses the same sentence inPassive/Active Voice.

Lily was making a fort.

A) Lily made a fort. B) A fort was being made by Lily.
C) A fort made by Lily. D) A fort got made by Lily.
 
Answer & Explanation Answer: B) A fort was being made by Lily.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2137
Q:

Project Scope Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Scope Planning ?

Answer

I. Inputs



  • Enterprise environmental factors

  • Organizational process assets

  • Project charter

  • Priliminary project scope statement


II. Tools and Techniques



  • Expert Judgment

  • Templates, forms, standards


III. Outputs



  • Project scope management plan

Report Error

View answer Workspace Report Error Discuss

0 2137
Q:

What is Sales Order (SO)?

Answer

The Sales Order is a confirmation document sent to the customers before delivering the goods or services. 


Sales Order (SO) can be created once the quote is accepted by your prospective customer and the Purchase Order (PO) is sent by the customer for further processing.

Report Error

View answer Workspace Report Error Discuss

Subject: Marketing and Sales Exam Prep: Bank Exams , CAT
Job Role: Analyst , Bank PO

4 2137
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 2137
Q:

Which of the following sports is most popular worldwide?

A) Cricket B) Football
C) Tennis D) Badminton
 
Answer & Explanation Answer: B) Football

Explanation:

Football or Soccer is the most popular sport worldwide. This game has an estimated following of 4 billion which is followed by Cricket which has 2.5 billion estimated followers.

Report Error

View Answer Report Error Discuss

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

4 2137
Q:

What is the product formed when sodium bicarbonate is heated strongly?

A) Sodium Carbonate B) Sodium Hydroxide
C) Sodium Peroxide D) Sodium Monoxide
 
Answer & Explanation Answer: A) Sodium Carbonate

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

0 2137
Q:

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

Wear your heart on your sleeve

A) a very bold person B) a noble pure person
C) make one's feelings apparent D) being overtly polite at all times
 
Answer & Explanation Answer: C) make one's feelings apparent

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: AIEEE , Bank Exams , CAT

1 2136
Q:

Select the word with the correct spelling.

A) adoption B) crocusses
C) dollorous D) pallatine
 
Answer & Explanation Answer: A) adoption

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2136