What is hypertext? How are the key ideas of hypertext incorporated into the Web?
What will be an ideal response?
The term hypertext refers to documents that interlink text and media, such as images, sounds, and alternate story lines. The Web utilizes hypertext in that Web pages can contain other media and links to other pages as well.
You might also like to view...
Which of the following code correctly registers a handler with a button btOK?
a. btOK.setOnAction(e -> System.out.println("Handle the event")); b. btOK.setOnAction((e) -> System.out.println("Handle the event");); c. btOK.setOnAction((ActionEvent e) -> System.out.println("Handle the event")); d. btOK.setOnAction(e -> {System.out.println("Handle the event");});
If table structure elements are not required in order for Web documents to be well formed, why include them at all?
What will be an ideal response?
What Windows utility can be used to find out what processes are launched at startup?
A. Task Manager B. Microsoft Management Console C. System Configuration D. Computer Management
A new class of objects can be created conveniently by ________; the new class (called the ________) starts with the characteristics of an existing class (called the ________), possibly customizing them and adding unique characteristicsof its own.
a. inheritance, superclass, subclass. b. composition, subclass, superclass c. inheritance, subclass, superclass d. composition, superclass, subclass