Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Overview In the last lab, we learned the basic structure of a Java class as well as some debugging skills. Now it is time to

Overview

In the last lab, we learned the basic structure of a Java class as well as some debugging skills.

Now it is time to put that knowledge to use and fix up the code in the ZyBooks editing window.

Debugging Practice

In the develop section, try to compile the code and use the error messages to fix the discrepancies in the code.

It would also be useful to read the comments scattered throughout the code. In Java, comments are denoted either with a //where the comment starts and goes until the end of the line or with /*commentary that goes here between the asterisks and slashes*/. They should be used to add clarification to code when necessary.

Practice With Formatting Output

Now that the code compiles without any errors, try submitting your code.

You'll notice, you don't get points because the format of the output is different than the expected.

The Java language is not dependent on whitespace (new lines, spaces, tabs, etc.) but you should still be aware that these things will still matter when dealing with Strings.

Within double-quotes, whitespace does matter. So the String "my fair lady" and the String " my fair lady" are treated as completely different.

Some highlights in terms of formatting output:

System.out.print() vs System.out.println(): println will start a new line at the end while print does not

Some basic escape characters:

\t adds a tab in the String

adds a new line in the String

\" adds a double quote to the String

With this as a starting point, format the output of your code to match the expected output.

image text in transcribed

58 ACTIVITY 1.3.1: Lab1b Due Sep-12 0/5 MovieQuote.java Load default template.. 1 public class MovieQuote 2 public static void main(String args) 4 6 /The +between the Strings is called a concatinator and works to combine the Strings together System.Out.print(""Someone I once knew wrote that" + " we walk away from our dreams"; //Note the \" allows the "to be printed as part of the string system.out.printlnC"afraid that we may fail or worse yet, afraid we may succeed.\" //The spaces before the quotation mark do not matter, though it does make the code messier System.Out.PrintLn 7 "-William Forrester) 9 H

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Oracle Database 10g Insider Solutions

Authors: Arun R. Kumar, John Kanagaraj, Richard Stroupe

1st Edition

0672327910, 978-0672327919

More Books

Students also viewed these Databases questions