programming languages Online Quiz - 33
Description: programming languages Online Quiz - 33 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Attempted
0/20
Correct 0
Score 0
‹
›
Can constructors be declared static?
Are static methods allowed to access instance variables using "this"
class C{ int i; public static void main (String[] args) { int i; //1 private int a = 1; //2 protected int b = 1; //3 public int c = 1; //4 System.out.println(a+b+c); //5 }}
select which of these are correct
" ?: " is a
Which of the following are bit wise operators in java?
All classes extend from
abstract keyword is used
Which is not a part of java
Using super keywork how many levels up we can go
Using the "Super" keyword we can go one level up (T/F)
" ?: " is a conditional Operator (T/F)
Can final method be overridden?
Can you automatically convert long value into int , if the long value is small enough to fit into an int.