Big Java, Binder Ready Version: Early Objects
Big Java, Binder Ready Version: Early Objects
6th Edition
ISBN: 9781119056447
Author: Cay S. Horstmann
Publisher: WILEY
Expert Solution & Answer
Book Icon
Chapter 26, Problem 1RE

Explanation of Solution

“Language” used for formatting the source:

  • “View the source” command used to view the contents of the website.
  • All the web browsers have a special feature to view the source code of the website.
  • Loading the http://horstmann.com into browser.

Screenshot of “http://horstmann.com”:

Big Java, Binder Ready Version: Early Objects, Chapter 26, Problem 1RE , additional homework tip  1

Big Java, Binder Ready Version: Early Objects, Chapter 26, Problem 1RE , additional homework tip  2

Screenshot of “view the source” command:

Big Java, Binder Ready Version: Early Objects, Chapter 26, Problem 1RE , additional homework tip  3

Screenshot of “view the source” page:

Big Java, Binder Ready Version: Early Objects, Chapter 26, Problem 1RE , additional homework tip  4

  • The language used for formatting the source is “HTML”.
  • “HTML” stands for Hypertext Markup Language.
  • It is used for formatting the website and anyone can display the website that created using HTML over Internet.
  • It is the building blocks of web pages and without HTML, the web browser wouldn’t know how to display the contents about the page.
  • They use HTML tags to build the web pages. These tags consist of reserved words and they provide special meaning.

Explanation of Solution

Explanation:

The following shows the images, links, bullets, and input elements that are found in the webpage “http://horstmann.com”.

Images:

  • Image tag is used to display the image in the webpage.
  • It uses the “<img>” tag and its important attribute is “src”.
  • “src” defines the path of the image.
  • The following shows the “Images” element that found in the given web page.

<img class="sideimage" alt="Photo of Cay Horstmann" src="images/cay-rowing.gif" />

<img alt="" src="images/violet.jpg" style="border: 0px solid ; width: 73px; height: 76px;" title="" />

<img alt="Zork 1 Logo" height="78" src="images/zork1.gif" width="99" />

Links:

  • “Link” is one of the important element in HTML.
  • It uses “<a>..</a>” tag to define a hyperlink.
  • Links are used for navigating webpages.
  • The next page link is defined in the attribute the “href”.
  • The page contains more links, they are as follows.
    • Email Link:
      • <a href="mailto:cay@horstmann.com">cay@horstmann.com</a>
    • File Link:
      • <a href="caypubkey.txt">PGP Key</a>
    • The following links points to another website from this page.
      • <a href="http://www.uni-kiel.de/">Christian-Albrechts-Universit&auml;t</a>
      • <a href="http://www.kiel.de/">Kiel</a>
      • <a href="http://www.syr.edu">Syracuse University</a>
      • <a href="http://www.umich.edu">University of Michigan</a>

Bullets:

  • Bullets are used in HTML using the “<ul>” tag, it represents unordered list.
  • The list items are shown using the “<li>” tag.
  • The following bullets are used in the given web page.

<ul>

<li><a href="http://www.java.net/blogs/cayhorstmann/">My Java blog</a></li>

<li><a href="https://plus.google.com/117406678785944293188/posts">My Google+ page</a></li>

<li><a href="http://www.sjsu.edu/people/cay.horstmann">My SJSU course page</a></li>

<li><a href="quotes.html">Memorable quotes</a></li>

<li><a href="resume.html">My resume</a></li>

<li>Fellow Horstmanns who are interested in the family genealogy may want to turn to <a href="http://www.family-horstmann.net">Bernhard Horstmann's site</a></li>

</ul>

  • There is no input elements are used in the given webpage.

Want to see more full solutions like this?

Subscribe now to access step-by-step solutions to millions of textbook problems written by subject matter experts!
Students have asked these similar questions
Write a complete Java program named FindSumAndAverage that performs the following tasks in 2-D array: Main Method: a. The main() method asks the user to provide the dimension n for a square matrix. A square matrix has an equal number of rows and columns. b. The main() method receives the value of n and calls the matrixSetUp() method that creates a square matrix of size n and populates it randomly with integers between 1 and 9. c. The main method then calls another method named printMatrix() to display the matrix in a matrix format. d. The main method also calls a method named findSumAndAverage() which: • Receives the generated matrix as input. • Calculates the sum of all elements in the matrix. • Calculates the average value of the elements in the matrix. • Stores these values (sum and average) in a single-dimensional array and returns this array • e. The main method prints the sum and average based on the result returned from findSumAndAverage()). Enter the dimension n for the square…
The partial sums remain the same no matter what indexing we done to s artial sum of each series onverges, * + s of each series to the series or show 12. (1)+(0)+(0)+(+1)+ 17, " (F) + (F) + (F)(F)(- 18. 19. 1 #20. (三)+(三)-(三)+(3) 20 (9)-(0)-(0)-- 10 +1 2.1+(男)+(男)+(罰)+(鄂 9 T29 x222-끝+1-23 + -.... Repeating Decimals 64 Express each of the numbers in Exercises 23-30 as the m integers. 23. 0.23 = 0.23 23 23... 24. 0.234 = 0.234 234 234. 25. 0.7 = 0.7777... 26. 0.d = 0.dddd... where d is a digit natio of own s converges or * 27. 0.06 = 0.06666.. 28. 1.4141.414 414 414... 29. 1.24123 = 1.24 123 123 123... 30. 3.142857 = 3.142857 142857. Using the ath-Term Test In Exercises 31-38, use the ath-Term Test for divergence to show that the series is divergent, or state that the test is inconclusive 8
CPS 2231 Computer Programming Homework #3 Due Date: Posted on Canvas 1. Provide answers to the following Check Point Questions from our textbook (5 points): a. How do you define a class? How do you define a class in Eclipse? b. How do you declare an object's reference variable (Hint: object's reference variable is the name of that object)? c. How do you create an object? d. What are the differences between constructors and regular methods? e. Explain why we need classes and objects in Java programming. 2. Write the Account class. The UML diagram of the class is represented below (10 points): Account id: int = 0 - balance: double = 0 - annualInterestRate: double = 0.02 - dateCreated: java.util.Date + Account() + Account(id: int, balance: double) + getId(): int + setId(newId: int): void + getBalance(): double + setBalance(newBalance: double): void + getAnnualInterestRate(): double + setAnnualInterest Rate (newRate: double): void + toString(): String + getDataCreated(): java.util.Date +…
Knowledge Booster
Background pattern image
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education