1. True/False: Radio buttons are used to allow users to select several options at one time.
2. True/False: A form using the <form></form> tag pair can be placed anywhere within a web page.
3. True/False: When a form is enhanced with JavaScript, an event handler must be used to evoke the JavaScript code.
4. True/False: The Common Gateway Interface (CGI) allows web pages to be generated as executable files.
5. True/False: CGI scripts are normally saved in a folder named cgi-bin that exists on every client's hard drive.
6. True/False: The property of each radio button in a group of radio buttons that must be the same for each button is the id property.
7. True/False: The checked property can be used to return the state of a checkbox to a JavaScript function.
8. True/False: The properties that determine the size of a text box are cols and rows.
9. True/False: If the information entered into a textarea box exceeds the number of rows originally set, a scroll bar is created.
10. True/False: The two types of buttons that display masked text (such as *'s or #'s) to hide what a user enters are "hidden" and "password".
1)FALSE : Radio button is used to select one and only option. check boxes are used to select multiple options.
2)TRUE : Form Fields can be placed anywhere in the web page.
3)TRUE :These event handlers basically invokes the action to be performed after the form is being submitted by the user.
4)TRUE : These Executable files are called CGI scripts.
5)FALSE : The CGI scripts are generally saved in web server's cgi-bin directory.
6)FALSE : name property is used for that purpose.
7)TRUE :Checked property returns the checked state of checkbox.
8)TRUE : ROWS property returns height and COLS property return Width of the text-box.
9)TRUE : Scroll Bar is added when size is exceeded.
10)TRUE: Password are protected by using (*) and the hidden defines a hidden input field.
1. True/False: Radio buttons are used to allow users to select several options at one time....
1) JavaScript is used on the client-side to provide interactivity with the user. a) True b) False 2) Which one of the following is considered a client-side technology? a) PHP b) MySQL c) Java Servlets d) Css 3) Which one of the following is predominantly a server-side technology? a) PHP b) Javascript c) HTML d) Css 4) Which form element requires a user to select one item only from multiple choices. a) Check box b) Text box c) Radio button...
Add JavaScript code in the “find_primeV2.js” to allow users to enter a number, and then based on the number of user enters, to find out how many prime numbers there are up to and including the user inputted number and then display them on the web page. The following are the detailed steps to complete this assignment: Step 1. [30 points] In “find_primeV2.js”, complete isPrime() function by (1) Adding one parameter in function header. That parameter is used to accept...
I need help writting a Javascript function that does the
following its for a HTML/CSS Shopping Cart Page
CODE
This page contains a list of the selected products that includes an image, name, price, quantity, and cost) Because the process is implemented not as real, three products along with its image and price are displayed on the page. The product ID of each product is stored in a hidden textbox. The default amount of each product is 1 and the...