Questions

Q:

Select the word with the correct spelling.

A) adendum B) atlantise
C) inovate D) abseiled
 
Answer & Explanation Answer: D) abseiled

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: AIEEE , Bank Exams , GRE

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:

When is Cost Per Thousand Impressions (CPM) bidding not available?

Answer

If your campaign is opted in to the Search Network.

Report Error

View answer Workspace Report Error Discuss

0 2045
Q:

Where was christianity founded?

A) Jerusalem B) Bethlehem
C) Palestine D) None of the above
 
Answer & Explanation Answer: A) Jerusalem

Explanation:

Christianity was founded by hesus Christ in Jerusalem, capital of Israel.

Report Error

View Answer Report Error Discuss

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

7 2045
Q:

Pick up the most effective word from the given words to fill in the blanks to make the sentence meaningfully complete.

According to the weather _______ it is going to be cloudy today.

A) Announcement B) Indication
C) Prediction D) Forecast
 
Answer & Explanation Answer: D) Forecast

Explanation:

Weather is always forecasted.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2044
Q:

Which mosque is considered to be the style of Bengal style in Agra?

A) Nagina Masjid B) Moti Masjid  
C) Jama Masjid D) Badshahi Masjid
 
Answer & Explanation Answer: A) Nagina Masjid

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

0 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 of the following is not a storage device?

A) Hard drive B) Printer
C) RAM D) None of the above
 
Answer & Explanation Answer: B) Printer

Explanation:

A storage device refers to a computing hardware used to store information permanently or temporarily. The device can be external or internal to a computer, server, and other computing systems.

 

There are two types of storage devices used with computers: a primary storage device, such as RAM, and a secondary storage device, like a hard drive. Secondary storage can be removable, internal, or external.

 

Here printer is not the storage device, it is an outut.

Report Error

View Answer Report Error Discuss

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

1 2044