Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

EX 3 . 1 Write a statement that prints the number of characters in a String object called overview . EX 3 . 2 Write

EX 3.1 Write a statement that prints the number of characters in a String object called overview .
EX 3.2 Write a statement that prints the 8th character of a String object called introduction .
EX 3.3 Declare a String variable named str and initialize it to contain the same characters as a String object called name , except in all uppercase characters.
EX 3.4 Write a declaration for a String variable called change and initialize it to the characters stored in another String object called original with all 'e' characters changed to 'j'.
EX 3.5 What output is produced by the following code fragment? String m1, m2, m3; m1= "Quest for the Holy Grail"; m2= m1.toLowerCase(); m3= m1+""+ m2; System.out.println(m3.replace('g','z'));
EX 3.6 What is the effect of the following import statement? import java.awt.*;
EX 3.7 Assuming that a Random object has been created called generator , what is the range of the result of each of the - following expressions?
a. generator.nextInt(20)
b. generator.nextInt(8)+1
c. generator.nextInt(12)+2
d. generator.nextInt(35)+10
e. generator.nextInt(100)-50
EX 3.9 Write an assignment statement that computes the square root of the sum of num1 and num2 and assigns the result to num3.
EX 3.10 Write a single statement that computes and prints the absolute value of total.
EX 3.11 Write code statements to create a DecimalFormat object that will round a formatted value to four decimal places. Then write a statement that uses that object to print the value of result , properly formatted.
EX 3.12 Write code statements that prompt for and read a double value from the user, and then print the result of raising that value to the fourth power. Output the results to three decimal places.
EX 3.13 Write a declaration for an enumerated type that represents the days of the week.
EX 3.14 Compare and contrast a traditional coordinate system and the coordinate system used by Java graphical components.
EX 3.15 Write a declaration for each of the following:
a. A line that extends from point (60,100) to point (30,90).
b. A rectangle that is 20 pixels wide, 100 pixels high, and has its upper-left corner at point (10,10).
c. A circle that is centered at point (50,75) and has a radius of 30.
d. An ellipse that is centered at point (150,180) and is 100 pixels wide and 80 pixels high.
EX 3.16 Are the following lines horizontal, vertical, or neither?
a. new Line(30,90,30,10)
b. new Line(85,70,70,85)
c. new Line(20,40,150,40)
EX 3.17 Is each of the following ellipses wider than it is tall or taller than it is wide?
a. new Ellipse(300,100,50,10)
b. new Ellipse(100,200,20,40)
c. new Ellipse(150,220,60,30)

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

Database And Expert Systems Applications 24th International Conference Dexa 2013 Prague Czech Republic August 2013 Proceedings Part 2 Lncs 8056

Authors: Hendrik Decker ,Lenka Lhotska ,Sebastian Link ,Josef Basl ,A Min Tjoa

2013th Edition

3642401724, 978-3642401725

More Books

Students also viewed these Databases questions