Sign in

(Midterms) Web Systems an Technologies Mocktest BSIT 604

(Midterms) Web Systems an Technologies Mocktest BSIT 604
87 questions • 3 d ago
  • Xai Alexandrei Delos Reyes
  • Report

    Question list

  • 1

    It is a modern solution for creating flexible layouts that work correctly on different screen sizes as it organizes content into two (2) dimensions: rows and columns.

    CSS Grid

  • 2

    Which statement is NOT TRUE about CSS Grid?

    It is the exact area of the screen that is rendering the website.

  • 3

    What is the correct syntax in creating a CSS Grid?

    main { display: grid; grid-template-columns: 30% 30% 30%; }

  • 4

    This property can be used to space the rows and columns.

    Gap

  • 5

    This tag specifies independent and self-content and encloses various elements such as header and paragraphs.

    <article>

  • 6

    This tag specifies some content besides the content it is placed in and is usually presented as sidebars.

    <aside>

  • 7

    It is the exact area of the screen that is rendering the website. In mobile devices, it is the full screen of a device, while it is the width and height of a browser window.

    Viewport

  • 8

    Which is the correct syntax of a Viewport?

    <meta name="viewport" content="width=device-width, initial- scale=1.0">

  • 9

    This viewport element should be included in all HTML webpages and always go inside the <head> element. It gives the browser instructions on controlling the page's dimension and scaling.

    <meta>

  • 10

    This sets the page width to follow the screen width depending on the device,

    width=device-width

  • 11

    It sets the initial zoom level when the webpage is loaded by the browser.

    initial-scale=1.0

  • 12

    These are not just sets of properties and values but containers for other rulesets implemented based on the media query results.

    Media Queries

  • 13

    Which is the correct syntax in declaring a media query in HTML?

    <link rel="stylesheet" media="screen and (min-width: 1025px)" href="style.css"/>

  • 14

    Which is the correct syntax in declaring a media query in CSS?

    @media screen and (min-width: 600px) { main { display: flex; } }

  • 15

    In HTML, this attribute is declared inside a link tag

    media

  • 16

    In Media Queries, It is one of the logics in a media query and is used to combine media types or features.

    And

  • 17

    It is one of the logics in a media query which is used if both conditions are true

    Only

  • 18

    It is one of the logics in a media query which is used to revert the media query that will return false if the output is true.

    Not

  • 19

    It is when the layout changes to adjust to the viewport.

    Breakpoint

  • 20

    It is a flexible one that can be viewed on small devices up to larger screens.

    Responsive image

  • 21

    Which is the correct syntax in creating a responsive Image?

    <style> .image { width: 100%; height: auto; } </style>

  • 22

    It is a video player that can be viewed on small screens up to larger screen devices. The syntax and placement are the same as those used to make responsive images.

    Responsive video

  • 23

    Which is the correct syntax in creating a responsive Video?

    <style> video { width: 100%; height: auto; } </style>

  • 24

    It makes the website interactive and complex through the implementation of intricate features such as displaying timely content updates and determining what happens when users click, hover, or type within specific elements in the website.

    JavaScript

  • 25

    Which statement is NOT TRUE about JavaScript?

    It is the line of code that browsers ignore and is used on a specific line or block of codes to add notes such as the program name and date or notes for future programmers that might modify the program

  • 26

    Wha extension does JavaScript Use?

    .js

  • 27

    JS code is placed and can appear multiple times inside the <head> or <body> tags of an HTML document using <script> tags that encloses the JavaScript codes.

    Internal JavaScript

  • 28

    Which is the correct syntax for internal JavaScript?

    <script type="text/javascript"> document.write("A sample script"); </script>

  • 29

    It is when the separated .js file is linked using <script> tags with the src attribute are usually placed within the <head> tags. It applies the JavaScript code to the webpage so that it can have an effect on the HTML document and anything else on it.

    External JavaScript

  • 30

    Which is the correct syntax for external JavaScript?

    <script src="jsfilename.js"> </script>

  • 31

    It is the line of code that browsers ignore and is used on a specific line or block of codes to add notes such as the program name and date or notes for future programmers that might modify the program.

    JavaScript Comment

  • 32

    It is the line of code that browsers ignore and is used on a specific line or block of codes to add notes such as the program name and date or notes for future programmers that might modify the program.

    JavaScript Comment

  • 33

    "It is used by adding two (2) slashes ( // ) before the note or comment" What type of JavaScript comment is being described?

    Line comment

  • 34

    "These are used to hide multiple lines of codes by adding /* to the first line of the block and enclosed by a */ after the last character in the block." What type of JavaScript comment is being described?

    Block comments

  • 35

    It is an individual line of code that is enclosed within the <script> tags.

    JavaScript Statement

  • 36

    It is a programming code that can be treated as an individual unit or component.

    JavaScript Object

  • 37

    What does DOM stand for?

    Document Object Model

  • 38

    What does BOM Stand for?

    Browser Object Model

  • 39

    Statements such as this are often grouped into logical units that perform specific tasks.

    Procedures

  • 40

    These are actions that can be performed on an object.

    Methods

  • 41

    These are used and placed inside the parentheses beside it to provide more specific information about the method.

    Arguments

  • 42

    bankLoan.calcPayments(60); Which is the Argument in this statement?

    (60)

  • 43

    bankLoan.calcPayments(60); Which is the Object in this statement?

    bankLoan

  • 44

    bankLoan.calcPayments(60); Which is the Method in this statement?

    calcPayments

  • 45

    Any text, graphics, and other information displayed on the webpage is part of the Document object, which is one of the most commonly used objects in DOM.

    JavaScript Output Methods

  • 46

    Which is the correct syntax for document.write()?

    document.write("<p>Best choices</p>");

  • 47

    This method of the Document object is used to write custom information such as username or address.

    write()

  • 48

    It is a basic method used to write text to the console.

    console.log()

  • 49

    It is a basic method used to write text to the console.

    console.log()

  • 50

    It is where messages are displayed that are invisible to users and are separated from the HTML/CSS environment. However, this can be visible in a browser’s developer tool console.

    Console

  • 51

    This method is used to display an alert box that has amessage and an OK button. The text in the argument is the information users are forced to see, so it is better not to overuse this method.

    alert()

  • 52

    Which is the correct syntax for console.log?

    console.log("Hello, World!");

  • 53

    Which is the correct syntax for alert()

    <script> function testFunction() { alert("Hello, how are you?"); } </script>

  • 54

    It is used to perform specific actions on arguments called operands, which can be both values and variables.

    JavaScript Operator

  • 55

    operators allow assigning of values to variables and constants. It commonly uses the equal sign (=).

    Assignment

  • 56

    operators express mathematical operations and accept numerical values and variables. It includes addition, subtraction, multiplication, division, remainder, power, and increment that adds one (1) in the operand and decrement (--) that subtracts one (1).

    Arithmetic

  • 57

    operators work with Boolean-type values such as true or false. It includes a conjunction that performs logical AND (&&), an alternative that performs logical OR (||), and a negation that performs logical NOT (!).

    Logical

  • 58

    operators compare two (2) variables or operands. It includes not equal or equal to the value of the variable or operand (!=, ==), equal value and equal type (===), less than and greater than (<, >), and less than or equal to and greater than or equal to (<=, >=),

    Comparison

  • 59

    It is the value that the program stores in a computer’s memory. It is used by writing a statement first that creates the variable and assigning a name for it.

    JavaScript Variable

  • 60

    The assigned name to a variable is called what?

    identifier

  • 61

    Which statement is NOT TRUE about JavaScript naming conventions?

    It must include spaces.

  • 62

    These are unique words that are already part of the JavaScript language syntax.

    Keywords or reserved words

  • 63

    "It represents textual data." What data type is being described?

    String

  • 64

    "It contains a logical entity that may return a TRUE or FALSE value." What data type is being described?

    Boolean

  • 65

    "Any digit that is either an integer or a decimal." What data type is being described?

    Number

  • 66

    "an unknown or missing value." What data type is being described?

    Null

  • 67

    "refers to a variable with no value." What data type is being described?

    Undefined

  • 68

    Which is NOT a JavaScript data type?

    Decimal

  • 69

    Which is the correct syntax for declaring variables in JavaScript?

    let taxRate = 0.05;

  • 70

    This is used to declare a set of data represented by a single variable name.

    Array

  • 71

    Which is the correct syntax in creating an Array?

    let months = ["Jan", "Feb", "Mar", "Apr", "May",];

  • 72

    It breaks up the execution flow using decision-making, branching, and looping to enable programs to conditionally execute specific code blocks.

    Control flow

  • 73

    It is the simplest control flow instruction in JavaScript. It checks a given condition and, depending on its Boolean value, either executes a code block or skips it. The code block should be separated using curly brackets.

    If statement

  • 74

    Which is the correct syntax for an If statement?

    if (isUserReady) { alert("User is ready!"); }

  • 75

    Which is the correct syntax in an If...else statement?

    if (isUserReady) { console.log("User is ready!"); } else { console.log("User is not ready!"); }

  • 76

    This keyword is an optional part of the if statement, and it allows the addition of a second code block that will be executed only when the initial condition is NOT met.

    else

  • 77

    Which is the correct syntax for Else...if statement?

    if (number < 20) { alert("Less than 20"); } else if (number < 40) { alert("Less than 40"); } else if (number < 60) { alert("Less than 60"); } else { alert(">100") }

  • 78

    These are the second form of control flow statement. While control flow statements can change code behavior, loops are an easy way to repeat any fragment of the code as many times as possible, or until a stopping condition is met.

    Loops

  • 79

    It is where a code block is executed while a given condition is true but stops once the condition is false.

    While loop

  • 80

    In a loop, when a code block is repeated, it is referred to as an?

    Iteration

  • 81

    This is avoided by including at least one statement that eventually results in a false value for the condition.

    Infinite loop

  • 82

    A code block uses this, whose value changes with each iteration, and once that counter fails to match the condition, the loop ends.

    Counter

  • 83

    Which is the correct syntax for a While loop?

    let j = 1; while (j <= 5) { document.write(j + "<br>"); j++; }

  • 84

    It is used to loop the statement until it evaluates to false. It evaluates a condition after executing the command block at least once.

    Do while loop

  • 85

    In the parentheses after the word for, there will be no single condition this time, unlike in the while loop. Here, it is divided into three fields by semicolons, and each field is assigned a different meaning.

    For Loop

  • 86

    Which statement is NOT TRUE about For Loop syntax?

    The third expression cannot be left empty.

  • 87

    Which is the correct syntax for a for loop?

    for (let i = 5; i < 31; i++) { console.log(i); }

  • The Contemporary World Mock test (Prelims)

    The Contemporary World Mock test (Prelims)

    Xai Alexandrei Delos Reyes · 58 questions · 2 y ago

    The Contemporary World Mock test (Prelims)

    The Contemporary World Mock test (Prelims)

    58 questions • 2 y ago
    Xai Alexandrei Delos Reyes

    Computing Mock test (Prelims)

    Computing Mock test (Prelims)

    Xai Alexandrei Delos Reyes · 67 questions · 2 y ago

    Computing Mock test (Prelims)

    Computing Mock test (Prelims)

    67 questions • 2 y ago
    Xai Alexandrei Delos Reyes

    Programming Mock Test (Prelims)

    Programming Mock Test (Prelims)

    Xai Alexandrei Delos Reyes · 64 questions · 2 y ago

    Programming Mock Test (Prelims)

    Programming Mock Test (Prelims)

    64 questions • 2 y ago
    Xai Alexandrei Delos Reyes

    Entrepreneurship Mock Test (Prelims)

    Entrepreneurship Mock Test (Prelims)

    Xai Alexandrei Delos Reyes · 23 questions · 2 y ago

    Entrepreneurship Mock Test (Prelims)

    Entrepreneurship Mock Test (Prelims)

    23 questions • 2 y ago
    Xai Alexandrei Delos Reyes

    Computing Mock Test (Midterms) BSIT 107

    Computing Mock Test (Midterms) BSIT 107

    Xai Alexandrei Delos Reyes · 76 questions · 2 y ago

    Computing Mock Test (Midterms) BSIT 107

    Computing Mock Test (Midterms) BSIT 107

    76 questions • 2 y ago
    Xai Alexandrei Delos Reyes

    Math Mock Test (Prelims)

    Math Mock Test (Prelims)

    Xai Alexandrei Delos Reyes · 48 questions · 2 y ago

    Math Mock Test (Prelims)

    Math Mock Test (Prelims)

    48 questions • 2 y ago
    Xai Alexandrei Delos Reyes

    Programming Mock Test (Midterms) BSIT 107

    Programming Mock Test (Midterms) BSIT 107

    Xai Alexandrei Delos Reyes · 52 questions · 2 y ago

    Programming Mock Test (Midterms) BSIT 107

    Programming Mock Test (Midterms) BSIT 107

    52 questions • 2 y ago
    Xai Alexandrei Delos Reyes

    UTS Mock Test (Midterms) BSIT107

    UTS Mock Test (Midterms) BSIT107

    Xai Alexandrei Delos Reyes · 40 questions · 2 y ago

    UTS Mock Test (Midterms) BSIT107

    UTS Mock Test (Midterms) BSIT107

    40 questions • 2 y ago
    Xai Alexandrei Delos Reyes

    Entrepreneurship Mock Test (Midterms) BSIT 107

    Entrepreneurship Mock Test (Midterms) BSIT 107

    Xai Alexandrei Delos Reyes · 38 questions · 2 y ago

    Entrepreneurship Mock Test (Midterms) BSIT 107

    Entrepreneurship Mock Test (Midterms) BSIT 107

    38 questions • 2 y ago
    Xai Alexandrei Delos Reyes

    Contemporary World Mock Test (Midterms) BSIT 107

    Contemporary World Mock Test (Midterms) BSIT 107

    Xai Alexandrei Delos Reyes · 28 questions · 2 y ago

    Contemporary World Mock Test (Midterms) BSIT 107

    Contemporary World Mock Test (Midterms) BSIT 107

    28 questions • 2 y ago
    Xai Alexandrei Delos Reyes

    Math Mocktest (Midterms) BSIT 107

    Math Mocktest (Midterms) BSIT 107

    Xai Alexandrei Delos Reyes · 24 questions · 2 y ago

    Math Mocktest (Midterms) BSIT 107

    Math Mocktest (Midterms) BSIT 107

    24 questions • 2 y ago
    Xai Alexandrei Delos Reyes

    Computer Programming Mocktest (Pre-finals)

    Computer Programming Mocktest (Pre-finals)

    Xai Alexandrei Delos Reyes · 26 questions · 2 y ago

    Computer Programming Mocktest (Pre-finals)

    Computer Programming Mocktest (Pre-finals)

    26 questions • 2 y ago
    Xai Alexandrei Delos Reyes

    Math Mocktest (Pre-Finals)

    Math Mocktest (Pre-Finals)

    Xai Alexandrei Delos Reyes · 19 questions · 2 y ago

    Math Mocktest (Pre-Finals)

    Math Mocktest (Pre-Finals)

    19 questions • 2 y ago
    Xai Alexandrei Delos Reyes

    Computing Mock Test (Pre-finals)

    Computing Mock Test (Pre-finals)

    Xai Alexandrei Delos Reyes · 36 questions · 2 y ago

    Computing Mock Test (Pre-finals)

    Computing Mock Test (Pre-finals)

    36 questions • 2 y ago
    Xai Alexandrei Delos Reyes

    Computing Mock Test Finals

    Computing Mock Test Finals

    Xai Alexandrei Delos Reyes · 26 questions · 2 y ago

    Computing Mock Test Finals

    Computing Mock Test Finals

    26 questions • 2 y ago
    Xai Alexandrei Delos Reyes

    Comprog 2nd sem (prelims) BSIT 205

    Comprog 2nd sem (prelims) BSIT 205

    Xai Alexandrei Delos Reyes · 63 questions · 2 y ago

    Comprog 2nd sem (prelims) BSIT 205

    Comprog 2nd sem (prelims) BSIT 205

    63 questions • 2 y ago
    Xai Alexandrei Delos Reyes

    Discrete Math 2nd sem (prelims) BSIT 205

    Discrete Math 2nd sem (prelims) BSIT 205

    Xai Alexandrei Delos Reyes · 36 questions · 2 y ago

    Discrete Math 2nd sem (prelims) BSIT 205

    Discrete Math 2nd sem (prelims) BSIT 205

    36 questions • 2 y ago
    Xai Alexandrei Delos Reyes

    Art Appreciation (Prelim) BSIT 205

    Art Appreciation (Prelim) BSIT 205

    Xai Alexandrei Delos Reyes · 56 questions · 2 y ago

    Art Appreciation (Prelim) BSIT 205

    Art Appreciation (Prelim) BSIT 205

    56 questions • 2 y ago
    Xai Alexandrei Delos Reyes

    Ethics 2nd sem (Prelims) BSIT 205

    Ethics 2nd sem (Prelims) BSIT 205

    Xai Alexandrei Delos Reyes · 45 questions · 2 y ago

    Ethics 2nd sem (Prelims) BSIT 205

    Ethics 2nd sem (Prelims) BSIT 205

    45 questions • 2 y ago
    Xai Alexandrei Delos Reyes

    STS 2nd Sem (Prelim) BSIT 205

    STS 2nd Sem (Prelim) BSIT 205

    Xai Alexandrei Delos Reyes · 40 questions · 2 y ago

    STS 2nd Sem (Prelim) BSIT 205

    STS 2nd Sem (Prelim) BSIT 205

    40 questions • 2 y ago
    Xai Alexandrei Delos Reyes

    Systems Administration 2nd sem (Prelims) BSIT 205

    Systems Administration 2nd sem (Prelims) BSIT 205

    Xai Alexandrei Delos Reyes · 72 questions · 2 y ago

    Systems Administration 2nd sem (Prelims) BSIT 205

    Systems Administration 2nd sem (Prelims) BSIT 205

    72 questions • 2 y ago
    Xai Alexandrei Delos Reyes

    Discrete Mathematics (Midterms) BSIT 205

    Discrete Mathematics (Midterms) BSIT 205

    Xai Alexandrei Delos Reyes · 52 questions · 1 y ago

    Discrete Mathematics (Midterms) BSIT 205

    Discrete Mathematics (Midterms) BSIT 205

    52 questions • 1 y ago
    Xai Alexandrei Delos Reyes

    Art Appreciation (Midterm) BSIT 205

    Art Appreciation (Midterm) BSIT 205

    Xai Alexandrei Delos Reyes · 56 questions · 1 y ago

    Art Appreciation (Midterm) BSIT 205

    Art Appreciation (Midterm) BSIT 205

    56 questions • 1 y ago
    Xai Alexandrei Delos Reyes

    Ethics Mocktest (Midterms) BSIT205

    Ethics Mocktest (Midterms) BSIT205

    Xai Alexandrei Delos Reyes · 29 questions · 1 y ago

    Ethics Mocktest (Midterms) BSIT205

    Ethics Mocktest (Midterms) BSIT205

    29 questions • 1 y ago
    Xai Alexandrei Delos Reyes

    Comprog Mocktest (Midterm) BSIT 205

    Comprog Mocktest (Midterm) BSIT 205

    Xai Alexandrei Delos Reyes · 61 questions · 1 y ago

    Comprog Mocktest (Midterm) BSIT 205

    Comprog Mocktest (Midterm) BSIT 205

    61 questions • 1 y ago
    Xai Alexandrei Delos Reyes

    System Administration Mocktest (Midterms) BSIT 205

    System Administration Mocktest (Midterms) BSIT 205

    Xai Alexandrei Delos Reyes · 65 questions · 1 y ago

    System Administration Mocktest (Midterms) BSIT 205

    System Administration Mocktest (Midterms) BSIT 205

    65 questions • 1 y ago
    Xai Alexandrei Delos Reyes

    Math Mocktest (Pre-finals) BSIT 205

    Math Mocktest (Pre-finals) BSIT 205

    Xai Alexandrei Delos Reyes · 49 questions · 1 y ago

    Math Mocktest (Pre-finals) BSIT 205

    Math Mocktest (Pre-finals) BSIT 205

    49 questions • 1 y ago
    Xai Alexandrei Delos Reyes

    Art Appreciation Mocktest (Pre-finals) BSIT 205

    Art Appreciation Mocktest (Pre-finals) BSIT 205

    Xai Alexandrei Delos Reyes · 66 questions · 1 y ago

    Art Appreciation Mocktest (Pre-finals) BSIT 205

    Art Appreciation Mocktest (Pre-finals) BSIT 205

    66 questions • 1 y ago
    Xai Alexandrei Delos Reyes

    Ethics Mocktest (Pre-finals) BSIT 205

    Ethics Mocktest (Pre-finals) BSIT 205

    Xai Alexandrei Delos Reyes · 50 questions · 1 y ago

    Ethics Mocktest (Pre-finals) BSIT 205

    Ethics Mocktest (Pre-finals) BSIT 205

    50 questions • 1 y ago
    Xai Alexandrei Delos Reyes

    Computer Programming Mocktest (Pre-finals) BSIT 205

    Computer Programming Mocktest (Pre-finals) BSIT 205

    Xai Alexandrei Delos Reyes · 33 questions · 1 y ago

    Computer Programming Mocktest (Pre-finals) BSIT 205

    Computer Programming Mocktest (Pre-finals) BSIT 205

    33 questions • 1 y ago
    Xai Alexandrei Delos Reyes

    System Administration (Pre-finals) BSIT 205

    System Administration (Pre-finals) BSIT 205

    Xai Alexandrei Delos Reyes · 52 questions · 1 y ago

    System Administration (Pre-finals) BSIT 205

    System Administration (Pre-finals) BSIT 205

    52 questions • 1 y ago
    Xai Alexandrei Delos Reyes

    Art Appreciation Finals BSIT 205

    Art Appreciation Finals BSIT 205

    Xai Alexandrei Delos Reyes · 35 questions · 1 y ago

    Art Appreciation Finals BSIT 205

    Art Appreciation Finals BSIT 205

    35 questions • 1 y ago
    Xai Alexandrei Delos Reyes

    Data Structures and Algorithms (Mocktest) BSIT 307

    Data Structures and Algorithms (Mocktest) BSIT 307

    Xai Alexandrei Delos Reyes · 52 questions · 1 y ago

    Data Structures and Algorithms (Mocktest) BSIT 307

    Data Structures and Algorithms (Mocktest) BSIT 307

    52 questions • 1 y ago
    Xai Alexandrei Delos Reyes

    Object Oriented Programming Mock Test (Mocktest) BSIT 307

    Object Oriented Programming Mock Test (Mocktest) BSIT 307

    Xai Alexandrei Delos Reyes · 23 questions · 1 y ago

    Object Oriented Programming Mock Test (Mocktest) BSIT 307

    Object Oriented Programming Mock Test (Mocktest) BSIT 307

    23 questions • 1 y ago
    Xai Alexandrei Delos Reyes

    Human Computer Interactions Mocktest (Prelims) BSIT 307

    Human Computer Interactions Mocktest (Prelims) BSIT 307

    Xai Alexandrei Delos Reyes · 58 questions · 1 y ago

    Human Computer Interactions Mocktest (Prelims) BSIT 307

    Human Computer Interactions Mocktest (Prelims) BSIT 307

    58 questions • 1 y ago
    Xai Alexandrei Delos Reyes

    Principles of Communication Mocktest (Prelims) BSIT 307

    Principles of Communication Mocktest (Prelims) BSIT 307

    Xai Alexandrei Delos Reyes · 37 questions · 1 y ago

    Principles of Communication Mocktest (Prelims) BSIT 307

    Principles of Communication Mocktest (Prelims) BSIT 307

    37 questions • 1 y ago
    Xai Alexandrei Delos Reyes

    Principles of Communication Mocktest (Midterms) BSIT 307

    Principles of Communication Mocktest (Midterms) BSIT 307

    Xai Alexandrei Delos Reyes · 29 questions · 1 y ago

    Principles of Communication Mocktest (Midterms) BSIT 307

    Principles of Communication Mocktest (Midterms) BSIT 307

    29 questions • 1 y ago
    Xai Alexandrei Delos Reyes

    Data Structures and Algorithms Mocktest (Midterm) BSIT 307

    Data Structures and Algorithms Mocktest (Midterm) BSIT 307

    Xai Alexandrei Delos Reyes · 50 questions · 1 y ago

    Data Structures and Algorithms Mocktest (Midterm) BSIT 307

    Data Structures and Algorithms Mocktest (Midterm) BSIT 307

    50 questions • 1 y ago
    Xai Alexandrei Delos Reyes

    Object Oriented Programming Mock Test (Midterm) BSIT 307

    Object Oriented Programming Mock Test (Midterm) BSIT 307

    Xai Alexandrei Delos Reyes · 13 questions · 1 y ago

    Object Oriented Programming Mock Test (Midterm) BSIT 307

    Object Oriented Programming Mock Test (Midterm) BSIT 307

    13 questions • 1 y ago
    Xai Alexandrei Delos Reyes

    Human Computer Interactions Mocktest (Midterms) BSIT 307

    Human Computer Interactions Mocktest (Midterms) BSIT 307

    Xai Alexandrei Delos Reyes · 35 questions · 1 y ago

    Human Computer Interactions Mocktest (Midterms) BSIT 307

    Human Computer Interactions Mocktest (Midterms) BSIT 307

    35 questions • 1 y ago
    Xai Alexandrei Delos Reyes

    Readings In Philippine History (Midterms) Mocktest

    Readings In Philippine History (Midterms) Mocktest

    Xai Alexandrei Delos Reyes · 16 questions · 1 y ago

    Readings In Philippine History (Midterms) Mocktest

    Readings In Philippine History (Midterms) Mocktest

    16 questions • 1 y ago
    Xai Alexandrei Delos Reyes

    Discrete Structures and Algorithms (Midterms) Mocktest

    Discrete Structures and Algorithms (Midterms) Mocktest

    Xai Alexandrei Delos Reyes · 10 questions · 1 y ago

    Discrete Structures and Algorithms (Midterms) Mocktest

    Discrete Structures and Algorithms (Midterms) Mocktest

    10 questions • 1 y ago
    Xai Alexandrei Delos Reyes

    Principles of Communication (Midterm) Mocktest

    Principles of Communication (Midterm) Mocktest

    Xai Alexandrei Delos Reyes · 29 questions · 1 y ago

    Principles of Communication (Midterm) Mocktest

    Principles of Communication (Midterm) Mocktest

    29 questions • 1 y ago
    Xai Alexandrei Delos Reyes

    TECHNOPRENEURSHIP PRELIMS BSIT 402

    TECHNOPRENEURSHIP PRELIMS BSIT 402

    Xai Alexandrei Delos Reyes · 74 questions · 1 y ago

    TECHNOPRENEURSHIP PRELIMS BSIT 402

    TECHNOPRENEURSHIP PRELIMS BSIT 402

    74 questions • 1 y ago
    Xai Alexandrei Delos Reyes

    (Prelim) PH Popular Culture Mocktest BSIT 402

    (Prelim) PH Popular Culture Mocktest BSIT 402

    Xai Alexandrei Delos Reyes · 19 questions · 1 y ago

    (Prelim) PH Popular Culture Mocktest BSIT 402

    (Prelim) PH Popular Culture Mocktest BSIT 402

    19 questions • 1 y ago
    Xai Alexandrei Delos Reyes

    (Prelim) Integrative Programming BSIT 402

    (Prelim) Integrative Programming BSIT 402

    Xai Alexandrei Delos Reyes · 46 questions · 1 y ago

    (Prelim) Integrative Programming BSIT 402

    (Prelim) Integrative Programming BSIT 402

    46 questions • 1 y ago
    Xai Alexandrei Delos Reyes

    (Prelim) Quantitive Methods Mocktest BSIT 402

    (Prelim) Quantitive Methods Mocktest BSIT 402

    Xai Alexandrei Delos Reyes · 39 questions · 1 y ago

    (Prelim) Quantitive Methods Mocktest BSIT 402

    (Prelim) Quantitive Methods Mocktest BSIT 402

    39 questions • 1 y ago
    Xai Alexandrei Delos Reyes

    (Prelim) System Integration and Architecture BSIT 402

    (Prelim) System Integration and Architecture BSIT 402

    Xai Alexandrei Delos Reyes · 29 questions · 1 y ago

    (Prelim) System Integration and Architecture BSIT 402

    (Prelim) System Integration and Architecture BSIT 402

    29 questions • 1 y ago
    Xai Alexandrei Delos Reyes

    (Prelim) Network Technology Mocktest BSIT 402

    (Prelim) Network Technology Mocktest BSIT 402

    Xai Alexandrei Delos Reyes · 68 questions · 1 y ago

    (Prelim) Network Technology Mocktest BSIT 402

    (Prelim) Network Technology Mocktest BSIT 402

    68 questions • 1 y ago
    Xai Alexandrei Delos Reyes

    (Prelim) Information Management Mocktest BSIT 402

    (Prelim) Information Management Mocktest BSIT 402

    Xai Alexandrei Delos Reyes · 45 questions · 1 y ago

    (Prelim) Information Management Mocktest BSIT 402

    (Prelim) Information Management Mocktest BSIT 402

    45 questions • 1 y ago
    Xai Alexandrei Delos Reyes

    (Pre-Finals) Quantitative Research Mocktest BSIT 402

    (Pre-Finals) Quantitative Research Mocktest BSIT 402

    Xai Alexandrei Delos Reyes · 28 questions · 10 mo ago

    (Pre-Finals) Quantitative Research Mocktest BSIT 402

    (Pre-Finals) Quantitative Research Mocktest BSIT 402

    28 questions • 10 mo ago
    Xai Alexandrei Delos Reyes

    (Finals) Information Management Mocktest

    (Finals) Information Management Mocktest

    Xai Alexandrei Delos Reyes · 64 questions · 9 mo ago

    (Finals) Information Management Mocktest

    (Finals) Information Management Mocktest

    64 questions • 9 mo ago
    Xai Alexandrei Delos Reyes

    (Finals) Philippine Popular Culture Mocktest

    (Finals) Philippine Popular Culture Mocktest

    Xai Alexandrei Delos Reyes · 46 questions · 9 mo ago

    (Finals) Philippine Popular Culture Mocktest

    (Finals) Philippine Popular Culture Mocktest

    46 questions • 9 mo ago
    Xai Alexandrei Delos Reyes

    (Finals) Integrative Programming Mocktest BSIT 402

    (Finals) Integrative Programming Mocktest BSIT 402

    Xai Alexandrei Delos Reyes · 24 questions · 9 mo ago

    (Finals) Integrative Programming Mocktest BSIT 402

    (Finals) Integrative Programming Mocktest BSIT 402

    24 questions • 9 mo ago
    Xai Alexandrei Delos Reyes

    (Finals) Network Technology Mocktest BSIT 402

    (Finals) Network Technology Mocktest BSIT 402

    Xai Alexandrei Delos Reyes · 37 questions · 9 mo ago

    (Finals) Network Technology Mocktest BSIT 402

    (Finals) Network Technology Mocktest BSIT 402

    37 questions • 9 mo ago
    Xai Alexandrei Delos Reyes

    (Finals) Quantitative Methods Mocktest BSIT 402

    (Finals) Quantitative Methods Mocktest BSIT 402

    Xai Alexandrei Delos Reyes · 18 questions · 9 mo ago

    (Finals) Quantitative Methods Mocktest BSIT 402

    (Finals) Quantitative Methods Mocktest BSIT 402

    18 questions • 9 mo ago
    Xai Alexandrei Delos Reyes

    Application Development Mocktest (Prelim) BSIT 505

    Application Development Mocktest (Prelim) BSIT 505

    Xai Alexandrei Delos Reyes · 72 questions · 6 mo ago

    Application Development Mocktest (Prelim) BSIT 505

    Application Development Mocktest (Prelim) BSIT 505

    72 questions • 6 mo ago
    Xai Alexandrei Delos Reyes

    Data and Digital Communication Mocktest (Prelim) BSIT 505

    Data and Digital Communication Mocktest (Prelim) BSIT 505

    Xai Alexandrei Delos Reyes · 60 questions · 6 mo ago

    Data and Digital Communication Mocktest (Prelim) BSIT 505

    Data and Digital Communication Mocktest (Prelim) BSIT 505

    60 questions • 6 mo ago
    Xai Alexandrei Delos Reyes

    (Handout 1 Only!) Advanced Systems Integration and Architecture Mocktest (Prelim) BSIT 505

    (Handout 1 Only!) Advanced Systems Integration and Architecture Mocktest (Prelim) BSIT 505

    Xai Alexandrei Delos Reyes · 38 questions · 6 mo ago

    (Handout 1 Only!) Advanced Systems Integration and Architecture Mocktest (Prelim) BSIT 505

    (Handout 1 Only!) Advanced Systems Integration and Architecture Mocktest (Prelim) BSIT 505

    38 questions • 6 mo ago
    Xai Alexandrei Delos Reyes

    Enterprise Architecture Mocktest (Prelims) BSIT 505

    Enterprise Architecture Mocktest (Prelims) BSIT 505

    Xai Alexandrei Delos Reyes · 42 questions · 6 mo ago

    Enterprise Architecture Mocktest (Prelims) BSIT 505

    Enterprise Architecture Mocktest (Prelims) BSIT 505

    42 questions • 6 mo ago
    Xai Alexandrei Delos Reyes

    Professional Issues in Information Technology Mocktest (Prelims) BSIT 505

    Professional Issues in Information Technology Mocktest (Prelims) BSIT 505

    Xai Alexandrei Delos Reyes · 44 questions · 6 mo ago

    Professional Issues in Information Technology Mocktest (Prelims) BSIT 505

    Professional Issues in Information Technology Mocktest (Prelims) BSIT 505

    44 questions • 6 mo ago
    Xai Alexandrei Delos Reyes

    Application Development Mocktest (Midterm) BSIT 505

    Application Development Mocktest (Midterm) BSIT 505

    Xai Alexandrei Delos Reyes · 42 questions · 6 mo ago

    Application Development Mocktest (Midterm) BSIT 505

    Application Development Mocktest (Midterm) BSIT 505

    42 questions • 6 mo ago
    Xai Alexandrei Delos Reyes

    Event-Driven Programming Mocktest (Midterm) BSIT - 505

    Event-Driven Programming Mocktest (Midterm) BSIT - 505

    Xai Alexandrei Delos Reyes · 61 questions · 6 mo ago

    Event-Driven Programming Mocktest (Midterm) BSIT - 505

    Event-Driven Programming Mocktest (Midterm) BSIT - 505

    61 questions • 6 mo ago
    Xai Alexandrei Delos Reyes

    Data and Digital Communication Mocktest (Midterm) BSIT - 505

    Data and Digital Communication Mocktest (Midterm) BSIT - 505

    Xai Alexandrei Delos Reyes · 80 questions · 6 mo ago

    Data and Digital Communication Mocktest (Midterm) BSIT - 505

    Data and Digital Communication Mocktest (Midterm) BSIT - 505

    80 questions • 6 mo ago
    Xai Alexandrei Delos Reyes

    (Midterm) Advanced Systems and Integration Architecture BSIT - 505

    (Midterm) Advanced Systems and Integration Architecture BSIT - 505

    Xai Alexandrei Delos Reyes · 68 questions · 5 mo ago

    (Midterm) Advanced Systems and Integration Architecture BSIT - 505

    (Midterm) Advanced Systems and Integration Architecture BSIT - 505

    68 questions • 5 mo ago
    Xai Alexandrei Delos Reyes

    (Midterm) Advanced Database Systems Mocktest BSIT - 505

    (Midterm) Advanced Database Systems Mocktest BSIT - 505

    Xai Alexandrei Delos Reyes · 82 questions · 5 mo ago

    (Midterm) Advanced Database Systems Mocktest BSIT - 505

    (Midterm) Advanced Database Systems Mocktest BSIT - 505

    82 questions • 5 mo ago
    Xai Alexandrei Delos Reyes

    (Midterms) Enterprise Architecture Mocktest BSIT 505

    (Midterms) Enterprise Architecture Mocktest BSIT 505

    Xai Alexandrei Delos Reyes · 69 questions · 5 mo ago

    (Midterms) Enterprise Architecture Mocktest BSIT 505

    (Midterms) Enterprise Architecture Mocktest BSIT 505

    69 questions • 5 mo ago
    Xai Alexandrei Delos Reyes

    (Midterm) Professional Issues in Information Technology BSIT 505

    (Midterm) Professional Issues in Information Technology BSIT 505

    Xai Alexandrei Delos Reyes · 38 questions · 5 mo ago

    (Midterm) Professional Issues in Information Technology BSIT 505

    (Midterm) Professional Issues in Information Technology BSIT 505

    38 questions • 5 mo ago
    Xai Alexandrei Delos Reyes

    (Pre-Finals)Event-Driven Programming Mocktest BSIT 505

    (Pre-Finals)Event-Driven Programming Mocktest BSIT 505

    Xai Alexandrei Delos Reyes · 59 questions · 4 mo ago

    (Pre-Finals)Event-Driven Programming Mocktest BSIT 505

    (Pre-Finals)Event-Driven Programming Mocktest BSIT 505

    59 questions • 4 mo ago
    Xai Alexandrei Delos Reyes

    (Pre-finals) Application Development Mocktest BSIT 505

    (Pre-finals) Application Development Mocktest BSIT 505

    Xai Alexandrei Delos Reyes · 41 questions · 4 mo ago

    (Pre-finals) Application Development Mocktest BSIT 505

    (Pre-finals) Application Development Mocktest BSIT 505

    41 questions • 4 mo ago
    Xai Alexandrei Delos Reyes

    (Pre-Finals) Data and Digital Communication Mocktest BSIT 505

    (Pre-Finals) Data and Digital Communication Mocktest BSIT 505

    Xai Alexandrei Delos Reyes · 57 questions · 4 mo ago

    (Pre-Finals) Data and Digital Communication Mocktest BSIT 505

    (Pre-Finals) Data and Digital Communication Mocktest BSIT 505

    57 questions • 4 mo ago
    Xai Alexandrei Delos Reyes

    (Pre-Finals) ASIA Mocktest BSIT 505

    (Pre-Finals) ASIA Mocktest BSIT 505

    Xai Alexandrei Delos Reyes · 44 questions · 4 mo ago

    (Pre-Finals) ASIA Mocktest BSIT 505

    (Pre-Finals) ASIA Mocktest BSIT 505

    44 questions • 4 mo ago
    Xai Alexandrei Delos Reyes

    (Pre-Finals) Advanced Database Systems Mocktest BSIT 505

    (Pre-Finals) Advanced Database Systems Mocktest BSIT 505

    Xai Alexandrei Delos Reyes · 72 questions · 4 mo ago

    (Pre-Finals) Advanced Database Systems Mocktest BSIT 505

    (Pre-Finals) Advanced Database Systems Mocktest BSIT 505

    72 questions • 4 mo ago
    Xai Alexandrei Delos Reyes

    (Pre-Finals) Enterprise Architecture Mocktest BSIT 505

    (Pre-Finals) Enterprise Architecture Mocktest BSIT 505

    Xai Alexandrei Delos Reyes · 42 questions · 4 mo ago

    (Pre-Finals) Enterprise Architecture Mocktest BSIT 505

    (Pre-Finals) Enterprise Architecture Mocktest BSIT 505

    42 questions • 4 mo ago
    Xai Alexandrei Delos Reyes

    (Pre-Finals) Professional Issues In Information Technolog Mocktest BSIT 505

    (Pre-Finals) Professional Issues In Information Technolog Mocktest BSIT 505

    Xai Alexandrei Delos Reyes · 62 questions · 4 mo ago

    (Pre-Finals) Professional Issues In Information Technolog Mocktest BSIT 505

    (Pre-Finals) Professional Issues In Information Technolog Mocktest BSIT 505

    62 questions • 4 mo ago
    Xai Alexandrei Delos Reyes

    (Finals) Application Development Mocktest BSIT 505

    (Finals) Application Development Mocktest BSIT 505

    Xai Alexandrei Delos Reyes · 62 questions · 3 mo ago

    (Finals) Application Development Mocktest BSIT 505

    (Finals) Application Development Mocktest BSIT 505

    62 questions • 3 mo ago
    Xai Alexandrei Delos Reyes

    (Finals) Data and Digital Communication Mocktest BSIT - 505

    (Finals) Data and Digital Communication Mocktest BSIT - 505

    Xai Alexandrei Delos Reyes · 61 questions · 3 mo ago

    (Finals) Data and Digital Communication Mocktest BSIT - 505

    (Finals) Data and Digital Communication Mocktest BSIT - 505

    61 questions • 3 mo ago
    Xai Alexandrei Delos Reyes

    (Finals) Advanced Database Systems Mocktest BSIT 505

    (Finals) Advanced Database Systems Mocktest BSIT 505

    Xai Alexandrei Delos Reyes · 62 questions · 3 mo ago

    (Finals) Advanced Database Systems Mocktest BSIT 505

    (Finals) Advanced Database Systems Mocktest BSIT 505

    62 questions • 3 mo ago
    Xai Alexandrei Delos Reyes

    (Finals) Enterprise Architecture Mocktest BSIT 505

    (Finals) Enterprise Architecture Mocktest BSIT 505

    Xai Alexandrei Delos Reyes · 60 questions · 3 mo ago

    (Finals) Enterprise Architecture Mocktest BSIT 505

    (Finals) Enterprise Architecture Mocktest BSIT 505

    60 questions • 3 mo ago
    Xai Alexandrei Delos Reyes

    (Finals) Professional issues in Information Technology Mocktest BSIT 505

    (Finals) Professional issues in Information Technology Mocktest BSIT 505

    Xai Alexandrei Delos Reyes · 27 questions · 3 mo ago

    (Finals) Professional issues in Information Technology Mocktest BSIT 505

    (Finals) Professional issues in Information Technology Mocktest BSIT 505

    27 questions • 3 mo ago
    Xai Alexandrei Delos Reyes

    (Finals) Event-Driven Programming Mocktest BSIT 505

    (Finals) Event-Driven Programming Mocktest BSIT 505

    Xai Alexandrei Delos Reyes · 65 questions · 4 mo ago

    (Finals) Event-Driven Programming Mocktest BSIT 505

    (Finals) Event-Driven Programming Mocktest BSIT 505

    65 questions • 4 mo ago
    Xai Alexandrei Delos Reyes

    (Prelims) Mobile Systems and Technologies Mocktest BSIT 604

    (Prelims) Mobile Systems and Technologies Mocktest BSIT 604

    Xai Alexandrei Delos Reyes · 41 views · 42 questions · 1 mo ago

    (Prelims) Mobile Systems and Technologies Mocktest BSIT 604

    (Prelims) Mobile Systems and Technologies Mocktest BSIT 604

    41 views • 42 questions • 1 mo ago
    Xai Alexandrei Delos Reyes

    (Prelims) Great Books Mocktest BSIT 604

    (Prelims) Great Books Mocktest BSIT 604

    Xai Alexandrei Delos Reyes · 46 views · 75 questions · 1 mo ago

    (Prelims) Great Books Mocktest BSIT 604

    (Prelims) Great Books Mocktest BSIT 604

    46 views • 75 questions • 1 mo ago
    Xai Alexandrei Delos Reyes

    (Prelims) Management Information Systems Mocktest BSIT - 604

    (Prelims) Management Information Systems Mocktest BSIT - 604

    Xai Alexandrei Delos Reyes · 70 views · 94 questions · 1 mo ago

    (Prelims) Management Information Systems Mocktest BSIT - 604

    (Prelims) Management Information Systems Mocktest BSIT - 604

    70 views • 94 questions • 1 mo ago
    Xai Alexandrei Delos Reyes

    (Prelims) Programming Languages Mocktest BSIT 604

    (Prelims) Programming Languages Mocktest BSIT 604

    Xai Alexandrei Delos Reyes · 26 views · 79 questions · 1 mo ago

    (Prelims) Programming Languages Mocktest BSIT 604

    (Prelims) Programming Languages Mocktest BSIT 604

    26 views • 79 questions • 1 mo ago
    Xai Alexandrei Delos Reyes

    (Prelims) Web Systems and Technologies Mocktest BSIT 604

    (Prelims) Web Systems and Technologies Mocktest BSIT 604

    Xai Alexandrei Delos Reyes · 33 views · 99 questions · 29 d ago

    (Prelims) Web Systems and Technologies Mocktest BSIT 604

    (Prelims) Web Systems and Technologies Mocktest BSIT 604

    33 views • 99 questions • 29 d ago
    Xai Alexandrei Delos Reyes

    (Prelims) Information Assurance and Security Mocktest BSIT 604

    (Prelims) Information Assurance and Security Mocktest BSIT 604

    Xai Alexandrei Delos Reyes · 33 views · 92 questions · 28 d ago

    (Prelims) Information Assurance and Security Mocktest BSIT 604

    (Prelims) Information Assurance and Security Mocktest BSIT 604

    33 views • 92 questions • 28 d ago
    Xai Alexandrei Delos Reyes

    (Midterms) Mobile Systems and Technologies Mocktest BSIT 604

    (Midterms) Mobile Systems and Technologies Mocktest BSIT 604

    Xai Alexandrei Delos Reyes · 54 questions · 17 d ago

    (Midterms) Mobile Systems and Technologies Mocktest BSIT 604

    (Midterms) Mobile Systems and Technologies Mocktest BSIT 604

    54 questions • 17 d ago
    Xai Alexandrei Delos Reyes

    (Midterm) Great Books Mocktest BSIT 604

    (Midterm) Great Books Mocktest BSIT 604

    Xai Alexandrei Delos Reyes · 74 questions · 11 d ago

    (Midterm) Great Books Mocktest BSIT 604

    (Midterm) Great Books Mocktest BSIT 604

    74 questions • 11 d ago
    Xai Alexandrei Delos Reyes

    (Midterms) 04 to 05_Handout Management Information Systems Mocktest BSIT 604

    (Midterms) 04 to 05_Handout Management Information Systems Mocktest BSIT 604

    Xai Alexandrei Delos Reyes · 69 questions · 4 d ago

    (Midterms) 04 to 05_Handout Management Information Systems Mocktest BSIT 604

    (Midterms) 04 to 05_Handout Management Information Systems Mocktest BSIT 604

    69 questions • 4 d ago
    Xai Alexandrei Delos Reyes

    (Midterms) 06_Handout Management Information Systems Mocktest BSIT 604

    (Midterms) 06_Handout Management Information Systems Mocktest BSIT 604

    Xai Alexandrei Delos Reyes · 36 questions · 4 d ago

    (Midterms) 06_Handout Management Information Systems Mocktest BSIT 604

    (Midterms) 06_Handout Management Information Systems Mocktest BSIT 604

    36 questions • 4 d ago
    Xai Alexandrei Delos Reyes

    (Midterms) Programming Languages Mocktest BSIT 604

    (Midterms) Programming Languages Mocktest BSIT 604

    Xai Alexandrei Delos Reyes · 81 questions · 3 d ago

    (Midterms) Programming Languages Mocktest BSIT 604

    (Midterms) Programming Languages Mocktest BSIT 604

    81 questions • 3 d ago
    Xai Alexandrei Delos Reyes

    (Midterms) Information Assurance and Security Mocktest BSIT 604

    (Midterms) Information Assurance and Security Mocktest BSIT 604

    Xai Alexandrei Delos Reyes · 84 questions · 4 d ago

    (Midterms) Information Assurance and Security Mocktest BSIT 604

    (Midterms) Information Assurance and Security Mocktest BSIT 604

    84 questions • 4 d ago
    Xai Alexandrei Delos Reyes

    Question list

  • 1

    It is a modern solution for creating flexible layouts that work correctly on different screen sizes as it organizes content into two (2) dimensions: rows and columns.

    CSS Grid

  • 2

    Which statement is NOT TRUE about CSS Grid?

    It is the exact area of the screen that is rendering the website.

  • 3

    What is the correct syntax in creating a CSS Grid?

    main { display: grid; grid-template-columns: 30% 30% 30%; }

  • 4

    This property can be used to space the rows and columns.

    Gap

  • 5

    This tag specifies independent and self-content and encloses various elements such as header and paragraphs.

    <article>

  • 6

    This tag specifies some content besides the content it is placed in and is usually presented as sidebars.

    <aside>

  • 7

    It is the exact area of the screen that is rendering the website. In mobile devices, it is the full screen of a device, while it is the width and height of a browser window.

    Viewport

  • 8

    Which is the correct syntax of a Viewport?

    <meta name="viewport" content="width=device-width, initial- scale=1.0">

  • 9

    This viewport element should be included in all HTML webpages and always go inside the <head> element. It gives the browser instructions on controlling the page's dimension and scaling.

    <meta>

  • 10

    This sets the page width to follow the screen width depending on the device,

    width=device-width

  • 11

    It sets the initial zoom level when the webpage is loaded by the browser.

    initial-scale=1.0

  • 12

    These are not just sets of properties and values but containers for other rulesets implemented based on the media query results.

    Media Queries

  • 13

    Which is the correct syntax in declaring a media query in HTML?

    <link rel="stylesheet" media="screen and (min-width: 1025px)" href="style.css"/>

  • 14

    Which is the correct syntax in declaring a media query in CSS?

    @media screen and (min-width: 600px) { main { display: flex; } }

  • 15

    In HTML, this attribute is declared inside a link tag

    media

  • 16

    In Media Queries, It is one of the logics in a media query and is used to combine media types or features.

    And

  • 17

    It is one of the logics in a media query which is used if both conditions are true

    Only

  • 18

    It is one of the logics in a media query which is used to revert the media query that will return false if the output is true.

    Not

  • 19

    It is when the layout changes to adjust to the viewport.

    Breakpoint

  • 20

    It is a flexible one that can be viewed on small devices up to larger screens.

    Responsive image

  • 21

    Which is the correct syntax in creating a responsive Image?

    <style> .image { width: 100%; height: auto; } </style>

  • 22

    It is a video player that can be viewed on small screens up to larger screen devices. The syntax and placement are the same as those used to make responsive images.

    Responsive video

  • 23

    Which is the correct syntax in creating a responsive Video?

    <style> video { width: 100%; height: auto; } </style>

  • 24

    It makes the website interactive and complex through the implementation of intricate features such as displaying timely content updates and determining what happens when users click, hover, or type within specific elements in the website.

    JavaScript

  • 25

    Which statement is NOT TRUE about JavaScript?

    It is the line of code that browsers ignore and is used on a specific line or block of codes to add notes such as the program name and date or notes for future programmers that might modify the program

  • 26

    Wha extension does JavaScript Use?

    .js

  • 27

    JS code is placed and can appear multiple times inside the <head> or <body> tags of an HTML document using <script> tags that encloses the JavaScript codes.

    Internal JavaScript

  • 28

    Which is the correct syntax for internal JavaScript?

    <script type="text/javascript"> document.write("A sample script"); </script>

  • 29

    It is when the separated .js file is linked using <script> tags with the src attribute are usually placed within the <head> tags. It applies the JavaScript code to the webpage so that it can have an effect on the HTML document and anything else on it.

    External JavaScript

  • 30

    Which is the correct syntax for external JavaScript?

    <script src="jsfilename.js"> </script>

  • 31

    It is the line of code that browsers ignore and is used on a specific line or block of codes to add notes such as the program name and date or notes for future programmers that might modify the program.

    JavaScript Comment

  • 32

    It is the line of code that browsers ignore and is used on a specific line or block of codes to add notes such as the program name and date or notes for future programmers that might modify the program.

    JavaScript Comment

  • 33

    "It is used by adding two (2) slashes ( // ) before the note or comment" What type of JavaScript comment is being described?

    Line comment

  • 34

    "These are used to hide multiple lines of codes by adding /* to the first line of the block and enclosed by a */ after the last character in the block." What type of JavaScript comment is being described?

    Block comments

  • 35

    It is an individual line of code that is enclosed within the <script> tags.

    JavaScript Statement

  • 36

    It is a programming code that can be treated as an individual unit or component.

    JavaScript Object

  • 37

    What does DOM stand for?

    Document Object Model

  • 38

    What does BOM Stand for?

    Browser Object Model

  • 39

    Statements such as this are often grouped into logical units that perform specific tasks.

    Procedures

  • 40

    These are actions that can be performed on an object.

    Methods

  • 41

    These are used and placed inside the parentheses beside it to provide more specific information about the method.

    Arguments

  • 42

    bankLoan.calcPayments(60); Which is the Argument in this statement?

    (60)

  • 43

    bankLoan.calcPayments(60); Which is the Object in this statement?

    bankLoan

  • 44

    bankLoan.calcPayments(60); Which is the Method in this statement?

    calcPayments

  • 45

    Any text, graphics, and other information displayed on the webpage is part of the Document object, which is one of the most commonly used objects in DOM.

    JavaScript Output Methods

  • 46

    Which is the correct syntax for document.write()?

    document.write("<p>Best choices</p>");

  • 47

    This method of the Document object is used to write custom information such as username or address.

    write()

  • 48

    It is a basic method used to write text to the console.

    console.log()

  • 49

    It is a basic method used to write text to the console.

    console.log()

  • 50

    It is where messages are displayed that are invisible to users and are separated from the HTML/CSS environment. However, this can be visible in a browser’s developer tool console.

    Console

  • 51

    This method is used to display an alert box that has amessage and an OK button. The text in the argument is the information users are forced to see, so it is better not to overuse this method.

    alert()

  • 52

    Which is the correct syntax for console.log?

    console.log("Hello, World!");

  • 53

    Which is the correct syntax for alert()

    <script> function testFunction() { alert("Hello, how are you?"); } </script>

  • 54

    It is used to perform specific actions on arguments called operands, which can be both values and variables.

    JavaScript Operator

  • 55

    operators allow assigning of values to variables and constants. It commonly uses the equal sign (=).

    Assignment

  • 56

    operators express mathematical operations and accept numerical values and variables. It includes addition, subtraction, multiplication, division, remainder, power, and increment that adds one (1) in the operand and decrement (--) that subtracts one (1).

    Arithmetic

  • 57

    operators work with Boolean-type values such as true or false. It includes a conjunction that performs logical AND (&&), an alternative that performs logical OR (||), and a negation that performs logical NOT (!).

    Logical

  • 58

    operators compare two (2) variables or operands. It includes not equal or equal to the value of the variable or operand (!=, ==), equal value and equal type (===), less than and greater than (<, >), and less than or equal to and greater than or equal to (<=, >=),

    Comparison

  • 59

    It is the value that the program stores in a computer’s memory. It is used by writing a statement first that creates the variable and assigning a name for it.

    JavaScript Variable

  • 60

    The assigned name to a variable is called what?

    identifier

  • 61

    Which statement is NOT TRUE about JavaScript naming conventions?

    It must include spaces.

  • 62

    These are unique words that are already part of the JavaScript language syntax.

    Keywords or reserved words

  • 63

    "It represents textual data." What data type is being described?

    String

  • 64

    "It contains a logical entity that may return a TRUE or FALSE value." What data type is being described?

    Boolean

  • 65

    "Any digit that is either an integer or a decimal." What data type is being described?

    Number

  • 66

    "an unknown or missing value." What data type is being described?

    Null

  • 67

    "refers to a variable with no value." What data type is being described?

    Undefined

  • 68

    Which is NOT a JavaScript data type?

    Decimal

  • 69

    Which is the correct syntax for declaring variables in JavaScript?

    let taxRate = 0.05;

  • 70

    This is used to declare a set of data represented by a single variable name.

    Array

  • 71

    Which is the correct syntax in creating an Array?

    let months = ["Jan", "Feb", "Mar", "Apr", "May",];

  • 72

    It breaks up the execution flow using decision-making, branching, and looping to enable programs to conditionally execute specific code blocks.

    Control flow

  • 73

    It is the simplest control flow instruction in JavaScript. It checks a given condition and, depending on its Boolean value, either executes a code block or skips it. The code block should be separated using curly brackets.

    If statement

  • 74

    Which is the correct syntax for an If statement?

    if (isUserReady) { alert("User is ready!"); }

  • 75

    Which is the correct syntax in an If...else statement?

    if (isUserReady) { console.log("User is ready!"); } else { console.log("User is not ready!"); }

  • 76

    This keyword is an optional part of the if statement, and it allows the addition of a second code block that will be executed only when the initial condition is NOT met.

    else

  • 77

    Which is the correct syntax for Else...if statement?

    if (number < 20) { alert("Less than 20"); } else if (number < 40) { alert("Less than 40"); } else if (number < 60) { alert("Less than 60"); } else { alert(">100") }

  • 78

    These are the second form of control flow statement. While control flow statements can change code behavior, loops are an easy way to repeat any fragment of the code as many times as possible, or until a stopping condition is met.

    Loops

  • 79

    It is where a code block is executed while a given condition is true but stops once the condition is false.

    While loop

  • 80

    In a loop, when a code block is repeated, it is referred to as an?

    Iteration

  • 81

    This is avoided by including at least one statement that eventually results in a false value for the condition.

    Infinite loop

  • 82

    A code block uses this, whose value changes with each iteration, and once that counter fails to match the condition, the loop ends.

    Counter

  • 83

    Which is the correct syntax for a While loop?

    let j = 1; while (j <= 5) { document.write(j + "<br>"); j++; }

  • 84

    It is used to loop the statement until it evaluates to false. It evaluates a condition after executing the command block at least once.

    Do while loop

  • 85

    In the parentheses after the word for, there will be no single condition this time, unlike in the while loop. Here, it is divided into three fields by semicolons, and each field is assigned a different meaning.

    For Loop

  • 86

    Which statement is NOT TRUE about For Loop syntax?

    The third expression cannot be left empty.

  • 87

    Which is the correct syntax for a for loop?

    for (let i = 5; i < 31; i++) { console.log(i); }