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