Questions

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

India was elected as a President of General Assembly of the United Nations in 1953. Who occupied this office on behalf of India?

A) S. Radha Krishnan B) Gopalswamy Iyyengar
C) V.K. Krishna Menon D) Vijayalakshmi Pandit
 
Answer & Explanation Answer: D) Vijayalakshmi Pandit

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

9 3459
Q:

Crack the code?

english1526360782.jpg image

Answer

STARTLING is a required 9 letter English word is still a word each time you remove a letter from the word. And how it is shown below: 


 


1. Remove the L, and the word becomes: STARTING


2. Remove one T, and the word becomes: STARING


3. Remove the A, and the word becomes: STRING


4. Remove the R, and the word becomes: STING


5. Remove the other T, and the word becomes: SING


6. Remove the G, and the word becomes: SIN


7. Remove the S, and the word becomes: IN


8. Remove the N, and the word becomes: I

Report Error

View answer Workspace Report Error Discuss

5 3458
Q:

Which of the following is not soluble in water?

A) copper(II) hydroxide B) sodium chloride
C) silver nitrate D) potassium sulfate
 
Answer & Explanation Answer: A) copper(II) hydroxide

Explanation:

Sodium chloride:

The solubility rules tell you that all halides are soluble with the exception of those formed with siver, mercury, and lead ions. Since this is not the case here, sodium chloride will be soluble.

 

Silver nitrate:

It is soluble because all nitrates are soluble, without exception.

 

Potassium sulfate:

It is soluble because all sulfates are soluble with the exception of those formed with silver, calcium, barium, mercury, lead, and strontium ions.

 

Copper (II) hydroxyde:

It is insoluble because all hydroxides are insoluble with the exception of those formed with alkali metal ions and barium.

Report Error

View Answer Report Error Discuss

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

2 3458
Q:

Point out which from the following is NOT a right enumerated in the Constitution of India but has been articulated by the Supreme Court to be a Fundamental Right

A) Right to privacy B) Certiorari
C) Abolition of untouchability D) Right to form association or Union
 
Answer & Explanation Answer: A) Right to privacy

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

7 3457
Q:

Suppose an installed z/OS customer also has Power6 Servers. They are investigating consolidation of both types of servers to z/OS.Which of the following will establish the capacity for a new z/OS server?

A) AD Tools B) CP3000
C) Estimate the AIX load and add to CP3000 results. D) Run AIX in a z/OS LPAR to establish the loadWArialTimes New RomanZ
 
Answer & Explanation Answer: C) Estimate the AIX load and add to CP3000 results.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: IBM Certification

10 3456
Q:

During the sensorimotor stage the main task is to

Answer

Jean Piaget was a cognitive psychologist who identified four stages of development: the sensorimotor stage from birth to 2 years, the preoperational stage from age 2 to age 7, the concrete operational stage from age 7 to 11, and the formal operational stage from age 11 to adult. He identified milestones that occur at each stage.


 


According to Piaget, the main task of the sensorimotor stage is for the child to learn the concept of object permanence, use senses and motor skills to understand the world.

Report Error

View answer Workspace Report Error Discuss

Subject: Biology Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank PO

4 3455
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 3454