Searching for "u"

Q:

Explain how garbage collection deals with circular references?

Answer

The .Net runtime knows about all the references between the objects. It can identify all the circular references that are reachable from the root and hence finalize them to free them all at once if and when needed.

Report Error

View answer Workspace Report Error Discuss

Subject: .NET

Q:

What value does read() return when it has reached the end of a file?

A) 1 B) -1
C) 0 D) None
 
Answer & Explanation Answer: B) -1

Explanation:

It returns -1

Report Error

View Answer Report Error Discuss

Filed Under: Programming

Q:

Why crystal is a preferred clock source?

Answer

Because of high stability, large Q (Quality Factor) & the frequency that doesn't drift with aging. Crystal is used as a clock source most of the times.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

Q:

In a certain code language, '297' means 'tie clip button'. Which number means 'button' ? 

I. In that language '926' means 'clip your tie'. 

II. In that language '175' means 'hole and button'. 

A) If the data in statement I alone are sufficient to answer the question B) If the data in statement II alone are sufficient answer the question
C) If the data either in I or II alone are sufficient to answer the question; D) If the data even in both the statements together are not sufficient to answer the question
 
Answer & Explanation Answer: C) If the data either in I or II alone are sufficient to answer the question;

Explanation:

Comparing the information in the question with statement 1. we find that '2' and '9' are the codes for 'tie' and 'dip'. So, '7' represents 'button'.

Thus, I alone iS sufficient.

Again, comparing the information in the question with II, WO find that the common code number '7' stands for the common word 'button'.

Thus, II alone also is sufficient. 

Report Error

View Answer Report Error Discuss

Filed Under: Data Sufficiency

Q:

In a code, 'lee pee tin' means 'Always keep smiling'. What is the code for ? 

I. 'tin lut lee' means 'Always keep left'.

II. 'dee pee' means 'Rose smiling. 

A) If the data in statement I alone are sufficient to answer the question B) If the data in statement II alone are sufficient answer the question
C) If the data either in I or II alone are sufficient to answer the question; D) If the data even in both the statements together are not sufficient to answer the question
 
Answer & Explanation Answer: C) If the data either in I or II alone are sufficient to answer the question;

Explanation:

Comparing the information in the question with I. we find that 'tin' and 'lee' are the codes for 'always' and 'keep'.

So. 'pee' represents 'smiling' Thus, I alone is sufficient Am.

comparing the information in the question with II, we find that the common code word 'pee' stands for the common word 'smiling'.

Thus, II alone is also sufficient 

Report Error

View Answer Report Error Discuss

Filed Under: Data Sufficiency

Q:

How many visitors saw the exhibition yesterday ?

I. Each entry pass holder can take up to three persons with him/her. 

II. In all, 243 passes were sold yesterday

A) If the data in statement I alone are sufficient to answer the question B) If the data in statement II alone are sufficient answer the question
C) If the data either in I or II alone are sufficient to answer the question; D) If the data even in both the statements together are not sufficient to answer the question
 
Answer & Explanation Answer: D) If the data even in both the statements together are not sufficient to answer the question

Explanation:

From the two statements, we find that maximum (243 x 3)  i.e, 729 visitors saw the exhibition, But the exact number cannot be determined  

Report Error

View Answer Report Error Discuss

Filed Under: Data Sufficiency

Q:

Which of the following modifiers can be used with Local inner class?

A) Final or Abstract B) Final or Transcient
C) Abstract or Transcient D) Final or public
 
Answer & Explanation Answer: A) Final or Abstract

Explanation:

It can either be Final or Abstract

Report Error

View Answer Report Error Discuss

Filed Under: Java

Q:

What are the rules to use the ROWGUIDCOL property to define a globally unique identifier column?

Answer

Only one column can exist per table that is attached with ROWGUIDCOL property. One can then use $ROWGUID instead of column name in select list.

Report Error

View answer Workspace Report Error Discuss

Subject: SQL