if array a conatins 'n' elements and array b conatins 'n-1'
elements.array b has all element which are present in array
a but one element is missing in array b. find that
element.
Three boxes labeled as red, blue and mixed.These labels are
incorrect.one box contains red balls and another box
contains blue balls and remaining one box contains both red
and blue balls.
Pickup one ball from any box(u should pickup ball only
once) and name the correct labels.
In a listbox of cities, if I enter B, it should display all
the cities starting with B, then if i type BA, then all
cities starting with BA and so on. Pls anyone give me all
the positive and negative test cases for this. It is
urgent. Realtime questions pls.
write a function that takes an integer array as an input and
finds the largest number in the array. You can not sort
array or use any API or searching needs?
You attempt to query the data base with this command:
SELECT name, salary FROM employee WHERE salary=(SELECT
salary FROM employee WHERE last name='Wagner' OR dept no=233)
Choose most appropriate option from the following:
1)Sub-queries are not allowed in the where clause.
2)a multiple row sub-query used with a single row comparison
operator.
3)a single row query is used with a multiple row comparison
operator.