C# Developer Fundamentals Flashcards
(175 cards)
Compilation
A special program called a compiler converts your source code into a different format that the computer’s central processing unit (CPU) can execute.
What is the primary job of the compiler?
The compiler primarily converts your code into an executable format that the computer can understand.
You use double quotation marks to create a literal string. True or False?
True!
What is in a web page?
The content, style, and interactive logic are separated into HTML, CSS, and JavaScript files, respectively
Is a fundamental design principle in software development that advocates dividing a system into distinct sections, where each section addresses a specific concern or responsibility. This makes the system more modular, maintainable, and scalable.
Separation of Concerns (SoC)
Key Concept: Concern
Refers to a specific functionality or purpose within a program.
HTML stands for…
Hypertext Markup Language
DOM stands for…
Document Object Model
CSS stands for…
Cascading Style Sheets
CSS rules have entities which are used to express the element (or elements) to which the styles should be applied…
Selector
CSS Selectors Note…
ID and class selectors let you apply styles to custom attribute names in your HTML. You use an ID to style one element, whereas you use classes to style multiple elements.
“.list” is a class or an ID selector?
Class Selector
“#msg” is a class or an ID selector?
ID Selector
Selector that represents the “<html>” element in the HTML page. Used to set global CSS variables (constants) in a CSS rule with the selector.
:root {
–green: #00FF00;
–white: #FFFFFF;
–black: #000000;
}
(or ECMAScript) is a programming language that helps you add interactivity to your web pages.
JavaScript
Is a way to run a JavaScript function when an event happens on the page.
Event handler
JS function that uses CSS selectors, just like the ones you used in your CSS file.
document.querySelector
What is the main purpose of HTML?
HTML is used to provide webpage structure.
In the context of web development, the Console is used for what purpose?
To send debugging messages to a web browser.
Creator of the World Wide Web…
Tim Berners-Lee
SEO stands for…
Search Engine Optimization
ARIA stands for…
Accessible Rich Internet Applications
Alt text for images note
All meaningful images should have an alt attribute (known casually as alt text) to describe what they are or the information that they’re trying to convey.
Images that are purely decorative should have their alt attribute set to an empty string: alt=””.
Is a web development term that means a control can accept input from a keyboard. For example, a button can accept allowing someone to activate or “click” it by selecting the Spacebar.
Focus