programming languages Online Quiz - 162
Description: programming languages Online Quiz - 162 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Which statement is true?
XSLT
What is the correct syntax of the declaration which defines the XML version?:
Move by name performs
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? StringBuffer myBuffer = new StringBuffer("Java Programming"); myBuffer.setLength(12); System.out.println(myBuffer);
Among the following what is the advantage of StringBuilder over StringBuffer?
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);
Which of the following is tested when all the test units are run using testdrv -p
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
Which of the following is the only category of Messages where the developer should place information for his debugging purposes
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