Cada pergunta deste Quiz é cronometrada.
What accurately describes Sublime:
It is a Text Editor
A Eureka Moment
An IDE( Integrated Development Environment) that supports an array of
Sublime Text is a proprietary cross-platform source code editor with a Python application programming interface (API).
What is the process of opening Sublimes package control menu?
Tools>Developer>Package Control
Goto > Package Controll > View List Of Packages
Preferences> Package Control
Ctrl+shift+k
The "sideBarEnhancement" is Sublimes' proprietary plugin that improves the overall functionality of the side bar.
For "text", the Value attribute specifies the value of the input field.
The correct syntax for an input field?
<input type="text" name="lname" pattern="[A-Z]" required autofocus >
<input type="hidden" name="fname" AutoFocus>
<input id="nameInput" type="Text" name="fname" pattern="[a-z]" required >
<input id=nameInput name="fname" pattern="[a-z]" Required >
Which Correct pattern regular expression checks for a Minimum 8 characters at least 1 Alphabet and 1 Number?
Pattern="^(?=.*[A-Za-z])(?=.*\d)[A-Za-z\d]{8,}$"
Pattern="^(?=.*[A-Za-z])(?=.*\[A][A-Za-z\d]{8,}$"
Pattern="(?=.*[A-Za-z])(?=.*\[A][A-Za-z\d]{8,}$"
"(?=.*[A-Za-z])(?=.*\[A][A-Za-z\d]{8,}$"
What correctly describes the getElementById() Method?
document.getElementById("demo");
document.getElementById(elementD)
function myFunction() { var x = document.getElementById(demo); x.style.color = "red"; }
function myFunction() { var x = document.getElementById("demo").value; document.write(x); }
Returns a -1 if no elements with a specified ID exists