programming languages Online Quiz - 63
Description: programming languages Online Quiz - 63 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Attempted
0/20
Correct 0
Score 0
‹
›
What modifiers may be used with an interface declaration
At first JAVA was named as______ .
A class inherit the constructors of its superclass?
public class Fun { public static void main(String[] args){ int x=0; boolean b=true; String str; str=(b)?"success": (x=0)?"Failure":"Neither"; System.out.println(str); } }