Questions

Q:

In the following questions, one part of the sentence may have an error. Find out which part of the sentence has an error and click the button corresponding to it. If the sentence is free from error, click the “No error” option.

A. He has made a mistake

B. of which

C. I am certain

D. No error

A) A B) B
C) C D) D
 
Answer & Explanation Answer: D) D

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: TOEFL , GRE , CAT

1 2057
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 2056
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 2056
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 2056
Q:

In what city would you find the world's tallest building?

Answer

Dubai

Report Error

View answer Workspace Report Error Discuss

Subject: World Geography

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

In the following passage some of the words have been left out. Read the passage carefully and select the correct answer for the given blank out of the four alternatives.

The modes of action are _____ in science and religion. Science relies on experiment, whereas religion is based on experience. Any religious _____ whether it is Christ’s or Ramakrishna’s is personal and _____ . Science, on the other hand is marked by objectivity. Theory has to be corroborated by _____ proof providing material comforts. The frontiers of science do not end in knowledge but are _____ to the formation of appliances for actual use.

The modes of action are _____ in science and religion.

A) similar B) different
C) equal D) relevant
 
Answer & Explanation Answer: B) different

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

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