Zusammenfassung der Ressource
Frage 1
Frage
What accurately describes Sublime:
Frage 2
Frage
What is the process of opening Sublimes package control menu?
Antworten
-
Tools>Developer>Package Control
-
Goto > Package Controll > View List Of Packages
-
Preferences> Package Control
-
Ctrl+shift+k
Frage 3
Frage
The "sideBarEnhancement" is Sublimes' proprietary plugin that improves the overall functionality of the side bar.
Frage 4
Frage
For "text", the Value attribute specifies the [blank_start]initial[blank_end] value of the input field.
Frage 5
Frage
The correct syntax for an input field?
Antworten
-
<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 >
Frage 6
Frage
Which Correct pattern regular expression checks for a Minimum 8 characters at least 1 Alphabet and 1 Number?
Antworten
-
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,}$"
Frage 7
Frage
What correctly describes the getElementById() Method?
Antworten
-
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