Searching for "Row"

Q:

If logxl+m-2n = logym+n-2l = logzn+l-2m, then xyz is equal to

A) 0 B) 1
C) lmn D) 2
 
Answer & Explanation Answer: B) 1

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Logarithms

Q:

Every year, the Spanish town of Buñol has a fight where what type of food is thrown?

Answer

Tomatoes

Report Error

View answer Workspace Report Error Discuss

Subject: World Geography

Q:

Ravi started walking from his house east direction on Bus stop which is 3km.away. Then he set off in the bus straight towards his right to the school 4 km away. what is the crow flight distance from his house to the school?

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

Explanation:

Report Error

View Answer Report Error Discuss

Filed Under: Direction Sense Test

Q:

Of the six members of a panel sitting in a row  X is to left of Q but on the right  of P. Y is in the right of Q but is on the left of Z, Z is to the left of R. Find the members who are at the extreme?

A) QZ B) XZ
C) PR D) QY
 
Answer & Explanation Answer: C) PR

Explanation:

According to given data the sitting order is P X Q Y Z R

So the members in the extreme position are P R

Report Error

View Answer Report Error Discuss

Filed Under: Alphabet Test

Q:

During which decade did the population of India record a negative growth rate?

A) 1921 - 31 B) 1911 - 21
C) 1941 - 51 D) 1931 - 41
 
Answer & Explanation Answer: B) 1911 - 21

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

Q:

What is needed to make a multiple choice list with a custom view for each row?

Answer

Multiple choice list can be viewed by making the CheckBox android:id value be “@android:id /text1". That is the ID used by Android for the CheckedTextView in simple_list_item_multiple_choice.

Report Error

View answer Workspace Report Error Discuss

Q:

Define cursor attributes: %FOUND, %NOTFOUND, %ROWCOUNT, and %ISOPEN

Answer

- %FOUND


 This is a Boolean variable which evaluates to TRUE if the last row is successfully fetched.


 


- %NOTFOUND


 This is a Boolean variable which evaluates to TRUE if the last row is not successfully fetched. This means there are no more rows to fetch.


 


- %ROWCOUNT


 Returns the number of rows fetched by the cursor.


 


- %ISOPEN


If the cursor is open, it evaluates to TRUE else FALSE.

Report Error

View answer Workspace Report Error Discuss

Subject: Oracle

Q:

Difference between %TYPE and %ROWTYPE.

Answer

%type is used to declare a field of a table while %rowtype is used to declare a record with the same type as specified in that table, view or cursor.


Example of %type:


DECLARE


         v_EmployeeName emp.ename%TYPE


 


Example of %rowtype


DECLARE


          v_empployee emp%ROWTYPE;

Report Error

View answer Workspace Report Error Discuss

Subject: Oracle