?A_____occurs after a script has been successfully loaded with no syntax errors and is being executed by a browser.

A. ?load-time error  
B. ?run-time error
C. ?logical error
D. ?fatal error


Answer: B

Computer Science & Information Technology

You might also like to view...

What output is sent to the file out.dat by the following code, assuming these lines of code are embedded in a correct program?

``` ofstream fout; fout.open("out.dat"); fout << "*" << setw(5) << 123 << "*" << 123 << "*" << endl; fout.setf(ios::showpos); fout << "*" << setw(5) << 123 << "*" << 123 << "*" << endl; fout.unsetf(ios::showpos): fout.setf(ios::left); fout << "*" << setw(5) << 123 << "*" << setw(5) << 123 << "*" << endl; ```

Computer Science & Information Technology

For this iterator which of the following is correct? If correct what does the expression produce?

Suppose we have the following definition: ``` vector vec; // use push_back to put 10 values into vec here. vector::iterator itr1, itr2,itr3; itr1 = vec.begin(); itr2 = vec.begin() + 5; itr3 = vec.end(); ``` a) *iter1 b) itr2[3] c) itr + 3 >>>there is no itr, Do you mean itr3? d) itr – 3 e) itr3 – itr1 (if valid, what does this produce?) >>You asked for what is produced for all of them in intro to question

Computer Science & Information Technology

Which of the following statements is NOT a common use of the text functions?

A) To reconfigure data downloaded from the internet or received via email B) To extract specific parts of data within a field to match personal configuration C) To manipulate data that has been received from other sources D) To calculate the interval between dates presented in the data

Computer Science & Information Technology

Access to any properties or methods that are defined after the occurrence of the public, private, and protected keywords is governed by that keyword, which remains in effect until either the end of the class is reached or a different level of encapsulation is specified.

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

Computer Science & Information Technology