programming languages Online Quiz - 280
Description: programming languages Online Quiz - 280 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Choose the components of Java Platform
What data type should be used for storing precise values ?
Which of the following are true about nested class ?
java.lang.String class is declared as a final class.
Choose the methods that are not available in StringBuilder class.
Java packages are to be hierarchical.
Type erasure is a process where the compiler removes all information related to type parameters and type arguments within a class or method.
To declare a bounded type parameter, which keyword is used ?
Choose the one which is not a branching statement in Java.
Which of the below statement is True?
What is the value of a? b = 3 a = b == 3 print a
What is the value of a? b = 3 a = b == 3 print a
Consider the following code snippet: class A: a = 1 def foo(self): print "Hello",self.a class B(A): a = 3 def foo(self): print "Hi",self.a A = B a = A() b = B() What is the value of a.foo()
What will be the output? class A: def foo(self): print "Test" a = A() a.foo()
Identify which of the following are true statements about web applications
Which of the following are true statements about the deployment descriptor for a web application?