You are developing a web page that will contain an animated logo. The web page currently has a logo image on a canvas object. You reference the context of the
canvas object by using a variable named context.
You need to spin the logo image on the canvas.
Which method should you use?
You are developing a web page that includes the following HTML.
Hello, World!
You need to use inline CSS styling to format the text with Arial font.
Which code segment should you use?
You develop an HTML5 webpage. You have the following JavaScript code. (Line numbers are included for reference only.)
You need to handle the click event when a user clicks the showDialog button.
Which code segment should you insert at line 02?
You develop an HTML5 webpage. You have the following HTML markup:
You need to prevent users from entering specific characters into the username field.
What should you do?
You are developing an application to track project management for your company. The status of the project is stored in a variable named percentComplete.
The method must execute only when percentComplete is equal to the numeric value 100.
You need to develop the application to meet the requirement.
Which code segment should you use?
You have a webpage that includes the following markup and code:
You need to troubleshoot the code by clicking the Submit button.
Which value will be displayed?
You develop an HTML5 webpage with custom CSS. You have the following HTML markup:
...
You have the following requirements:
In addition to your CSS, you must use a corporate branded stylesheet named corporate.css.
The corporate.css file contains the style rule that must be used for .newsItem.
You must use the corporate.cssfile to ensure that the webpage changes when the brand changes.
You must add additional style rules to the webpage.
You cannot modify the corporate.css file.
You need to apply the appropriate CSS rules to meet the requirements.
What should you do?
You are developing an e-commerce website. Users place products into a shopping cart.
You need to ensure that the shopping cart data is available between browser sessions.
Which object should you use to store the shopping cart data?
You are creating a JavaScript object that represents a customer.
You need to extend the Customer object by adding the GetCommission method.
You need to ensure that all future instances of the Customer object implement the GetCommission method.
Which code segment should you use?