Which type script gets used in Siebel for coding.
eScript(Same as Java Script)
VB Script
Shell Script
Option 1 & 2 both
The CURD(Credential) rights on Siebel Applet/Application, which are those Applet Property get used in Siebel for CURD rights.
No Insert
No Delete
No Update
All of above
What is the output (Assuming written inside main) ? String s1 = new String("gopal"); String s2 = s1.replace('m','i'); s1.concat("Poddar"); System.out.println(s1); System.out.println((s1+s2).charAt(5));
Compile error
gopalPoddar o
gopalPoddar i
gopal i
Is the statement true"interface contains variables that must be static and final; abstract class may contain non-final and final variables."
True
False
Neither true nor false
No idea
Which of them is false about a Static data member within a class
A single copy of the data member exists
The data member is initialised to zero before the first object is created
Requires a global definition
Storage is allocated to the static data member on declaration
An array of references can be created
Is HTML page a web component?
Throwable is the base class for Error and Exception?
"This" keyword in java refer to current object?
is JVM a interpreter?