Questions

Q:

Which of the following is regarded by historians as a crucial stage in describing the progress of civilization?

A) Writing B) The discovery of fire
C) Agriculture D) The use of internet
 
Answer & Explanation Answer: C) Agriculture

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

3 3445
Q:

Which nitrogenous base is not found in dna?

A) Uracil B) Thymine
C) Cytosine D) Guanine
 
Answer & Explanation Answer: A) Uracil

Explanation:

A nitrogenous base, or nitrogen-containing base, is an organic molecule with a nitrogen atom that has the chemical properties of a base. The main biological function of a nitrogenous base is to bond nucleic acids together. A nitrogenous base owes its basic properties to the lone pair of electrons of a nitrogen atom.

 

In DNA, four bases have been found. They are

1. Adenine (A),

2. Guanine (G),

3. Cytosine (C) and

4. Thymine (T).

 

The first three of these bases are found in RNA also but the fourth which is Uracil (U) is absent in it.

RNA contains cytosine and uracil as pyrimidine bases while DNA has cytosine and thymine.

Report Error

View Answer Report Error Discuss

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

4 3445
Q:

Man has...............pairs of salivary glands

A) 4 B) 6
C) 3 D) 8
 
Answer & Explanation Answer: C) 3

Explanation:

Salivary glands of man are 3 pairs = 6. They are one pair of parotid glands, one pair of submaxillary or submandibular glands and one pair of sublingual glands.

Report Error

View Answer Report Error Discuss

Filed Under: Biology

9 3443
Q:

How would you dynamically allocate a 2-D array of integers?

Answer

#include "alloc.h"


#define MAXROW 3


#define MAXcol 4


main()


{


        int *p, i, J;


        p = (int *) malloc (MAXROW * MAXCOL * sizeof (int));


         for ( i=0; i < MaxROW ; i++)


         {


                for (j=0; j < MAXCOL ; j++)


                { 


                      p [ i * MAXCOL + j] = i;


                       printf ( "%d", p [i * MAXCOL + j] );


                 }


                  printf ("\n");


          }


}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 3443
Q:

State-run Bharat Sanchar Nigam (BSNL) unveiled its mobile wallet in partnership with _______ to enable one-tap bill payment for its over 100 million subscribers.

A) Free Charge B) MobiWik
C) Paytm D) Ezetap
 
Answer & Explanation Answer: B) MobiWik

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: AIEEE , Bank Exams
Job Role: Bank Clerk , Bank PO

7 3443
Q:

Which one of the following is not true for minerals?

A) they can be a liquid, solid, or glass B) they can be identified by characteristic physical properties
C) they have a specific, internal, crystalline structure D) they have a specific, predictable chemical composition
 
Answer & Explanation Answer: A) they can be a liquid, solid, or glass

Explanation:

A mineral is a naturally occurring, inorganic solid, with a definite chemical composition. They cannot be in liquid or gas state. They exists only in solid state.

Report Error

View Answer Report Error Discuss

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

3 3442
Q:

Floridian starch is characteristic energy storage material of which algae?

A) Blue green algae B) Brown algae
C) Red algae D) Green algae
 
Answer & Explanation Answer: C) Red algae

Explanation:

The floridian starch is reserve food materials in the red algae or the members of class Rhodophytae. It is a characteristic feature of this group.

Report Error

View Answer Report Error Discuss

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

5 3441
Q:

What will be output of following c code?

void main()
{
struct bitfield
{
unsigned a:5;
unsigned c:5;
unsigned b:6;

}bit;
char *p;
struct bitfield *ptr,bit1={1,3,3};
p=&bit1;
p++;
clrscr();
printf("%d",*p);
getch();
}

Answer

Output: 12

Explanation:
Binary value of a=1 is 00001 (in 5 bit)
Binary value of b=3 is 00011 (in 5 bit)
Binary value of c=3 is 000011 (in 6 bit)

In memory it is represented as:
Let address of bit1 is 500 which initialize to char pointer p. Since can is one byte data type so p++ will be 501. *p means content of memory location 501 which is (00001100) and its binary equivalent is 12. Hence output is 12.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 3441