You should avoid using a(n) ____________________ as the first character in ID names.

Fill in the blank(s) with the appropriate word(s).


number

Computer Science & Information Technology

You might also like to view...

Case-Based Critical Thinking QuestionsCase 6-3Larry has just bought an online Web hosting solution from a popular ISP. He knows the ISP provides some scripts to allow people to create logon pages for their Web site if they want to have a password-protected blog, for example. Larry wants to create such a page for his blog about video games. What type of method will Larry most likely be using for submitting his form data?

A. get B. submit C. post D. reset

Computer Science & Information Technology

Given the code:

``` int number, *ptr_num = &number;``` what is wrong with the assignment: ptr_num = 3 ? A. You can’t assign an int to a pointer. B. ptr_num is not defined. C. The number variable must be assigned an address. D. Nothing is wrong.

Computer Science & Information Technology

What is the output of running the following code?string name = "Mark"name[3] = ‘c'print name

A. Mark B. Marc C. Nothing D. An error

Computer Science & Information Technology

What is the keyboard shortcut for pasting text?

A. [Ctrl][C] B. [Ctrl][P] C. [Ctrl][X] D. [Ctrl][V]

Computer Science & Information Technology