Questions

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

In each of the questions, four alternatives are given for the Idiom/Phrase. Choose the alternative which best expresses the meaning of the Idiom/Phraseand click the button corresponding to it.

Fish out of water

A) Dehydrated B) Comfortable position
C) An uncomfortable position D) Fish in an aquarium
 
Answer & Explanation Answer: C) An uncomfortable position

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2057
Q:

Indian armed forces conducted 'Operation Meghdoot' at

A) Kargil B) Srinagar
C) Siachen D) Amritsar
 
Answer & Explanation Answer: C) Siachen

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

9 2056
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 each of the questions, four alternatives are given for the Idiom/Phrase. Choose the alternative which best expresses the meaning of the Idiom/Phrase and click the button corresponding to it.

For keeps

A) Himself B) Away
C) Forever D) Hid
 
Answer & Explanation Answer: C) Forever

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2056
Q:

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

Obscene

A) Indecent B) Immoral
C) Decent D) Offensive
 
Answer & Explanation Answer: C) Decent

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2056