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

Which sample of matter is a mixture?

A) KBr (S) B) NaCl (L)
C) K (S) D) NaCl (Aq)
 
Answer & Explanation Answer: D) NaCl (Aq)

Explanation:

Mixtures are combination of two or more substances physically which can be separated in to the original.

Matter can be breakdown into two categories. 

1) Pure substances 

2) Mixtures

 

Here in the given options, options A, B, C are pure substances as they are indicated as S & L in brackets. Option D) is an aqueous solution, that can be dissolved in water.

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: AIEEE , Bank Exams , GATE
Job Role: Analyst , Bank Clerk , Bank PO

7 6806
Q:

"Eco Mark" is given to the Indian Products that are ___________.

 

A) pure and unadulterated   B) rich in proteins
C) environment friendly D) economically viable  
 
Answer & Explanation Answer: C) environment friendly

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: Bank Exams

2 6805
Q:

Select the antonym of

 

panacea

 

A) malady B) cure
C) elixir D) nostrum
 
Answer & Explanation Answer: A) malady

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 6805
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 6801
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
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 6792
Q:

Quality of transmission depends upon

A) Nature of signal only B) Nature of medium only
C) Both (A) and (B) D) Neither A nor B
 
Answer & Explanation Answer: C) Both (A) and (B)

Explanation:

Quality of transmission is governed both by nature of signal and nature of communication channel/medium.

Report Error

View Answer Report Error Discuss

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

18 6791