Questions

Q:

Who is the MD and CEO of Allahabad Bank as of March 2018?

A) Chitra Ramakrishna B) Shikha Sharma
C) Usha Ananthasubramanian D) Arundathi Bhattacharya
 
Answer & Explanation Answer: C) Usha Ananthasubramanian

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: CAT , Bank Exams , AIEEE

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

The EPA studies pollution and other

A) population hazards B) environmental health hazards
C) traffic hazards D) All of the above
 
Answer & Explanation Answer: B) environmental health hazards

Explanation:

The EPA stands for Environment Protection Agency in U.S which studies pollution and other environmental health hazards.

Report Error

View Answer Report Error Discuss

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

1 2045
Q:

If velocity is constant then acceleration is what?

A) constant B) increasing
C) 0 D) infinite
 
Answer & Explanation Answer: C) 0

Explanation:

If an object moves with some velocity that means the magnitude and direction of the object changes i.e, the object moves with some acceleration. Hence, if the object moves with constant velocity, no change in direction and magnitude of speed i.e, no acceleration = 0 acceleration.

Report Error

View Answer Report Error Discuss

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

6 2044
Q:

All India Radio was founded in

A) 1935 B) 1931
C) 1930 D) 1927
 
Answer & Explanation Answer: C) 1930

Explanation:

All India Radio founded in 1930.

With over 420 radio stations in about 23 languages & 179 dialects.

AIR is one of the largest radio broadcasters in world.

It also has 99.19% population coverage & 18 FM channels.

Report Error

View Answer Report Error Discuss

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

2 2044
Q:

The Jal Amrutha scheme launched by which state?

A) Haryana B) Himachal Pradesh
C) Karnataka D) Telangana
 
Answer & Explanation Answer: C) Karnataka

Explanation:

The Jal Amrutha scheme launched by the state of Karnataka.

Report Error

View Answer Report Error Discuss

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

0 2044
Q:

Which molecule is nonpolar and has a symmetrical shape?

A) NH3 B) HCl
C) H2O D) CH4
 
Answer & Explanation Answer: D) CH4

Explanation:

Among the given options, CH4 is a non polar molecule with symmetrical tetrahedral shape.

Report Error

View Answer Report Error Discuss

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

1 2044
Q:

The most important determinant of consumer spending is

A) consumer expectations B) the level of income
C) the level of household borrowing D) the stock of wealth
 
Answer & Explanation Answer: B) the level of income

Explanation:

The most important determinant of consumer spending is the level of income.

Report Error

View Answer Report Error Discuss

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

1 2043