The default scripting language for Netscape and Internet Explorer is ________.
a) JavaScript
b) Perl
c) ECMAScript
d) Python
c) ECMAScript
Computer Science & Information Technology
You might also like to view...
Which of the following functions is not a text string manipulation tool?
A) LEFT B) CONCATENATE C) MATCH D) TRIM
Computer Science & Information Technology
Given the following method, which of these method calls is valid?
``` public static void showProduct (int num1, double num2) { int product; product = num1 * (int)num2; System.out.println("The product is " + product); } ``` a. showProduct(5.5, 4.0); b. showProduct(10.0, 4); c. showProduct(10, 4.5); d. showProduct(33.0, 55.0);
Computer Science & Information Technology