programming languages Online Quiz - 31
Description: programming languages Online Quiz - 31 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Is sizeof a keyword?
Static method accecss non-static field or call non-static method (T/F)
What methods java providing for Thread communications
IOexception is a unchecked exception (T/F)
These classes are defined in separate files. Will this code compile successfully? package dir1; class Parent { public java.util.Set set; } package dir2; class Child extends dir1.Parent { void test() { set.add("Hello"); } }
For concatenation of strings, which method is good, StringBuffer or String
For concatenation of strings, which method is good, StringBuffer or String
The following are used for Thread communication
Java provide ______ construct to find out the size of an object
modifiers that allowed for methods in an Interface
What is "delete" in java?
Differences between Value types and Reference types
Which of the following is value type
what is the difference between indexer and property
Abstract methods should override in non abstract child class. If the child class is also abstract class then abstract methods overriding is not mandatory.
Structure
Generic Constraints
C# allows you to define static methods that use generic type parameters
A delegate defined in a class can take advantage of the generic type parameter of that class
.NET allows you to have serializable generic types