Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Oracle Certification Questions
What is Primary Key in DBMS?
Which dml command is used in conjunction with @@identity?
What is the maximum number of triggers, can apply to a single table?
Difference between Candidate key and Primary key?
Why do you need common fields in a Database?
What is the output after compile and run the following code ? int Output = 10; boolean b = false; if((b == true) && ((Output += 10) == 20)) { System.out.println("We are equal " + Output); } else { System.out.println("Not equal! " + Output); }
In the following pieces of code, B and D will compile without any error. True or false ? A: StringBuffer sb1 = "abcd"; B: Boolean b = new Boolean("abcd"); C: byte b = 255; D: int x = 0x1234; E: float fl = 1.2;
Define Executive Plan in Database SQL ?
Insert command falls in which sub-language of SQL ?
In R-DBMS, the data is organized in the form of _____.
What are the different types of SQL statements ?
How many joining conditions are required to join 4 tables in SQL?
What command would you use to create a backup control file?
What is an Oracle index?
What is the default return value of a function?
what will be the output of the following code? class Value { public int i = 15; } public class Test { public static void main(String argv[]) { Test t = new Test(); t.first(); } public void first() { int i = 5; Value v = new Value(); v.i = 25; second(v, i); System.out.println(v.i); } public void second(Value v, int i) { i = 0; v.i = 20; Value val = new Value(); v = val; System.out.println(v.i + " " + i); } }
MOV extension refers usually to what kind of files?
Explain Data Control Language
Which among the following keys are used to identify each row of the table uniquely?
What is the difference between oracle,sql and sql server?
1
2
3