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?
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?
Which command will cause an automatic commit to occur?
Which Oracle background process is responsible for coalescing free space?
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) { StringBuilder s1="TCS"; String s2=new String("TCS"); System.out.println(s1==s2); System.out.println(s1.equals(s2)); } } What is the Result?
Which event will trigger if program finds STOP statement