Questions

Q:

64 S on CB?

Answer

The given statement implies that 64 Squares on Carrom Board.

Report Error

View answer Workspace Report Error Discuss

14 6846
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 6838
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 6837
Q:

Which of the following regions receives rainfall throughout the year?

 

A) Tundra B) Monsoon
C) Mediterranean D) Equatorial
 
Answer & Explanation Answer: D) Equatorial

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography
Exam Prep: Bank Exams

1 6831
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 6829
Q:

Which of the statements given below are correct?

1. The author of the novel 'Dodgers' is Don Winslow.
2. The author of the novel 'Forty Thieves' is Bill Beverly.
3. The author of the novel 'The Corrections' is Thomas Perry.

A) 1 and 2 B) 2 and 3
C) 1 and 3 D) 1, 2 and 3
 
Answer & Explanation Answer: D) 1, 2 and 3

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors
Exam Prep: Bank Exams

0 6826
Q:

Translation of the dna sequence AAGCTGGGA would result in

A) a DNA strand with the base sequence TTCGACCCT B) an mRNA strand with the sequence TTCGACCCT
C) a sequence of three amino acids linked by peptide bonds D) an mRNA strand with the sequence UUGCACCCU
 
Answer & Explanation Answer: A) a DNA strand with the base sequence TTCGACCCT

Explanation:

Translation_of_the_dna_sequence_AAGCTGGGA_would_result_in_a_DNA_strand_with_the_base_sequence_TTCGACCCT1557489837.jpg image

Report Error

View Answer Report Error Discuss

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

7 6824
Q:

The novelist, poet and critic of which language has been conferred with Jnanpith Award for 2015?

 

A) Bengali B) Telugu
C) Odia D) Gujarati
 
Answer & Explanation Answer: D) Gujarati

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards
Exam Prep: Bank Exams

0 6823