programming languages Online Quiz - 336
Description: programming languages Online Quiz - 336 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Which is the most performance efficient implementation for assignCode method from the given options?
Which code in the given options if put in below Main class will not print “Done”?
Which code from the given options if put in Main class will not print “Done”?
Which is the most performance efficient implementation for assignCode method from the given options?
Which code from the given options if put in Main class will not print “Done”?
Which of the given options code is correct and will not waste memory. Note :- Defination of the Class Item is class Item { public int code; public String name; public Item(String name) { this.name = name; } } itemList is ArrayList containing 50 objects of Class Items.
Which of the following is not a java keyword?
What is the output:class a { public static void main (String args[]) { int x; int y=10; if (y>0) { x = 10; } System.out.println(x); } }