Questions

Q:

'Green Banking' means :

A) Banks financing agriculture B) Banks financing irrigation projects
C) Banks financing farmers D) Banks financing pro-­environmental projects
 
Answer & Explanation Answer: D) Banks financing pro-­environmental projects

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

0 2054
Q:

The sentences given with blanks are to be filled with an appropriate word(s). Four alternatives are suggested for each question. For each question, choose the correct alternative and click the button corresponding to it.

The life of a mosquito is _____ , but very active.

A) long B) passive
C) brief D) important
 
Answer & Explanation Answer: C) brief

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2054
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 2054
Q:

What's the difference between L1 and L2 cache?

Answer

Level 1 cache is internal to the chip, Level 2 is external.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2054
Q:

What did Sir William Herschel discover in 1800?

A) Ultraviolet rays B) Infra-red radiation
C) X rays D) Microwaves
 
Answer & Explanation Answer: B) Infra-red radiation

Explanation:

Sir William Herschel discovered Infra-red radiation in 1800.

Report Error

View Answer Report Error Discuss

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

0 2054
Q:

Who has chosen for the first "Bhagwan Mahavir Ahimsa Puraskar"?

A) Subhash Chandra Bose B) Alluri Seetha Ramaraju
C) Abhinandan Varthaman D) None of the above
 
Answer & Explanation Answer: C) Abhinandan Varthaman

Explanation:

Abhinandan Varthaman who shot down the Pakistan's F-16 jet has chosen for the first "Bhagwan Mahavir Ahimsa Puraskar".

Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

4 2054
Q:

Kalhana’s ‘Rajatarangini’ is a history of--

A) Kashmir B) Harsha’sreign
C) Rajasthan D) Chandragupta’s reign
 
Answer & Explanation Answer: A) Kashmir

Explanation:
Rajatarangini is a historical chronicle of the north - western Indian subcontinent, particularly the kings of Kashmir and was written in Sanskrit by Kashmiri historian Kalhana in the 12th century CE.
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

2 2054
Q:

Project Integration Management - Processes

Describe the Inputs, Tools and Techniques, Outputs of Direct and Manage Project Execution Phase?

Answer

I. Inputs



  • Project management plan

  • Approved corrective actions

  • Approved preventive actions

  • Approved change requests

  • Approved defect repair

  • Validated defect repair

  • Administrative closure procedure


II. Tools and Techniques



  • Project management methodology

  • Project management information system


III. Outputs



  • Deliverables

  • Requested changes

  • Implemented change requests

  • Implemented corrective actions

  • Implemented preventive actions

  • Implemented defect repair

  • Work performance information

Report Error

View answer Workspace Report Error Discuss

0 2053