Questions

Q:

Which of the following is the headquarters of UNEP (United Nations Environment Programme)?

A) The Hague B) New York
C) Nairobi D) Vienna
 
Answer & Explanation Answer: C) Nairobi

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

2 4807
Q:

The first session of the Constitutional Assembly was held on

A) Nov 26, 1946 B) Dec 9, 1946
C) Aug 16, 1947 D) Jan 26, 1948
 
Answer & Explanation Answer: B) Dec 9, 1946

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

5 4806
Q:

How many Months of the year have 28 Days?

A) 12 B) 7
C) 5 D) 6
 
Answer & Explanation Answer: A) 12

Explanation:

We have 12 months.

In every month we get 28 or more days. 

So that implies we get 28 days in each and every month.

 

Report Error

View Answer Report Error Discuss

Filed Under: Logic Puzzles
Exam Prep: TOEFL , GRE , GATE , CAT , Bank Exams , AIEEE
Job Role: IT Trainer , Database Administration , Bank PO , Analyst

8 4806
Q:

getppid() system call is used to bias the existing priority of a process 

A) TRUE B) FALSE
Answer & Explanation Answer: B) FALSE

Explanation:

It is used to get parent process identifier

Report Error

View Answer Workspace Report Error Discuss

Subject: Operating Systems
Exam Prep: GATE

1 4803
Q:

Who governs the INTERNET ?

A) ISOC B) IETF
C) IAB D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer

9 4803
Q:

CPU performance is measured through ________.

A) MHz B) Throughput
C) Flaps D) None of the above
 
Answer & Explanation Answer: B) Throughput

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams , CAT

4 4803
Q:

Why address bus in unidirectional and data bus is bidirectional?

Answer

Because there is no need address traansaction between processor and peripheral device but data bus is needed because data has to be read and write

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

3 4802
Q:

Can I increase the size of a dynamically allocated array? < Yes / No> if yes, how?

Answer

Yes, using the realloc() function as shown below:


main()


{


        int *p;


        p = ( int *) malloc (20) ;


        t = p;


        t = (int *) realloc ( p, 40);


        if ( t == NULL )


        Printf (" Cannot reallocate, leaves previous allocated region unchanged ");


       else


       {


              if ( p ==t )


              ;  / * the array expanded at the same region */


             else


            { 


                 free ( p ); / * deallocate the original array */


                 p = t;  /* set p to newly allocated region */


             }


      }


}  

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 4800