Questions

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

Which one of the following States of India receives Sunshine at the earliest?

A) Arunachal Pradesh B) West Bengal
C) Himachal Pradesh D) Jammu & Kashmir
 
Answer & Explanation Answer: A) Arunachal Pradesh

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2060
Q:

Example of a single celled organism

A) Algae B) Amaeba
C) Paramaecium D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

Single selled organisms are also known as Unicellular organisms in which they have only one cell.

Examples are :: Fungi, Algae, Amaeba, Paramaecium,...

 

Hence, all the above given options are single selled organisms.

Report Error

View Answer Report Error Discuss

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

3 2060
Q:

In the following question, out of the given four alternatives, select the one which is opposite in meaning of the given word.
 
Objective

A)

Fair

B)

Detached

C)

Straight

D)

Prejudiced

 
Answer & Explanation Answer: D)

Prejudiced



Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: TOEFL , GRE , CAT , Bank Exams
Job Role: Bank PO , Bank Clerk

1 2060
Q:

A group of inter­connected islands is known as __________ .

A) Strait B) Peninsula
C) Archipelago D) Lagoon
 
Answer & Explanation Answer: C) Archipelago

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

0 2060
Q:

Which doctor performs colonoscopy?

A) Pulmonologist B) Gynaecologist
C) Gastroenterologist D) Dermatologist
 
Answer & Explanation Answer: C) Gastroenterologist

Explanation:

The doctor who has the full knowledge and performs colonoscopy is Gastroenterologist.

Report Error

View Answer Report Error Discuss

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

0 2060
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 2060