programming languages Online Quiz - 34
Description: programming languages Online Quiz - 34 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Do the list structure can have different data types ?
Do the negative indices are allowed in Python ?
Which is the following invalid structure/syntax in python ?
Function definition in python prefix with _____ .
A class or a function definition in python ends with _____
Identify the correct syntax for instantiating a class .
Identify the correct syntax for instantiating a class .
The constructor in python is _____
Variable in python are by default ______
How to initialize the variable with private scope ?
Can we give argument values to the parameters which are not at the end of the parameter list in the function definition ?
In java local variables are automatically instantiated(T/F)
What gets printed after this boolean b = false; if (b = true){ System.out.println("True"); }
What is "instanceOf" ?
For Object A to access method of object B, and the method has no modifier, Object A must be an instance of class which is ...
Each source file should have a public class in it ?
Methods which are marked as Protected can be accessed only by classes with in the same package?
Can abstract classes have non - abstract methods?
In a switch construct the execution will continue till
Using a break in a for loop , causes the loop to break out of the current iteration and jump to the next iteration of the loop...