Questions

Q:

The substances which reduce friction are called _________.

A) irregularities B) lubricants
C) adhesives D) viscous
 
Answer & Explanation Answer: B) lubricants

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

13 2047
Q:

A business owned by one person

A) Sole proprietorship B) Non profit
C) Limited liability D) None of the above
 
Answer & Explanation Answer: A) Sole proprietorship

Explanation:

A business owned by one person and operates for their benefits is called as Sole Proprietorship or sole trader.

Report Error

View Answer Report Error Discuss

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

3 2047
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:

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:

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 was World Meterological Organisation estabilished?

A) 1950 B) 1952
C) 1956 D) 1949
 
Answer & Explanation Answer: A) 1950

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

5 2044
Q:

Choose the correctly spelt word:-

A) Intrensic B) Intrinsic
C) Entrensic D) Entrinsec
 
Answer & Explanation Answer: B) Intrinsic

Explanation:

Intrinsic is spelt correctly which means essential.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2044