declare l1 number := null; l2 number :=null; begin if l1=l2 then message('equal'); else if l1<>l2 then message('not equal'); else message('else'); end if; end if; end; What will be the output ?
7 14415declare lowerl number:= 1; upperl number:= 3; num varchar2(10); begin for i into lowerl..upperl loop num:=num||to_char(lowerl); if i=3 then upperl:=5; end loop; message(num); What will be the output ?
3 8939#include
Given two tables Student(SID, Name, Course) and Level(SID, level) write the SQL statement to get the name and SID of the student who are taking course = 3 and at freshman level.
9 15932Post New Oracle Interview Questions
Blockchain is a distributed database. How does it differ from traditional databases?
Explain dataset.acceptchanges method in .net?
Explain how to spawn a thread?
if you do have a stack overflow profile.what is your ranking?
Explain the difference between stack and heap memory?
What is ado.net code?
What is difference between printf and scanf?
ROC converges if pole and zero lies inside a) origin b) z=1 c) pole d) zero ? Explanation please? if ROC does not converges then?
What is the name attribute of the
How will you change the instance type for instances which are running in your application tier and are using Auto Scaling? Where will you change it?
What are the requirement of using dunning?
Re: Can anybody help me by attaching files , formats for quality checks of common building materials like cement , concrete , bricks , sand and aggregates? please my email id is smgujjal@gmail.com
If you have two monitors one is of 19inch and the 2nd one is of 24inch,if you want to write same QTP script in both the two monitors is there any changes required in the script?
Are there any problems which can only be solved by MapReduce and cannot be solved by PIG? In which kind of scenarios MR jobs will be more useful than PIG?
Print the Prime numbers in below format only up to 20(Need commas also) 1,2,3,5,7,9,11,13,17,19