programming languages Online Quiz - 288
Description: programming languages Online Quiz - 288 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
int *p(char *a)
int (*p(char *a))[10]
The compiler uses it to internally reference the data members of a particular object
Different Return type is sufficient to overload two C++ functions
An operator overloading member function requires no arguments for a unary operator
Which of the operators can be overloaded
The precedence of the operators can be changed by operator overloading
Which one does not have a valueOf(String) method ?
The initial value of an instance variable of type String which is not explicitly initialized in the program is --.
Which type script gets used in Siebel for coding.
The CURD(Credential) rights on Siebel Applet/Application, which are those Applet Property get used in Siebel for CURD rights.
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));
Is the statement true"interface contains variables that must be static and final; abstract class may contain non-final and final variables."
Which of them is false about a Static data member within a class
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?
Final class can be overridden. This statement is…