Questions

Q:

Texas trial lawyers frequently ally with

A) Consumer interest groups. B) Public employee unions.
C) The gas and oil industry. D) Pharmaceutical companies.
 
Answer & Explanation Answer: A) Consumer interest groups.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk

3 2058
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 2058
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 2058
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 2058
Q:

Speed of light is maximum in _____.

A) vacuum B) solids
C) liquids D) gases
 
Answer & Explanation Answer: A) vacuum

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

3 2058
Q:

Which Indian state produces the maximum wind energy?

A) Himachal Pradesh B) Tamil Nadu
C) Karnataka D) Maharashtra
 
Answer & Explanation Answer: B) Tamil Nadu

Explanation:

Tamilnadu produces the maximum wind energy of 7269Mw.


Then Maharashtra(4100MW)

-->Gujrat (3454MW)

--> Rajasthan (2784MW)

-->Then in line karnataka, Andhra Pradesh, Madhya Pradesh.

Report Error

View Answer Report Error Discuss

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

2 2058
Q:

Which one of the following is most sensitive to environmental change?

A) Amphibian B) Reptile
C) Mammal D) Insect
 
Answer & Explanation Answer: A) Amphibian

Explanation:

Amphibians are one of the most sensitive groups to change, whether that is caused by habitat loss, invasive species, disease, trade or climate change. Their sensitivity to environmental threats has been generally linked to the observation that amphibians are characterized by a rather permeable skin. Given their complex life cycles and other traits, amphibians are often recognized as indicators of ecosystem health.

Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: Bank Exams

2 2058
Q:

Which state govt launched farm debt-waiver scheme 'Jai Kisan Rin Mukti Yojana'?

A) Madhya Pradesh B) Telangana
C) Andhra Pradesh D) Uttar Pradesh
 
Answer & Explanation Answer: A) Madhya Pradesh

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2058