Description: programming languages Online Quiz - 181 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
What is output of the this code? REPORT ZTEST. field-symbols: type c. = '10'. write:/ .
Which is control break statement?
What is system variable to handle the function codes?
Which event will trigger if program finds STOP statement
What is default event in ABAP program events?
import java.lang.*; class A { public static void main(String[] args) { StringBuilder s1=new StringBuilder("TCS"); StringBuilder s2=s1; System.out.println(s1==s2); System.out.println(s1.equals(s2)); } } What is the Result?
import java.lang.*; class A { public static void main(String[] args) { StringBuilder s1=new StringBuilder("TCS"); StringBuilder s2=new StringBuilder("TCS"); System.out.println(s1==s2); System.out.println(s1.equals(s2)); } } What is the Result?
import java.lang.*; class A { public static void main(String[] args) { StringBuilder s1="TCS"; String s2=new String("TCS"); System.out.println(s1==s2); System.out.println(s1.equals(s2)); } } What is the Result?
import java.lang.*; class A { public static void main(String[] args) { String s1=new String("TCS"); String s2=s1; System.out.println(s1==s2); System.out.println(s1.equals(s2)); } } What is the Result?
import java.lang.*; class A { public static void main(String[] args) { String s1=new String("TCS"); String s2="TCS"; System.out.println(s1==s2); System.out.println(s1.equals(s2)); } } What is the Result?
Which statement about the LGWR is false?
The DBWR process is NOT responsible for:
Which Oracle background process is responsible for coalescing free space?
Which command will cause an automatic commit to occur?
The DBA is creating a new user. Which of the following is NOT defined at user creation
Assume the database administrator wanted to limit the amount of idle time that any one user could have during a given session. Which of the following would be used to enforce such a limit?
The storage parmeters for a given table are: INITIAL=100, NEXT=100, MINEXTENTS=2, MAXEXTENTS=10, PCTINCREASE=20. If the first 3 extents are filled, what will the size of the FOURTH extent be?
Which component of an instance holds session variables and arrays when you are NOT running in MTS mode?
The CKPT process is optional; which process assumes these duties if CKPT is not active?
Discarding redo logs is done with which of the following statements?