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 3453
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 3450
Q:

What stops one branch of government from becoming too powerful?

A) State governments B) Every 4 years of President election
C) Members of congress D) Checks and Balances
 
Answer & Explanation Answer: D) Checks and Balances

Explanation:

A procedure or method called Checks and Balances stops one branch of government from becoming too powerful.

  • In the United States, there are three branches of government: The Executive, Legislative, and Judicial.

 

  • Each has its own responsibilities and at the same time they work together to make the country run smoothly and to assure that the rights of citizens are not ignored or disallowed.

 

  • There is a clear separation of powers between them.

 

  • Checks and Balances limit the power within each branch.

 

  • Each branch can stop and/or override processes within other branches in manners that are outlined in federal laws, regulations, and the constitution.

 

  • This way, their powers are balanced because the branches of government have the responsibility to check each other.
Report Error

View Answer Report Error Discuss

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

7 3450
Q:

Magnetic Tape can serve as

A) Input device B) Secondary storage device
C) Output device D) None of the above
 
Answer & Explanation Answer: B) Secondary storage device

Explanation:

Related image

Magnetic tape can serve as a Secondary storage unit. It is a medium for magnetic recording, made of a thin, magnetizable coating on a long, narrow strip of plastic film.

Report Error

View Answer Report Error Discuss

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

17 3449
Q:

_U_R_Y_

Complete this 7 letter word _U_R_Y_

1. Girls like it
2. Boys use it
3. Parents hate it.

Answer

HURRAYS.

Report Error

View answer Workspace Report Error Discuss

24 3449
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 3449
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 3448
Q:

Which of the following terms follows the trend of the given list?

YXXXXXXY, YXXXXXYX, YXXXXYXX, YXXXYXXX, YXXYXXXX, _______________

A) YYXXXXXX B) YXXXXXXY
C) YXXXXXYX D) YXYXXXXX
 
Answer & Explanation Answer: D) YXYXXXXX

Explanation:
Report Error

View Answer Report Error Discuss

1 3447