Questions

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 4804
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:

The composition of electrician solder is

A) lead-37%, tin-63% B) Iron-37%, tin-63%
C) lead-37%, Steel-63% D) Steel-37%, copper-63%
 
Answer & Explanation Answer: A) lead-37%, tin-63%

Explanation:
Report Error

View Answer Report Error Discuss

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

6 4802
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 4799
Q:

Which of the following are not pastoral nomads?

A) Pygmies B) Kazaks
C) Masai D) Lapps
 
Answer & Explanation Answer: A) Pygmies

Explanation:

The pygmies are hunting nomads

Report Error

View Answer Report Error Discuss

Filed Under: World Geography

2 4798
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 4797
Q:

What is the fastest of all the birds?

A) Blood phesant B) Swift
C) Sparrow D) None
 
Answer & Explanation Answer: B) Swift

Explanation:

Swift is the fastest among all the birds in India

Report Error

View Answer Report Error Discuss

Filed Under: Animals and Birds

42 4795
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 4794