programming languages Online Quiz - 349
Description: programming languages Online Quiz - 349 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
What type is a div in asp.net?
Which two methods are defined by IHttpHandler Interface?
Both the Page_Load and Page_PreRender events happen with each page Request.What is the difference between these two events?
You need to write a code segment that transfers the first 80 bytes from a stream variable named stream1 into a new byte array named byteArray. You also need to ensure that the code segment assigns the number of bytes that are transferred to an integer variable named bytesTransferred. Which code segment should you use?
You have determined that your company's website is housed on a web server that cannot handle ASP. What would you do?
You want to add ASP capability to your company's website. What is the first thing you would check?
Abandon is an ASP ________ object method.
Which of these page extensions WILL NOT recognize and execute an include file?
What base class do all Web Forms inherit from?
Which is the best place to store connectionstring in .NET projects ?
Can you call one constructor from another if a class has multiple constructors?
Which of the following lines will compile without warning or error.
A byte can be of what size?
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]); } }
Which of the following are keywords or reserved words in Java?
What will be printed out if you attempt to compile and run the following code ? 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"); }
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?
You need to create a class that will store unique object elements. You do not need to sort these elements but they must be unique. What interface might be most suitable to meet this need?
What is the result of the following operation? System.out.println(4 | 3);