programming languages Online Quiz - 204
Description: programming languages Online Quiz - 204 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Component A dependent on another Component B can access all Operations defined in B
From external components or systems perspective, a component is a .
When a Component is released to shared pool, Which of the following statements hold true.
is the process for determining the suitability of a Component for use within the intended final system.
DesignCompModeler is ready with his Model changes and now wants to share them with Other Components in that workspace, to do this, run
Select the correct statements
A trigger is…
The TRUNCATE TABLE…
Functions for error trapping are contained in which section of a PL/SQL block?
Select the VALID trigger type(s)?
PL/SQL raises an exception, in which TWO of the following cases:
In a PL/SQL block, a variable is declared as NUMBER without an initial value. What will its value be when it is first used in the executable section of the PL/SQL block?
Which of the following SQL functions can operate on any datatype?
Which section of a PL/SQL block would most likely contain a RAISE statement?
Which of the following statements gets the total value of the column 'Price' in the 'Sales' table?
Which of the following SQL statements does count the rows in the 'Sales' table?
Given the following code: public class OrtegorumFunction { public int computeDiscontinuous(int x) { int r = 1; r += X; if ((x > 4) && (x < 10)) { r += 2 * x; } else (x <= 4) { r += 3 * x; } else { r += 4 * x; } r += 5 * x; return r; } public static void main(String [] args) { OrtegorumFunction o = new OrtegorumFunction(); System.out.println("OF(11) is: " + o.computeDiscontinuous (11)); } } What is the result?
Given: 1. class Crivitch { 2. public static void main(String [] args) { 3. int x = 0; 4. // insert code here 5. do { } while (x++ < y); 6. System.out.println(x); 7. } 8. } Which, inserted at line 4, produces the output 12?
Given: class Plane { static String s = "-"; public static void main(String[] args) { new Plane().s1() ; System.out.println(s); } void sl() { try { s2(); catch (Exception e) { s += "c"; } } void s2() throws Exception { s3(); s += "2"; s3(); s += "2b"; } void s3() throws Exception { throw new Exception(); } } What is the result?