Questions

Q:

A search engine is a program to search

A) files in the www B) documents in the www
C) Both A & B D) None of the above
 
Answer & Explanation Answer: C) Both A & B

Explanation:

A search engine is a set of programs which enables users to search documents and files ihe world wide web.

 

Common search engines are Google, Yahoo, Bing,...

Report Error

View Answer Report Error Discuss

1 2022
Q:

Which of the following describes computer animation?

A) a sequential art, which emerged in the late nineteenth century to attract more readers to newspapers B) the art of using 2-D and 3-D computer graphics to create moving images and special effects in films
C) a sister art of video games, which involves interaction with a user interface to generate visual feedback D) None of the above
 
Answer & Explanation Answer: B) the art of using 2-D and 3-D computer graphics to create moving images and special effects in films

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

1 2022
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 2022
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 2022
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 2022
Q:

The HAVING clause does which of the following?

A) Acts like a WHERE clause but is used for columns rather than groups B) Acts like a WHERE clause but is used for rows rather than columns
C) Acts EXACTLY like a WHERE clause D) Acts like a WHERE clause but is used for groups rather than rows
 
Answer & Explanation Answer: D) Acts like a WHERE clause but is used for groups rather than rows

Explanation:
Report Error

View Answer Report Error Discuss

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

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

Select the antonym of
to remand

A) to filibuster B) to tarry
C) to expedite D) to adjourn
 
Answer & Explanation Answer: C) to expedite

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2021