Answer the following statements true (T) or false (F)

1. An instance of the web page is re-compiled each time the ASPX file is requested by a user.
2. Relative positioning specifies that controls will be located exactly where they're dragged and
dropped onto the form by the programmer.
3. Controls and other elements are placed on a Web From sequentially.
4. A validator control ensures that the entered information is in the correct format.


1. False. Once the web page has been compiled, it will no longer be re-compiled unless a change is detected in the source by the CLR.
2. False. Absolute positioning specifies that controls will be located exactly where the programmer places them.
3. True.
4. True

Computer Science & Information Technology

You might also like to view...

Analyze the following code:

``` import java.util.Scanner; public class Test { public static void main(String[] args) { int sum = 0; for (int i = 0; i < 100000; i++) { Scanner input = new Scanner(System.in); sum += input.nextInt(); } } } ``` a. The program does not compile because the Scanner input = new Scanner(System.in); statement is inside the loop. b. The program compiles, but does not run because the Scanner input = new Scanner(System.in); statement is inside the loop. c. The program compiles and runs, but it is not efficient and unnecessary to execute the Scanner input = new Scanner(System.in); statement inside the loop. You should move the statement before the loop. d. The program compiles, but does not run because there is not prompting message for entering the input.

Computer Science & Information Technology

DES and Blowfish are examples of which of the following?

a. Symmetric encryption algorithms b. Encryption keys c. Asymmetric encryption algorithms d. Cipher text

Computer Science & Information Technology

Which of the following is NOT true about field properties?

A. Modifying them helps ensure database accuracy. B. Some are required, and some are optional. C. They are the same for each data type. D. They can be used to change the way data is displayed.

Computer Science & Information Technology

How would you balance DFDs?

What will be an ideal response?

Computer Science & Information Technology