Sign in

(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
  • Report

    Question list

  • 1

    It is the standard markup language for creating Web pages, no matter how simple or complex. It allows a web author to arrange and define how content should be displayed.

    HyperText Markup Language (HTML)

  • 2

    The “HyperText” in HTML refers to what?

    It refers to how links on the Web let users move from one document to another.

  • 3

    Who created HTML in 1993?

    Tim Berners-Lee

  • 4

    What is the and latest version of HTML?

    HTML5

  • 5

    This manages the specifications of what is in HTML and what is not.

    World Wide Web Consortium (W3C)

  • 6

    It is a text file created in any text editor containing textual content, elements, attributes, and tags such as <html>, <head>, <title>, and <body>.

    HTML Document

  • 7

    It is the component of an HTML document containing formats, instructions, and semantic meaning

    HTML Element

  • 8

    This is the basic unit of text in an HTML document

    Paragraph <p></p>

  • 9

    What is the output of this program? <p> Hello <strong> World! </strong> <br> Welcome! </p>

    Hello World! Welcome!

  • 10

    This element is used to add a line break to the HTML code and creates another blank line.

    <br>

  • 11

    It is used to modify or define an HTML element. It is placed within an element's opening tag, which can contain multiple attributes separated by a space. It is also known as the name=value pair, as it provides additional styling to the element.

    HTML Attribute

  • 12

    What is the correct syntax of an HTML Attribute?

    <p class=”important”> Hello World! </p>

  • 13

    These keywords define how web browsers will format and display the content on an HTML file.

    HTML Tags

  • 14

    Which syntax is correct HTML tags?

    <p> Hello World! </p>

  • 15

    These are titles or subtitles that can be displayed on a webpage.

    Headings

  • 16

    Which is the correct syntax of a Heading?

    <h1> Heading 1 </h1>

  • 17

    This attribute that specifies the URL of the webpage the link goes to.

    Links

  • 18

    Which is the correct syntax of a HTML link?

    <a href=https://www.google.com.ph> Google </a>

  • 19

    It is an alternative way to interact with the server and collect user inputs.

    Form

  • 20

    Which is the correct syntax for HTML Forms?

    <form action=”#”> <input type=”text” placeholder=”FirstName”/> <br> <input type=”text” placeholder=”LastName”/> <br> <input type=”text” placeholder=”Email”/> </form>

  • 21

    It consists of table cells that allow web developers to organize and arrange data into rows and columns

    HTML Table

  • 22

    "the top row of a table that acts as a title for the type of information in each column." Which Table element is being described?

    Table Header <th>

  • 23

    "Used to indicate the number of rows displayed in a table." Which Table element is being described?

    Table Row <tr>

  • 24

    "Holds the data displayed in a table. The data must match the position of the header it corresponds to." Which Table element is being described?

    Table Data <td>

  • 25

    "It is used to join two or more columns in a table" Which Table element is being described?

    Colspan

  • 26

    "It is used to join two or more rows in a table" Which Table element is being described?

    Rowspan

  • 27

    "This attribute is used to separate the table cells." Which Table element is being described?

    Border

  • 28

    "are used to group the header, footer, and body content in a table." Which Table element is being described?

    <thead>, <tfoot>, and <tbody>

  • 29

    Which syntax creates a correct HTML table?

    <table border="5px"> <tr> <th>Firstname</th> <th>Lastname</th> </tr> <tr> <td>Aryan</td> <td>Gupta</td> </tr> <tr> <td>John</td> <td>Reece</td> </tr> <tr> <td>Samntha</td> <td>Grooves</td> </tr> </table>

  • 30

    "And short for Document Type Definition that tells the browser or any software reading the HTML document what type of document is about to be processed. The HTML document will not work without this element." Which HTML Structure element is being described?

    <!DOCTYPE>

  • 31

    "also referred to as “root element.” It is the container for all other HTML elements except for <!DOCTYPE>." Which HTML Structure element is being described?

    <html>

  • 32

    "shows extra information about an element." Which HTML Structure element is being described?

    <title>

  • 33

    "the container for metadata (data about data) which is placed between the <html> and the <body> tags." Which HTML Structure element is being described?

    <head>

  • 34

    "Used to specify the page description, author of the document, character coding, and other metadata" Which HTML Structure element is being described?

    <meta>

  • 35

    "defines the content in an HTML document displayed in the browser." Which HTML Structure element is being described?

    <body>

  • 36

    "Defines the connection between the current document and an external source." Which HTML Structure element is being described?

    <link>

  • 37

    "used to embed a client-side script (JavaScript) that either contains scripting statements or points to an external script file through the src attribute" Which HTML Structure element is being described?

    <script>

  • 38

    It is a way to embed an image or an animated image, such as GIF, on an HTML webpage.

    Image

  • 39

    Which is the correct syntax for importing an image in HTML?

    <img src="image.png" alt="display" width="210px" height="140px">

  • 40

    It is a way to group a set of related items in HTML.

    List

  • 41

    Which is the correct syntax for an Unordered List in HTML?

    <ul> <li>Eggs</li> <li>Alcohol</li> <li>Snacks</li> </ul>

  • 42

    What is the syntax of an Ordered List?

    <ol> <li>January</li> <li>February</li> <li>March</li> </ol>

  • 43

    What is the correct syntax of a Description List?

    <dl> <dt>January</dt> <dd>- the first month</dd> <dt>February</dt> <dd>- the second month</dd> </dl>

  • 44

    This tag is used to color or mark up a part of a text or document.

    <span>

  • 45

    Which is the correct syntax for HTML span tag?

    <p>My mother has <span style="color:blue">blue</span> eyes.</p>

  • 46

    Navigation uses the ) _________ tag to define a set of navigation links. The tag is only used for major blocks of navigation links and not all links in an HTML document. It represents a page section with links to other web pages or parts within the same webpage.

    <nav>

  • 47

    Which is the correct syntax for HTML <nav>

    <nav> <a href=”#”> Home </a> <br> <a href=”#”> About Me </a> </nav>

  • 48

    These are used to gather text information from users and are defined by the <input> tag, which displays a type attribute such as the text, radio, checkbox, and button. Note that the default width of any input field is up to 20 characters.

    Input and Control Functions

  • 49

    Which is the correct syntax of a Label?

    <label for="ID">Name:</label><br> <input type="text" id="ID" name="name" value="val">

  • 50

    A Text Field displays a single-line text input field for text input and uses what tag?

    <input type="text "> tag

  • 51

    Which is the correct syntax for Text box?

    <input type="text" id="age" name="age"><br>

  • 52

    The Radio button allows users to select one of the available options and uses what HTML tag?

    <input type="radio"> tag

  • 53

    Which is the correct syntax for HTML radio button?

    <input type="radio" id="baguio" name="best_place" value="Baguio">

  • 54

    The Checkbox allows users to select as many options as possible out of the available options. What is the correct syntax for creating one?

    <input type="checkbox" id="baguio" name="top2" value="Baguio">

  • 55

    What format does <input type="date"> have?

    has a format of mm-dd-yyyy

  • 56

    What format does <input type="time"> have?

    has a format of hh:mm

  • 57

    What format does <input type="month”> have?

    has a format of yyyy-mm

  • 58

    What format does <input type="week"> have?

    has a format of Week#-yyyy

  • 59

    A button is used to create a button with different functions and is also defined by what HTML tags?

    <input> and <button> tags

  • 60

    What is the output of this program? <button type="submit"> <img src="Thumbnail.png" alt="buttonpng" width="180" height="100" > </button>

    An image that's clickable

  • 61

    Which is the correct syntax for a button that resets the user’s input.

    <input type="reset">

  • 62

    A submit button allows users to submit any data entered in the input field. What is the correct syntax for a submit button?

    <input type="submit" value="Submit">

  • 63

    An audio is defined using the <audio> tag and uses the <source> element for the audio source file. The control attribute is used to add audio controls such as play, pause, and volume. What is the correct syntax of creating an Audio

    <audio controls> <source src="audio.mp3"> </audio>

  • 64

    What is the correct syntax in displaying a video with a thumbnail in HTML?

    <video poster=”playbutton.png” width="320" height="240" controls> <source src="video.mp4" type="video/mp4"> </video>

  • 65

    It enables to draw graphics such as paths, boxes, circles, text, and adding images.

    Canvas

  • 66

    What is the correct syntax of a canvas in HTML?

    <canvas id="Canvas" width="200" height="100" style="border:1px solid #000000;"></canvas>

  • 67

    What does CSS Stand for?

    Cascading Style Sheet

  • 68

    What is CSS current Version?

    CSS3

  • 69

    It describes how a webpage should look in terms of colors, fonts, and spacing among others. It can make the website look whatever the designer wants.

    CSS

  • 70

    It is used to change the look and user experience of a webpage by targeting HTML elements and applying different styles such as formatting the text, changing the font, or arranging the layout

    CSS

  • 71

    Which statement BEST DESCRIBES the "Cascading" part in Cascading Style Sheets?

    The styles are applied in the order they are encountered by the browser, from the top of the style sheet to the bottom.

  • 72

    p { font-size: 30px; color: orange; } Which is the selector in this CSS?

    p

  • 73

    p { font-size: 30px; color: orange; } Which is the property in this CSS?

    font-size, color

  • 74

    p { font-size: 30px; color: orange; } Which is the value in this CSS?

    30, orange

  • 75

    It refers to when the CSS ruleset is inside the HTML document.

    Internal Style Sheet

  • 76

    It refers to when the CSS ruleset is on a separate file.

    External Style Sheet

  • 77

    What is the correct syntax in using an External Style Sheet

    <link rel="stylesheet" href="style.css" />

  • 78

    This CSS property is used to define the font.

    font-family

  • 79

    This process happens when the font to be used listed first and followed by others in the order they are to be used.

    Font stack

  • 80

    Which is the correct syntax for a Font Stack?

    p { font-family: Times New Roman, "Cambria", serif; }

  • 81

    Text can be resized using what CSS property?

    font-size

  • 82

    What measurements are used in Sizing text?

    px and %

  • 83

    This property allows the application of different boldness to text?

    font-weight

  • 84

    This property italicizes text

    font-style

  • 85

    This property allows emphasis lines to text.

    text-decoration

  • 86

    This property aligns the text horizontally.

    text-align

  • 87

    This color method in CSS is a A comma-separated list of the amount of red, green, and blue in a color, ranging from 0 to 255.

    RGB

  • 88

    This color method in CSS is a A six-character code that defines the RGB in a color preceded by a #.

    Hexadecimal (hex) values

  • 89

    This color method in CSS is a set of predefined names for colors. The easier method to use.

    Color names

  • 90

    What is the correct syntax for adding a custom image as a background in CSS?

    body{ background-image:url('assets/background.jpg'); }

  • 91

    This refers to how CSS sees every HTML element as if it is in its own box. This “box” consists of borders, paddings, margins, and content.

    Box Model

  • 92

    By default, this process occurs when a browser loads a webpage, the boxes flow on the page sequence as it encounters them in the code.

    Normal Flow

  • 93

    This can be put on all four sides or put individually on any side. This can also be modified using colors, styles, width, radius, margin, and padding.

    Border

  • 94

    This is the property that adds spacing around the content

    Margin

  • 95

    This is the property that adds spacing within the elements or white space inside the container

    Padding

  • 96

    This Border Style is a three-dimensional border that looks like it is carved into the page

    Groove

  • 97

    This Border Style is a three-dimensional border that is opposite of the groove style

    Ridge

  • 98

    This Border Style makes content in the border look like it is coming inside of the canvas.

    Inset

  • 99

    This Border Style makes content in the border look like it is coming outside of the canvas.

    Outset

  • 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) 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

    (Midterms) Web Systems an Technologies Mocktest BSIT 604

    (Midterms) Web Systems an Technologies Mocktest BSIT 604

    Xai Alexandrei Delos Reyes · 87 questions · 3 d ago

    (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

    Question list

  • 1

    It is the standard markup language for creating Web pages, no matter how simple or complex. It allows a web author to arrange and define how content should be displayed.

    HyperText Markup Language (HTML)

  • 2

    The “HyperText” in HTML refers to what?

    It refers to how links on the Web let users move from one document to another.

  • 3

    Who created HTML in 1993?

    Tim Berners-Lee

  • 4

    What is the and latest version of HTML?

    HTML5

  • 5

    This manages the specifications of what is in HTML and what is not.

    World Wide Web Consortium (W3C)

  • 6

    It is a text file created in any text editor containing textual content, elements, attributes, and tags such as <html>, <head>, <title>, and <body>.

    HTML Document

  • 7

    It is the component of an HTML document containing formats, instructions, and semantic meaning

    HTML Element

  • 8

    This is the basic unit of text in an HTML document

    Paragraph <p></p>

  • 9

    What is the output of this program? <p> Hello <strong> World! </strong> <br> Welcome! </p>

    Hello World! Welcome!

  • 10

    This element is used to add a line break to the HTML code and creates another blank line.

    <br>

  • 11

    It is used to modify or define an HTML element. It is placed within an element's opening tag, which can contain multiple attributes separated by a space. It is also known as the name=value pair, as it provides additional styling to the element.

    HTML Attribute

  • 12

    What is the correct syntax of an HTML Attribute?

    <p class=”important”> Hello World! </p>

  • 13

    These keywords define how web browsers will format and display the content on an HTML file.

    HTML Tags

  • 14

    Which syntax is correct HTML tags?

    <p> Hello World! </p>

  • 15

    These are titles or subtitles that can be displayed on a webpage.

    Headings

  • 16

    Which is the correct syntax of a Heading?

    <h1> Heading 1 </h1>

  • 17

    This attribute that specifies the URL of the webpage the link goes to.

    Links

  • 18

    Which is the correct syntax of a HTML link?

    <a href=https://www.google.com.ph> Google </a>

  • 19

    It is an alternative way to interact with the server and collect user inputs.

    Form

  • 20

    Which is the correct syntax for HTML Forms?

    <form action=”#”> <input type=”text” placeholder=”FirstName”/> <br> <input type=”text” placeholder=”LastName”/> <br> <input type=”text” placeholder=”Email”/> </form>

  • 21

    It consists of table cells that allow web developers to organize and arrange data into rows and columns

    HTML Table

  • 22

    "the top row of a table that acts as a title for the type of information in each column." Which Table element is being described?

    Table Header <th>

  • 23

    "Used to indicate the number of rows displayed in a table." Which Table element is being described?

    Table Row <tr>

  • 24

    "Holds the data displayed in a table. The data must match the position of the header it corresponds to." Which Table element is being described?

    Table Data <td>

  • 25

    "It is used to join two or more columns in a table" Which Table element is being described?

    Colspan

  • 26

    "It is used to join two or more rows in a table" Which Table element is being described?

    Rowspan

  • 27

    "This attribute is used to separate the table cells." Which Table element is being described?

    Border

  • 28

    "are used to group the header, footer, and body content in a table." Which Table element is being described?

    <thead>, <tfoot>, and <tbody>

  • 29

    Which syntax creates a correct HTML table?

    <table border="5px"> <tr> <th>Firstname</th> <th>Lastname</th> </tr> <tr> <td>Aryan</td> <td>Gupta</td> </tr> <tr> <td>John</td> <td>Reece</td> </tr> <tr> <td>Samntha</td> <td>Grooves</td> </tr> </table>

  • 30

    "And short for Document Type Definition that tells the browser or any software reading the HTML document what type of document is about to be processed. The HTML document will not work without this element." Which HTML Structure element is being described?

    <!DOCTYPE>

  • 31

    "also referred to as “root element.” It is the container for all other HTML elements except for <!DOCTYPE>." Which HTML Structure element is being described?

    <html>

  • 32

    "shows extra information about an element." Which HTML Structure element is being described?

    <title>

  • 33

    "the container for metadata (data about data) which is placed between the <html> and the <body> tags." Which HTML Structure element is being described?

    <head>

  • 34

    "Used to specify the page description, author of the document, character coding, and other metadata" Which HTML Structure element is being described?

    <meta>

  • 35

    "defines the content in an HTML document displayed in the browser." Which HTML Structure element is being described?

    <body>

  • 36

    "Defines the connection between the current document and an external source." Which HTML Structure element is being described?

    <link>

  • 37

    "used to embed a client-side script (JavaScript) that either contains scripting statements or points to an external script file through the src attribute" Which HTML Structure element is being described?

    <script>

  • 38

    It is a way to embed an image or an animated image, such as GIF, on an HTML webpage.

    Image

  • 39

    Which is the correct syntax for importing an image in HTML?

    <img src="image.png" alt="display" width="210px" height="140px">

  • 40

    It is a way to group a set of related items in HTML.

    List

  • 41

    Which is the correct syntax for an Unordered List in HTML?

    <ul> <li>Eggs</li> <li>Alcohol</li> <li>Snacks</li> </ul>

  • 42

    What is the syntax of an Ordered List?

    <ol> <li>January</li> <li>February</li> <li>March</li> </ol>

  • 43

    What is the correct syntax of a Description List?

    <dl> <dt>January</dt> <dd>- the first month</dd> <dt>February</dt> <dd>- the second month</dd> </dl>

  • 44

    This tag is used to color or mark up a part of a text or document.

    <span>

  • 45

    Which is the correct syntax for HTML span tag?

    <p>My mother has <span style="color:blue">blue</span> eyes.</p>

  • 46

    Navigation uses the ) _________ tag to define a set of navigation links. The tag is only used for major blocks of navigation links and not all links in an HTML document. It represents a page section with links to other web pages or parts within the same webpage.

    <nav>

  • 47

    Which is the correct syntax for HTML <nav>

    <nav> <a href=”#”> Home </a> <br> <a href=”#”> About Me </a> </nav>

  • 48

    These are used to gather text information from users and are defined by the <input> tag, which displays a type attribute such as the text, radio, checkbox, and button. Note that the default width of any input field is up to 20 characters.

    Input and Control Functions

  • 49

    Which is the correct syntax of a Label?

    <label for="ID">Name:</label><br> <input type="text" id="ID" name="name" value="val">

  • 50

    A Text Field displays a single-line text input field for text input and uses what tag?

    <input type="text "> tag

  • 51

    Which is the correct syntax for Text box?

    <input type="text" id="age" name="age"><br>

  • 52

    The Radio button allows users to select one of the available options and uses what HTML tag?

    <input type="radio"> tag

  • 53

    Which is the correct syntax for HTML radio button?

    <input type="radio" id="baguio" name="best_place" value="Baguio">

  • 54

    The Checkbox allows users to select as many options as possible out of the available options. What is the correct syntax for creating one?

    <input type="checkbox" id="baguio" name="top2" value="Baguio">

  • 55

    What format does <input type="date"> have?

    has a format of mm-dd-yyyy

  • 56

    What format does <input type="time"> have?

    has a format of hh:mm

  • 57

    What format does <input type="month”> have?

    has a format of yyyy-mm

  • 58

    What format does <input type="week"> have?

    has a format of Week#-yyyy

  • 59

    A button is used to create a button with different functions and is also defined by what HTML tags?

    <input> and <button> tags

  • 60

    What is the output of this program? <button type="submit"> <img src="Thumbnail.png" alt="buttonpng" width="180" height="100" > </button>

    An image that's clickable

  • 61

    Which is the correct syntax for a button that resets the user’s input.

    <input type="reset">

  • 62

    A submit button allows users to submit any data entered in the input field. What is the correct syntax for a submit button?

    <input type="submit" value="Submit">

  • 63

    An audio is defined using the <audio> tag and uses the <source> element for the audio source file. The control attribute is used to add audio controls such as play, pause, and volume. What is the correct syntax of creating an Audio

    <audio controls> <source src="audio.mp3"> </audio>

  • 64

    What is the correct syntax in displaying a video with a thumbnail in HTML?

    <video poster=”playbutton.png” width="320" height="240" controls> <source src="video.mp4" type="video/mp4"> </video>

  • 65

    It enables to draw graphics such as paths, boxes, circles, text, and adding images.

    Canvas

  • 66

    What is the correct syntax of a canvas in HTML?

    <canvas id="Canvas" width="200" height="100" style="border:1px solid #000000;"></canvas>

  • 67

    What does CSS Stand for?

    Cascading Style Sheet

  • 68

    What is CSS current Version?

    CSS3

  • 69

    It describes how a webpage should look in terms of colors, fonts, and spacing among others. It can make the website look whatever the designer wants.

    CSS

  • 70

    It is used to change the look and user experience of a webpage by targeting HTML elements and applying different styles such as formatting the text, changing the font, or arranging the layout

    CSS

  • 71

    Which statement BEST DESCRIBES the "Cascading" part in Cascading Style Sheets?

    The styles are applied in the order they are encountered by the browser, from the top of the style sheet to the bottom.

  • 72

    p { font-size: 30px; color: orange; } Which is the selector in this CSS?

    p

  • 73

    p { font-size: 30px; color: orange; } Which is the property in this CSS?

    font-size, color

  • 74

    p { font-size: 30px; color: orange; } Which is the value in this CSS?

    30, orange

  • 75

    It refers to when the CSS ruleset is inside the HTML document.

    Internal Style Sheet

  • 76

    It refers to when the CSS ruleset is on a separate file.

    External Style Sheet

  • 77

    What is the correct syntax in using an External Style Sheet

    <link rel="stylesheet" href="style.css" />

  • 78

    This CSS property is used to define the font.

    font-family

  • 79

    This process happens when the font to be used listed first and followed by others in the order they are to be used.

    Font stack

  • 80

    Which is the correct syntax for a Font Stack?

    p { font-family: Times New Roman, "Cambria", serif; }

  • 81

    Text can be resized using what CSS property?

    font-size

  • 82

    What measurements are used in Sizing text?

    px and %

  • 83

    This property allows the application of different boldness to text?

    font-weight

  • 84

    This property italicizes text

    font-style

  • 85

    This property allows emphasis lines to text.

    text-decoration

  • 86

    This property aligns the text horizontally.

    text-align

  • 87

    This color method in CSS is a A comma-separated list of the amount of red, green, and blue in a color, ranging from 0 to 255.

    RGB

  • 88

    This color method in CSS is a A six-character code that defines the RGB in a color preceded by a #.

    Hexadecimal (hex) values

  • 89

    This color method in CSS is a set of predefined names for colors. The easier method to use.

    Color names

  • 90

    What is the correct syntax for adding a custom image as a background in CSS?

    body{ background-image:url('assets/background.jpg'); }

  • 91

    This refers to how CSS sees every HTML element as if it is in its own box. This “box” consists of borders, paddings, margins, and content.

    Box Model

  • 92

    By default, this process occurs when a browser loads a webpage, the boxes flow on the page sequence as it encounters them in the code.

    Normal Flow

  • 93

    This can be put on all four sides or put individually on any side. This can also be modified using colors, styles, width, radius, margin, and padding.

    Border

  • 94

    This is the property that adds spacing around the content

    Margin

  • 95

    This is the property that adds spacing within the elements or white space inside the container

    Padding

  • 96

    This Border Style is a three-dimensional border that looks like it is carved into the page

    Groove

  • 97

    This Border Style is a three-dimensional border that is opposite of the groove style

    Ridge

  • 98

    This Border Style makes content in the border look like it is coming inside of the canvas.

    Inset

  • 99

    This Border Style makes content in the border look like it is coming outside of the canvas.

    Outset