Questions

Q:

The multiplier effect means that

Answer

The multiplier effect means that "An effect in economics in which an increase in spending produces an increase in national income and consumption greater than the initial amount spent."

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Economy Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

1 2064
Q:

The renal corpuscle is made up of

A) Bowman's capsule B) Glomerulus
C) Both A & B D) None of the above
 
Answer & Explanation Answer: C) Both A & B

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2064
Q:

Which tissue makes the plant hard and stiff?

A) Parenchyma B) Sclerenchyma
C) Collenchyma D) Xylem
 
Answer & Explanation Answer: B) Sclerenchyma

Explanation:
Report Error

View Answer Report Error Discuss

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

2 2064
Q:

Read each sentence to find out whether there is any error in any underlined part and indicate your response in the Answer Sheet against the corresponding letter i.e., (a) or (b) or (c). If you find no error, your response should be indicated as (d).

A) I waited B) for her return
C) with growing unease D) No error
 
Answer & Explanation Answer: C) with growing unease

Explanation:

The error is in third part. “unease” is wrong expression because it is in noun form. Correct usage will be “with growing “uneasiness”, which is an adjective qualifying wait. Which means as time passed while I waited, I grew more and more uneasy.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2064
Q:

Sociologists define the concept of "race" as

A) a socially constructed category composed of people who share biologically transmitted traits that members of a society consider important. B) people who fall into any minority category.
C) a cultural heritage shared by a category of people. D) a person's skin color.
 
Answer & Explanation Answer: A) a socially constructed category composed of people who share biologically transmitted traits that members of a society consider important.

Explanation:

Sociologists define the concept of "race" as a socially constructed category composed of people who share biologically transmitted traits that members of a society consider important.

Report Error

View Answer Report Error Discuss

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

0 2063
Q:

Expedite is the opposite of

A) hasten B) quick
C) hinder D) step up
 
Answer & Explanation Answer: C) hinder

Explanation:

Expedite means to do an action or work to be completed quickly or sooner. The opposite of expedite means late, delay, hinder,...

Report Error

View Answer Report Error Discuss

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

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

Out of the four alternatives, choose the one which can be substituted for the given words/sentences and click the button corresponding to it.

Misappropriation of money

A) Embezzlement B) Robbery
C) Theft D) Fraud
 
Answer & Explanation Answer: A) Embezzlement

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2063