Questions

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

Who was the first person to receive a Jnanpith award for a Telugu work ?

A) C. Narayana reddy B) Viswanatha Satyanarayana
C) Ravuri Bharadwaja D) Srirangam Srinivasarao
 
Answer & Explanation Answer: B) Viswanatha Satyanarayana

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards

12 7159
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 7158
Q:

The prime meridian passes through

A) Paris B) Greenwich
C) New York D) Delhi
 
Answer & Explanation Answer: B) Greenwich

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

13 7157
Q:

Which sport is played on the largest pitch?

A) Golf B) Cricket
C) Polo D) Football
 
Answer & Explanation Answer: C) Polo

Explanation:

Polo is the sport which is played in the largest pitch.

which_sport_is_played_on_the_largest_pitch1542950688.jpg image

Report Error

View Answer Report Error Discuss

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

2 7147
Q:

Consumer protection laws are meant to

Answer

Protect the consumer from the seller who cheat to sell his product.


 


The FTC’s Bureau of Consumer Protection stops unfair, deceptive and fraudulent business practices by collecting complaints and conducting investigations, suing companies and people that break the law, developing rules to maintain a fair marketplace, and educating consumers and businesses about their rights and responsibilities.

Report Error

View answer Workspace Report Error Discuss

Subject: Marketing and Sales Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

5 7129
Q:

Logical puzzle

Take from a pack of cards all the Aces, Kings, Queens and Jacks.
Arrange them in a 4 × 4 square so that every row, column and diagonal contains one card of each value (A,J,Q,K) and one card of each suit (Heart, Spade, Diamond, Club).

Answer

Our Solution:


Here is one solution of many:


 


Take_from_a_pack_of_cards_all_the_Aces,_Kings,_Queens_and_Jacks._1585550868.jpg image


 






Report Error

View answer Workspace Report Error Discuss

Subject: Logic Puzzles Exam Prep: CAT , Bank Exams

35 7128
Q:

Which of the following processes is used to remove reducible oxides from the metal?

A) liquation B) cupellation
C) poling D) electro refining
 
Answer & Explanation Answer: C) poling

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

32 7124