Questions

Q:

Select the antonym of:

to sue

A) to absolve B) to litigate
C) to indict D) to solicit
 
Answer & Explanation Answer: A) to absolve

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 6808
Q:

Write a c program for linear search.

Answer

#include<stdio.h>
int main(){

    int a[10],i,n,m,c=0;

    printf("Enter the size of an array: ");
    scanf("%d",&n);

    printf("Enter the elements of the array: ");
    for(i=0;i<=n-1;i++){
         scanf("%d",&a[i]);
    }

    printf("Enter the number to be search: ");
    scanf("%d",&m);
    for(i=0;i<=n-1;i++){
         if(a[i]==m){
             c=1;
             break;
         }
    }
    if(c==0)
         printf("The number is not in the list");
    else
         printf("The number is found");

    return 0;
}

Sample output:
Enter the size of an array: 5
Enter the elements of the array: 4 6 8 0 3
Enter the number to be search: 0
The number is found

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

2 6807
Q:

Who is known as the father of Pentium Chip?

 

A) Vinod Krishnan B) Seymour I. Rubinstein
C) Sanjay Mokashi D) Vinod Dham
 
Answer & Explanation Answer: D) Vinod Dham

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities
Exam Prep: Bank Exams

0 6804
Q:

Who is the Indian Classical dancer credited with the first female dancer to learn Chhau form ?

Answer

Sonal Mansingh

Report Error

View answer Workspace Report Error Discuss

9 6803
Q:

The process of forming urine begins in the

 

A) embryo B) ureter
C) nephrons D) urethra
 
Answer & Explanation Answer: C) nephrons

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

0 6802
Q:

A spreadsheet contains

A) Rows B) Columns
C) Both A & B D) Tables
 
Answer & Explanation Answer: C) Both A & B

Explanation:

A_spreadsheet_contains1553603758.png image

 

A spreadsheet contains both rows and columns.

Report Error

View Answer Report Error Discuss

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

5 6799
Q:

What is one benefit of lifelong physical activity?

A) high blood pressure B) increase in healthy eating habits
C) high physiological age D) prevention of weight gain
 
Answer & Explanation Answer: C) high physiological age

Explanation:
Report Error

View Answer Report Error Discuss

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

12 6799
Q:

 A benefit of the three-tier architecture is which of the following?

A) New modules can be built to support specific business needs B) Performance improves for compiled SQL statements
C) Results in a thinner client and database server D) All of the above.
 
Answer & Explanation Answer: A) New modules can be built to support specific business needs

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Database

1 6796