____________________ is a structure of linked elements through which a user can navigate.

Fill in the blank(s) with the appropriate word(s).


Hypermedia

Computer Science & Information Technology

You might also like to view...

Which binary signaling technique uses a scheme in which zero voltage represents a 0 bit and the voltage for a 1 bit does not drop back to zero before the end of the bit period?

A. RTZ B. NRZ C. polar NRZ D. polar RTZ

Computer Science & Information Technology

_____________ is a program that runs on a computer to manage and control a computer's activities.

a. Operating system b. Java c. Modem d. Interpreter e. Compiler

Computer Science & Information Technology

Look at the following pseudoocode and insert the missing statement:Start// Declare variablesDeclare String lastName, firstName, fullName// Input last and first namesDisplay "Enter your last name: "Input lastNameDisplay "Enter your first name: "Input firstName// Concatenate names with space in between____// Display full nameDisplay "Your full name is " + fullNameStop

A. fullName = firstName + lastName B. fullName = firstName + " " + lastName C. fullName = firstName, lastName D. fullName = firstName, space, lastName

Computer Science & Information Technology

Which statement about trees is false?

a) A tree is a non-linear, two-dimensional data structure. b) Tree nodes contain two or more links. c) Binary tree nodes contain two or fewer links. d) Binary tree nodes contain exactly two links.

Computer Science & Information Technology