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

Can You Solve This Tricky Puzzle In 10 Seconds?

Answer

In the last row fifth letter is 'I'.

Report Error

View answer Workspace Report Error Discuss

Subject: Logic Puzzles Exam Prep: Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

83 7167
Q:

The only active volcano of India is located in which State/Union Territory ?

A) Andaman & Nicobar Island B) Gujarat
C) Haryana D) Maharashtra
 
Answer & Explanation Answer: A) Andaman & Nicobar Island

Explanation:

A team of scientists led by Abhay Mudholkar, from CSIR-National Institute of Oceanography (CSIR-NIO) in Goa on February 17, 2017 informed that India’s only live volcano, the barren island volcano in the Andaman and Nicobar Islands has started erupting smoke and lava again. The Barren Island volcano last erupted in 1991 after lying dormant for 150 years. Again the volcano has started showing sporadic activity in small intervals of 5-10 minutes. As per the scientists, during the day only ash clouds were observed, but after sunset red lava foundations were erupting from the crater into the atmosphere and hot lava streamed down the slopes.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

8 7166
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 7165
Q:

Which Amendment Act introduced changes in the Preamble to the Indian Constitution?

A) the 38th Amendment Act, 1975 B) the 40th Amendment Act, 1976
C) the 42nd Amendment Act, 1976 D) the 44th Amendment Act, 1979
 
Answer & Explanation Answer: C) the 42nd Amendment Act, 1976

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

5 7164
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 7163
Q:

Who has been appointed as the new economic affairs secretary in the Union Finance Ministry  ?

A) N. K. Sinha B) Tapan Ray
C) Subhash C. Garg D) Kirti Singh
 
Answer & Explanation Answer: C) Subhash C. Garg

Explanation:

Subhash C. Garg, a 1983 batch lAS officer of Rajasthan cadre, has been appointed as the new the economic affairs secretary in the Union Finance Ministry. The post fell vacant after Shaktikanta Das retired on May 31, 2017. Currently, Tapan Ray, the corporate affairs secretary, has the additional charge of the economic affairs department. Prior to this appointment, Garg was Executive Director at World Bank for Bangladesh, Bhutan, India and Sri Lanka.

Report Error

View Answer Report Error Discuss

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

10 7161
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 7145