Questions

Q:

If 84+96=4842, then 36+78= ?

A) 3918 B) 3678
C) 3819 D) 1839
 
Answer & Explanation Answer: A) 3918

Explanation:
Report Error

View Answer Report Error Discuss

9 2136
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 2136
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 2136
Q:

In the following question, a word has been written in four different ways out of which only one is correctly spelt. Select the correctly spelt word.

A) Interuption B) Interruption
C) Intreuption D) Intteruption
 
Answer & Explanation Answer: B) Interruption

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2136
Q:

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

 

A drop in the ocean

 

A) Even a small gesture means a lot to a needy person. B) To lose someone in a huge crowd.
C) A scolding which has no effect on a stubborn person. D) A very small amount compared with what is needed or expected.
 
Answer & Explanation Answer: D) A very small amount compared with what is needed or expected.

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2136
Q:

Chief Ministers of States are members of _________________

A) NITI Commission(Aayog) B) Finance Commission
C) National Development Council D) Election Commission
 
Answer & Explanation Answer: C) National Development Council

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

3 2136
Q:

A person lifts luggage of 20 kg from the ground and puts it on his head 2 in above the ground. Calculate the work done by him. (g = l0 )

A) 20 J B) 400J
C) 200J D) 40J
 
Answer & Explanation Answer: B) 400J

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2136
Q:

Which fat is good Saturated or Unsaturated?

A) Saturated B) Unsaturated
C) Both A & B D) None of the above
 
Answer & Explanation Answer: B) Unsaturated

Explanation:

Unsaturated fats are good fats that lowers cholesterol levels and risk of heart attack.

Report Error

View Answer Report Error Discuss

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

2 2136