Questions

Q:

What is a job queue?

Answer

When a process enters the system it is placed in the job queue.

Report Error

View answer Workspace Report Error Discuss

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 2064
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 question below consists of a set of labelled sentences. Out of the four options given, select the most logical order of the sentences to form a coherent paragraph.
 
P: The real purpose underlying this maxim lies in its utility in the worldly sense.
Q: He has within him a spirit which is ever exhorting him to cut down his needs and learn to be happy with what he has.
R: Man is something much greater than an intelligent being using his intellect to make newer inventions from time to time.
S: It tells us to be up and doing, not to be passive in our attitude to life.

A) QPSR B) RQPS
C) SRPQ D) None
 
Answer & Explanation Answer: B) RQPS

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2064
Q:

In the following question, a sentence has been given in Direct/Indirect speech. Out of the four alternatives suggested, select the one which best expresses the same sentence in Indirect/Direct speech.

The teacher said to the students, "Work hard now if you wish to have a better future."

A) The teacher advised the students to work hard then if they wished to have a better future. B) The teacher advised the students to work hard now if they wished to have a better future.
C) The teacher advised the students to work hard then if they wish to have a better future. D) The teacher advised the students to work hard now if they wish to have a better future.
 
Answer & Explanation Answer: A) The teacher advised the students to work hard then if they wished to have a better future.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English

0 2064
Q:

Why is argon gas used along with tungsten wire in an electric bulb?

A) To increase the life of the bulb B) To reduce the consumption of electricity
C) To make the emitted light colored D) To reduce the cost of the bulb
 
Answer & Explanation Answer: A) To increase the life of the bulb

Explanation:

Argon gas is used in fluorescent and incandescent light bulbs to stop the oxygen in the light bulbs from corroding the hot tungsten filament.

The use of argon in light bulbs prevents the evaporation of the tungsten filaments, which results in increased light bulb life.

Argon is also used to create an inert atmosphere for growing semiconductor crystals, arc welding and for processes that need protection from other kinds of atmospheric gases.

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

1 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:

Singing Their Songs was created by

A) Elizabeth Catlett B) Francisco de Goya
C) Vija Celmins D) Louise Bourgeois
 
Answer & Explanation Answer: A) Elizabeth Catlett

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2063