Questions

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

Trade blocs help countries by

A) competition B) economic integration
C) Increase in trade D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

A trade bloc is a type of intergovernmental agreement for a group of countries where barriers to trade are reduced or eliminated among the participating states and less competition and for economic integration.

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

Project Communications Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Communications planning?

Answer

I. Inputs



  • Enterprise environmental factors

  • Organizational process assets

  • Project scope statement

  • Project management plan


                   - Constraints


                   - Assumptions


II. Tools and Techniques



  • Communications requirements analysis

  • Communications technology


III. Outputs



  • Communications management plan

Report Error

View answer Workspace Report Error Discuss

0 2062