programming languages Online Quiz - 162
Description: programming languages Online Quiz - 162 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
XSLT
Command used to refine the declared variables
Use of Examine command
What will be the ouput of the following code snippet? StringBuffer myBuffer = new StringBuffer(15); myBuffer.append("Hello World!"); System.out.println(myBuffer.length()+","+ myBuffer.capacity());
What will be the ouput of the following code snippet? String myString1 = "Java"; String myString2 = new String("Java"); System.out.println(myString1 == myString2 ^ myString1.equals(myString2));
What will be the ouput of the following code snippet? String myString1 = "Hello World!"; myString1.replace('e', 'o'); System.out.println(myString1);
What will be the ouput of the following code snippet? String myString = new String("Java"); StringBuffer myBuffer = new StringBuffer("Java"); myString.replace('a','o'); myBuffer.replace('a','o'); System.out.println(myString+","+myBuffer);
As per the Coding Guidelines of the Project, Which of the following follows the spacing guidelines while using operators
As per the Coding Guidelines of the Project, Which of the following follows guidelines while declaring Pointer
As per the Coding Guidelines of the Project, Which of the following is a valid filename ?
As per the Coding Guidelines of the Project, Which of the following is a valid Class Attribute ?
Which of the following directory in an MDDS instance contains initialisation files which are used during MDDS installation (data files, but installation scripts
Which clearcase command is used to create a new element