programming languages Online Quiz - 91
Description: programming languages Online Quiz - 91 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Which of these is used to open an database?
On start up, which of these window is not displayed?
Which of these is not an collection of the VB project?
Visual Basic uses an object called ______ to hold your table?
What will be printed out if this code is run with the following command line? java myprog good morning public class myprog{ public static void main(String argv[]) { System.out.println(argv[2]); } }
A byte can be of what size
What data will be printed out if you attempt to compile and run the following code(ignore newline in output)? int i=1; switch (i) { case 0: System.out.println("zero"); break; case 1: System.out.println("one"); case 2: System.out.println("two"); default: System.out.println("default"); }
Which of the following will output -4.0
What is the result of the following operation? System.out.println(4 | 3);
Which of the following lines will compile without warning or error.
Which of the following will throw an error while compilation 1) import java.awt.; package Mypackage; class Myclass {} 2) package MyPackage; import java.awt.; class MyClass{} 3) /This is a comment */ package MyPackage; import java.awt.; class MyClass{}
What will happen if you try to compile and run the following code public class MyClass { public static void main(String arguments[]) { amethod(arguments); } public void amethod(String[] arguments) { System.out.println(arguments); System.out.println(arguments[1]); } }
If you wanted to find out where the position of the letter v (ie return 2) in the string s containing "Java", which of the following could you use?
Which of the following is not a keyword or reserved word in Java?
if(check4Biz(storeNum) != null) {} Referring to the above, what datatype could be returned by method check4Biz()?
Which of the following lines will compile without warning or error.
A byte can be of what size
Which of the following are keywords or reserved words in Java?
System.out.println(4 | 3);
What is the size for double data type in c#