programming languages Online Quiz - 181
Description: programming languages Online Quiz - 181 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Discarding redo logs is done with which of the following statements?
The CKPT process is optional; which process assumes these duties if CKPT is not active?
Which component of an instance holds session variables and arrays when you are NOT running in MTS mode?
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?
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 DBA is creating a new user. Which of the following is NOT defined at user creation
Which command will cause an automatic commit to occur?
Which Oracle background process is responsible for coalescing free space?
The DBWR process is NOT responsible for:
Which statement about the LGWR is false?
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?
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) { 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) { 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=new StringBuilder("TCS"); StringBuilder s2=s1; System.out.println(s1==s2); System.out.println(s1.equals(s2)); } } What is the Result?
What is default event in ABAP program events?
What is system variable to handle the function codes?
Which is control break statement?
What is output of the this code? REPORT ZTEST. field-symbols: type c. = '10'. write:/ .