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

The price elasticity of supply measures how

Answer

The price elasticity of supply measures how the responsiveness of the quantity demanded of a commodity to changes it its prices; defined as the percentage change in quantity demanded divided by the percentage change in price.

Report Error

View answer Workspace Report Error Discuss

Subject: Business Awareness Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

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

In the following question, out of the four alternatives, select the alternative which is the best substitute of the phrase.

That which cannot be put out

A) Illusion B) Indigenous
C) Incentive D) Inextinguishable
 
Answer & Explanation Answer: D) Inextinguishable

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2143
Q:

In the following question, 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.

Raman has come up ______ a problem.

A) for B) with
C) of D) into
 
Answer & Explanation Answer: B) with

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2143
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.

Your opening paragraph should __________ the reader's attention.

A) attest B) address
C) attract D) affect
 
Answer & Explanation Answer: C) attract

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2143
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 in Passive/Active Voice.

The girl caught the kite.

A) The kite was caught by the girl. B) The kite is caught by the girl.
C)  The kite was catch by the girl. D) The kite is catch by the girl.
 
Answer & Explanation Answer: A) The kite was caught by the girl.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

1 2143
Q:

In the following question, four words are given out of which one word is correctly spelt. Select the correctly spelt word.

A) obsesive B) obsessiv
C) obsessive D) obsesiv
 
Answer & Explanation Answer: C) obsessive

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2143