Questions

Q:

The coldest planet in the solar system is ?

A) Venus B) Jupiter
C) Uranus D) Pluto
 
Answer & Explanation Answer: C) Uranus

Explanation:
Report Error

View Answer Report Error Discuss

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

2 3448
Q:

In which year was the State of Jharkhand formed

A) 1998 B) 1999
C) 2000 D) 2001
 
Answer & Explanation Answer: C) 2000

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

2 3448
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 3448
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 3447
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 3444
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 3444
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:

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 3442