programming languages Online Quiz - 241
Description: programming languages Online Quiz - 241 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Which of the elements defined within the taglib element of taglib descriptor file are required. Select the two correct answers.
How to send signals to other processes?
Linux supports multi-threading
What is a /dev/zero device in Linux?
What is /dev/full device in Linux?
What is /dev/random device?
Zombie process will have parent as init
Which of the following will compile without error.
Which of the following are legal identifiers.
What will happen if you try to compile and run the following code? public class Q { public static void main(String argv[]){ int anar[]=new int[]{1,2,3}; System.out.println(anar[1]); }}
Which of the following statements are true?
Given the following declarations String s1=new String("Hello")String s2=new String("there");String s3=new String(); Which of the following are legal operations?
If you want to use USER32.DLL in your program, which namespace you should use:
Consider following statements: 1. System.Collections.ArrayList can store values of only single data type 2. System.Collections.ArrayList can store values of multiple data types 3. System.Collections.Generic.List can store values of multiple datatypes 4. System.Collections.Generic.List can store values of only single data type Which of the above is false:
Which of the following is true: