1920 - Computing Final Exam - Exam Mode - Term 01

Approved & Edited by ProProfs Editorial Team
The editorial team at ProProfs Quizzes consists of a select group of subject experts, trivia writers, and quiz masters who have authored over 10,000 quizzes taken by more than 100 million users. This team includes our in-house seasoned quiz moderators and subject matter experts. Our editorial experts, spread across the world, are rigorously trained using our comprehensive guidelines to ensure that you receive the highest quality quizzes.
Learn about Our Editorial Process
| By Arezoo
A
Arezoo
Community Contributor
Quizzes Created: 1 | Total Attempts: 64
Questions: 68 | Attempts: 64

SettingsSettingsSettings
1920 - Computing Final Exam - Exam Mode - Term 01 - Quiz

International School of Choueifat - Dubai Branch
Prepared by Arezoo HPanah


Questions and Answers
  • 1. 

    What do the following tags do? 

    • A.

      Bold

    • B.

      Italic

    • C.

      Underline

    • D.

      Used for data input

    • E.

      Creates an item in an unordered list

    Correct Answer
    A. Bold
    Explanation
    The "Bold" tag is used to make text appear in a bold font.

    Rate this question:

  • 2. 

    What do the following tags do? 

    • A.

      Bold

    • B.

      Italic

    • C.

      Underline

    • D.

      Used for data input

    • E.

      Creates an item in an unordered list

    Correct Answer
    B. Italic
    Explanation
    The "Italic" tag is used to apply italic formatting to the text enclosed within the tag. It is commonly used to emphasize or highlight certain words or phrases in a document or webpage.

    Rate this question:

  • 3. 

    What do the following tags do? 

    • A.

      Bold

    • B.

      Italic

    • C.

      Underline

    • D.

      Used for data input

    • E.

      Creates an item in an unordered list

    Correct Answer
    C. Underline
    Explanation
    The underline tag is used to create an underline effect on the text. It is commonly used to emphasize or highlight specific words or phrases in a document.

    Rate this question:

  • 4. 

    What do the following tags do? 

    • A.

      Bold

    • B.

      Italic

    • C.

      Underline

    • D.

      Used for data input

    • E.

      Creates an item in an unordered list

    Correct Answer
    D. Used for data input
  • 5. 

    What do the following tags do? 

    • A.

      Bold

    • B.

      Italic

    • C.

      Underline

    • D.

      Used for data input

    • E.

      Creates an item in an unordered list

    Correct Answer
    E. Creates an item in an unordered list
  • 6. 

    What is the use of the color property? It is used to [________] the color of the [________].

    Correct Answer
    change
    text
    Explanation
    The color property is used to change the color of the text.

    Rate this question:

  • 7. 

    What is the output of the following code?

    • A.

      A)

    • B.

      B)

    • C.

      C)

    Correct Answer
    B. B)
  • 8. 

    To change the text size in HTML, we use the [________] property.

    Correct Answer
    font-size
    Explanation
    To change the text size in HTML, we use the "font-size" property. This property allows us to specify the size of the text, either in absolute units like pixels or in relative units like percentages. By adjusting the value of the "font-size" property, we can increase or decrease the size of the text displayed on a webpage.

    Rate this question:

  • 9. 

    Write a code to change the heading1’s size to 180%?

    • A.

      A)

    • B.

      B)

    • C.

      C)

    • D.

      D)

    Correct Answer
    B. B)
    Explanation
    The correct answer is b) because in HTML, the heading1 element can be styled using CSS. To change the size of the heading1, we can use the CSS property "font-size" and set it to 180%. This will increase the size of the heading1 to 180% of its default size.

    Rate this question:

  • 10. 

    Color values can be represented using special numerical values called [________]. Hexadecimal digits operate on a [________] number system. Letters in a hexadecimal number range from [[________] to [________]].

    Correct Answer
    hexadecimal values
    base-16
    A
    F
    Explanation
    Color values can be represented using special numerical values called hexadecimal values. Hexadecimal digits operate on a base-16 number system. Letters in a hexadecimal number range from A to F.

    Rate this question:

  • 11. 

    A hexadecimal value starts with a [________] sign.

    Correct Answer
    #
    Explanation
    A hexadecimal value starts with a "#" sign.

    Rate this question:

  • 12. 

    To merge two rows, we use the [________].

    Correct Answer
    rowspan attribute
    Explanation
    To merge two rows, we use the rowspan attribute. This attribute is used in HTML tables to specify the number of rows a cell should span. By setting the rowspan value to the desired number, we can merge multiple rows into a single cell. This is useful when we want to create cells that span across multiple rows, merging the content of those rows into one.

    Rate this question:

  • 13. 

    To merge two columns, we use the [________].

    Correct Answer
    colspan attribute
    Explanation
    To merge two columns, we use the colspan attribute. The colspan attribute is an HTML attribute that is used to specify the number of columns a cell should span or merge horizontally. By using the colspan attribute, we can combine the cells of multiple columns into a single cell, effectively merging them together. This is commonly used in HTML tables to create merged cells or to create cells that span across multiple columns.

    Rate this question:

  • 14. 

    What is the bgcolor attribute used for? To set a [________] color for the [________].

    Correct Answer
    background
    table
    Explanation
    The bgcolor attribute is used to set the background color for a table.

    Rate this question:

  • 15. 

    What are forms used for? Forms are used to [________] from [________].

    Correct Answer
    collect data
    users
    Explanation
    Forms are used to collect data from users. By providing input fields and prompts, forms allow users to input information such as their name, email, or preferences. This data can then be collected and processed for various purposes, such as creating user accounts, conducting surveys, or making online purchases. Forms are an essential tool for gathering information from users in a structured and organized manner.

    Rate this question:

  • 16. 

    The input data holders in forms are known as [________].

    Correct Answer
    input controls
    Explanation
    The input data holders in forms are known as input controls. Input controls are elements or components in a form that allow users to input or select data. These controls include text fields, checkboxes, radio buttons, dropdown lists, and buttons. They provide a way for users to interact with the form and enter the required information.

    Rate this question:

  • 17. 

    The function of which attributes can be described as followed: It is used to upload data in an HTML form.

    • A.

      Method

    • B.

      Target

    • C.

      Enctype

    Correct Answer
    A. Method
    Explanation
    The "Method" attribute is used to specify the HTTP method to be used when submitting the form data. It determines how the form data will be sent to the server. In this case, since it is used to upload data in an HTML form, the "Method" attribute would likely be set to "POST" which is commonly used for submitting form data.

    Rate this question:

  • 18. 

    The function of which attributes can be described as followed: It specifies how the browser encodes the data before it sends it to the server.

    • A.

      Method

    • B.

      Target

    • C.

      Enctype

    Correct Answer
    C. Enctype
    Explanation
    The correct answer is "Enctype". The enctype attribute specifies how the browser encodes the data before sending it to the server. This attribute is commonly used in HTML forms when submitting data to a server-side script. It determines how the form data should be encoded, such as "application/x-www-form-urlencoded" or "multipart/form-data". The server-side script then uses this encoding information to properly handle and process the submitted data.

    Rate this question:

  • 19. 

    The function of which attributes can be described as followed: It specifies where the results of the script are going to be displayed. It processes data passing through the form controls.

    • A.

      Method

    • B.

      Target

    • C.

      Enctype

    Correct Answer
    B. Target
    Explanation
    The target attribute in HTML specifies where the results of a form submission will be displayed. It can be set to various values such as "_self" to open the response in the same window, "_blank" to open it in a new window, or a named frame or iframe to target a specific frame or iframe. This attribute is crucial for determining where the data entered in the form controls will be processed and displayed.

    Rate this question:

  • 20. 

    Choose Radio button which is circular, and allows the visitor to choose one option from a group of options. It is used to create a control that will allow the user to select a gender without typing it in.

    • A.

      A)

    • B.

      B)

    • C.

      C)

    • D.

      D)

    • E.

      E)

    Correct Answer
    B. B)
    Explanation
    The correct answer is b) Radio button. A radio button is a circular option that allows the visitor to choose only one option from a group of options. In this case, it is used to create a control for selecting a gender without the need for the user to type it in.

    Rate this question:

  • 21. 

    Choose Text box which is a box in which the website visitor can enter/type information. It is used to create a control that will allow the user to type in his address.

    • A.

      A)

    • B.

      B)

    • C.

      C)

    • D.

      D)

    • E.

      E)

    Correct Answer
    A. A)
    Explanation
    The correct answer is "a) Text box". A text box is a form control element that allows website visitors to enter or type information. In this scenario, it is used specifically to create a control that will allow the user to type in their address.

    Rate this question:

  • 22. 

    Choose Drop-down list which is a list that appears when the website visitor clicks on an arrow to display a list of possible options to choose from.

    • A.

      A)

    • B.

      B)

    • C.

      C)

    • D.

      D)

    • E.

      E)

    Correct Answer
    D. D)
    Explanation
    The correct answer is d) because a drop-down list is a common user interface element that allows website visitors to select one option from a list of choices. When the visitor clicks on an arrow or a button, a list of possible options is displayed, and they can choose one option from that list. This type of input field is often used in forms or menus to provide a compact and organized way for users to make selections.

    Rate this question:

  • 23. 

    Choose Check box which is a box that allows the user to select more than one option from a group of options. It is used to create a control that will allow the user to choose one or more subjects to study at school without typing them in.

    • A.

      A)

    • B.

      B)

    • C.

      C)

    • D.

      D)

    • E.

      E)

    Correct Answer
    C. C)
    Explanation
    A check box is a type of input control that allows the user to select multiple options from a group of choices. In this context, the check box is used to create a control that allows the user to choose one or more subjects to study at school without having to manually type them in. This makes it easier for the user to make their selections by simply checking the appropriate boxes.

    Rate this question:

  • 24. 

    Choose Password which is used to hide the characters of a text

    • A.

      A)

    • B.

      B)

    • C.

      C)

    • D.

      D)

    • E.

      E)

    Correct Answer
    E. E)
    Explanation
    The correct answer is e) Encryption. Encryption is a process of converting plain text into a coded form (cipher text) to prevent unauthorized access. It is used to hide the characters of a text by scrambling the original message using a specific algorithm and a secret key. The encrypted message can only be decrypted back into its original form using the same key.

    Rate this question:

  • 25. 

    The [________] attribute allows the user to set the width of the text-input control.

    Correct Answer
    size
    Explanation
    The "size" attribute allows the user to set the width of the text-input control. This means that the user can specify the number of characters that can be displayed in the text-input field. By setting a specific size, the user can control the visual appearance and the maximum length of the input that can be entered in the field.

    Rate this question:

  • 26. 

    Check input controls.

    • A.

      Radio buttons

    • B.

      Labels

    • C.

      Textboxes

    • D.

      Checkboxes

    • E.

      Drop-down lists

    • F.

      Frames

    Correct Answer(s)
    A. Radio buttons
    C. Textboxes
    D. Checkboxes
    E. Drop-down lists
    Explanation
    The given answer includes a list of common input controls used in user interfaces. Radio buttons, textboxes, checkboxes, and drop-down lists are all examples of input controls that allow users to interact with a system by selecting options or entering data. These controls are commonly used in forms, surveys, and other interactive elements to gather information or make selections. Frames and labels, on the other hand, are not input controls but rather elements used for organizing and displaying content within a user interface.

    Rate this question:

  • 27. 

    Use the following part of the web page to answer the questions below: Which statement creates the control shown in Part A?

    • A.

      A)

    • B.

      B)

    • C.

      C)

    • D.

      D)

    • E.

      E)

    Correct Answer
    B. B)
  • 28. 

    Use the following part of the web page to answer the questions below: Which statement creates the control shown in Part B?

    • A.

      A)

    • B.

      B)

    • C.

      C)

    • D.

      D)

    • E.

      E)

    Correct Answer
    A. A)
  • 29. 

    Use the following part of the web page to answer the questions below: Which statement creates the control shown in Part C?

    • A.

      A)

    • B.

      B)

    • C.

      C)

    • D.

      D)

    • E.

      E)

    Correct Answer
    C. C)
  • 30. 

    Use the following part of the web page to answer the questions below: Which statement creates the control shown in Part D?

    • A.

      A)

    • B.

      B)

    • C.

      C)

    • D.

      D)

    • E.

      E)

    Correct Answer
    D. D)
  • 31. 

    Use the following part of the web page to answer the questions below: Which statement creates the control shown in Part E?

    • A.

      A)

    • B.

      B)

    • C.

      C)

    • D.

      D)

    • E.

      E)

    Correct Answer
    E. E)
    Explanation
    The control shown in Part E is created by statement e).

    Rate this question:

  • 32. 

    Tags are usually enclosed in [[________][________][________]].

    Correct Answer
    <
    Angle brackets
    >
    Explanation
    The correct answer is "Angle brackets". Angle brackets are usually used to enclose tags in HTML and XML coding. They are represented by the symbols "".

    Rate this question:

  • 33. 

    How can we display the HTML code of a webpage? By selecting the “________” option in a webpage shown in ________.

    Correct Answer
    View Source
    Internet Explorer
    Explanation
    To display the HTML code of a webpage, you can select the "View Source" option in a webpage shown in Internet Explorer. This option allows you to see the underlying HTML code of the webpage, including all the tags, elements, and formatting used to create the webpage's content and structure. By selecting this option, you can access and analyze the HTML code for various purposes, such as troubleshooting, learning, or making modifications to the webpage.

    Rate this question:

  • 34. 

    How many standard headings can be used in HTML? ________ headings -- ________ (heading ________) is the smallest and ________ (heading ________) is the largest.

    Correct Answer
    6
    h6
    6
    h1
    1
    Explanation
    There are six standard headings that can be used in HTML. The smallest heading is h6 and the largest heading is h1.

    Rate this question:

  • 35. 

    What are tags? HTML tags are ________ used to identify ________ in a webpage. The first tag to use in an HTML file is <________>.

    Correct Answer
    keywords
    features
    html
    Explanation
    HTML tags are used to identify keywords and features in a webpage. The first tag to use in an HTML file is .

    Rate this question:

  • 36. 

    This tag can occur only once in an HTML document.

    • A.

      Br

    • B.

      Ul

    • C.

      Ol

    • D.

      Body

    • E.

      A href

    Correct Answer
    D. Body
    Explanation
    The tag "body" is used to define the main content of an HTML document. It represents the entire content of the document, including headings, paragraphs, images, links, etc. The "body" tag can occur only once in an HTML document because it represents the main content area, and having multiple "body" tags would create confusion and violate the structure of the document.

    Rate this question:

  • 37. 

    When we move the mouse pointer over a hyperlink, it will change to

    • A.

      A)

    • B.

      B)

    • C.

      C)

    Correct Answer
    B. B)
    Explanation
    When we move the mouse pointer over a hyperlink, it will change to the hand cursor. This is the default behavior of most web browsers to indicate that the text or image is clickable and will take the user to another page or perform a specific action when clicked. The hand cursor is a visual cue that helps users identify interactive elements on a webpage and encourages them to click on the hyperlink for further navigation.

    Rate this question:

  • 38. 

    Text links are known as [________]

    Correct Answer
    hypertext
    Explanation
    Text links are known as hypertext. Hypertext refers to the ability to link different pieces of text together, allowing users to navigate between them by clicking on the links. This concept is widely used on the internet, where text is often hyperlinked to other web pages or resources. By clicking on a text link, users can access additional information or related content, enhancing their browsing experience and enabling them to explore different topics or sources.

    Rate this question:

  • 39. 

    What is the tag used to create a link to an email address? <[________]>

    Correct Answer
    mailto
    Explanation
    The tag used to create a link to an email address is "mailto". This tag allows users to click on the link and open their default email client with a new email addressed to the specified email address.

    Rate this question:

  • 40. 

    The “ref” in the "a href " tag stands for [________]

    Correct Answer
    reference
    Explanation
    The "ref" in the "a href" tag stands for reference. The "a href" tag is used in HTML to create a hyperlink, and the "ref" attribute is used to specify the URL or location that the hyperlink should point to. It is short for "reference" because it is used to refer to the location or resource that the user will be directed to when they click on the hyperlink.

    Rate this question:

  • 41. 

    A list placed inside another is called [________].

    Correct Answer
    nested list
    Explanation
    A list placed inside another is called a nested list. This means that one list is contained within another list. It allows for a hierarchical structure where the inner list is a part of the outer list. This concept is commonly used in programming and data structures to organize and represent complex data.

    Rate this question:

  • 42. 

    [________] can be clicked to allow users to navigate to another webpage.

    Correct Answer
    Hyperlinks
    Explanation
    Hyperlinks are clickable elements that allow users to navigate to another webpage. By clicking on a hyperlink, users can be directed to a different webpage or a specific section within the same webpage. Hyperlinks are commonly used in websites, documents, and online content to provide easy navigation and access to related information.

    Rate this question:

  • 43. 

    What does HTTP stand for? HTTP stands for ________. It allows you to transfer a hypertext content.

    Correct Answer
    Hyper Text Transfer Protocol
    Explanation
    HTTP stands for Hyper Text Transfer Protocol. It is the protocol used for transferring hypertext content over the internet. The use of HTTP allows for the communication and transfer of information between web servers and clients. It is the foundation of data communication for the World Wide Web, enabling the retrieval and display of web pages and other resources.

    Rate this question:

  • 44. 

    A group of computers that are connected together to allow them to communicate and exchange information is called a________.

    • A.

      A. network

    • B.

      B. PC

    • C.

      C. server

    • D.

      D. client

    • E.

      E. model

    Correct Answer
    A. A. network
    Explanation
    A group of computers that are connected together to allow them to communicate and exchange information is called a network. This term refers to the infrastructure that enables computers to share resources, such as files and printers, and communicate with each other through various technologies, such as Ethernet or Wi-Fi. A network can be as small as two computers connected together or as large as a global network connecting millions of devices.

    Rate this question:

  • 45. 

    In a network, the computer that connects all other users’ computers is called __________.

    • A.

      A. A client

    • B.

      B. A node

    • C.

      C. A server

    • D.

      D. A connector

    • E.

      E. A router

    Correct Answer
    C. C. A server
    Explanation
    In a network, a server is the computer that connects all other users' computers. It is responsible for managing network resources, such as files, printers, and internet access. Servers provide services to clients, which are the other computers connected to the network. A server typically has more processing power, storage capacity, and memory compared to client computers. It handles requests from clients and delivers the requested data or services. Therefore, option C, a server, is the correct answer.

    Rate this question:

  • 46. 

    In a network, the users’ computers that are connected by a server are called __________.

    • A.

      A. A client

    • B.

      B. A mode

    • C.

      C. A server

    • D.

      D. A connector

    • E.

      E. A router

    Correct Answer
    A. A. A client
    Explanation
    In a network, the users' computers that are connected by a server are called clients. Clients are the devices that request services or resources from the server. They rely on the server to provide them with the necessary data or perform specific tasks. The server, on the other hand, is responsible for managing and distributing resources to the clients in the network.

    Rate this question:

  • 47. 

    The network model, where a standalone computer connects a group of computers, is called _______.

    • A.

      A. Network- Server

    • B.

      B. Computer- Server

    • C.

      C. Network - User

    • D.

      D. Client-Server

    • E.

      E. File –Client

    Correct Answer
    D. D. Client-Server
    Explanation
    The correct answer is D. Client-Server. In a client-server network model, a standalone computer (the server) connects and provides services to a group of computers (the clients). The clients request and receive resources from the server, such as files, data, or processing power. This model allows for centralized control and management of resources, as well as efficient sharing and distribution of tasks among the connected computers.

    Rate this question:

  • 48. 

    All of the following are network types except:

    • A.

      A. WAN

    • B.

      B. LAN

    • C.

      C. PAN

    • D.

      D. RAN

    • E.

      E. MAN

    Correct Answer
    D. D. RAN
    Explanation
    The correct answer is D. RAN. RAN stands for Radio Access Network, which is not a type of network but rather a component of a cellular network. A RAN is responsible for connecting mobile devices to the core network and managing the radio resources. It is not a standalone network type like WAN, LAN, PAN, or MAN.

    Rate this question:

  • 49. 

    The _________ is a small network that exists between a few devices at home.

    • A.

      A. WAN

    • B.

      B. LAN

    • C.

      C. PAN

    • D.

      D. RAN

    • E.

      E. MAN

    Correct Answer
    C. C. PAN
    Explanation
    A PAN, or Personal Area Network, is a small network that connects devices within a limited range, typically within a home or office. It allows devices such as smartphones, laptops, and tablets to communicate with each other and share resources, such as files or printers. A PAN is typically established using wireless technologies such as Bluetooth or Wi-Fi.

    Rate this question:

  • 50. 

    The ____________ is network of computers that can be found in a business office or that connects computers in a building.

    • A.

      A. WAN

    • B.

      B. LAN

    • C.

      C. PAN

    • D.

      D. RAN

    • E.

      E. MAN

    Correct Answer
    B. B. LAN
    Explanation
    A LAN (Local Area Network) is a network of computers that is typically found in a business office or building. It connects computers within a limited area, such as a single building or campus. A LAN allows for the sharing of resources, such as files and printers, and enables communication between computers within the network.

    Rate this question:

Quiz Review Timeline +

Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.

  • Current Version
  • Mar 23, 2023
    Quiz Edited by
    ProProfs Editorial Team
  • Nov 19, 2019
    Quiz Created by
    Arezoo
Back to Top Back to top
Advertisement
×

Wait!
Here's an interesting quiz for you.

We have other quizzes matching your interest.