Questions

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 2021
Q:

I can be long, or I can be short. I can be grown, and I can be bought. I can be painted, or left bare. I can be round, or square. What am I?

Answer

A fingernail.

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

2 2021
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 2021
Q:

One function of sphincter muscles is to

A) secrete digestive juices into the GI tract B) grind large food particles
C) trigger hormone release D) control the passage of food through the GI tract
 
Answer & Explanation Answer: D) control the passage of food through the GI tract

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2020
Q:

World Wrestling Championship has recently begun at

A) Hungary B) Poland
C) Belgium D) None of the above
 
Answer & Explanation Answer: A) Hungary

Explanation:

Hungarian capital city Budapest is where the World Wrestling Championship has begun in which Bajrang Punia resembles India.

Report Error

View Answer Report Error Discuss

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

2 2020
Q:

Which movie won the Best Film award at Kolkata International Film Festival 2018?

A) The Third Wife B) Beauty Pageants
C) Antony Firingee D) Abyakto
 
Answer & Explanation Answer: A) The Third Wife

Explanation:

Vietnamese film 'The Third Wife' won the Best Film award at Kolkata International Film Festival 2018.

Report Error

View Answer Report Error Discuss

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

1 2019
Q:

which of the following is smallest river in india ?

A) Indus B) Godavari
C) Arvari D) Ganga
 
Answer & Explanation Answer: C) Arvari

Explanation:

Arvari river is a small river in the Indian state of Rajasthan. It just have 90 km of length and it also consider as the smallest river of India and flows through the Arvari District of Rajasthan

Report Error

View Answer Report Error Discuss

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

0 2019
Q:

The 106th Indian Science Congress 2019 will held in which place?

A) Hyderabad B) Punjab
C) Kolkata D) Bangalore
 
Answer & Explanation Answer: B) Punjab

Explanation:

The 106th Indian Science Congress 2019 will held in Lovely Professional University in Jalandhar, Punjab from 3rd January 2019 to 7th January 2019. PM Narendra Modi is going to inaugarate this.

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 2019