Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

/** * (5 marks) * This function should return a string representing the calling object * * Example * If the calling object contained

image text in transcribed

/** * (5 marks) * This function should return a string representing the calling object * * Example * If the calling object contained the following values: * - filename = "operahouse.jpg" * - location = "Sydney" * * * - fileSize = 420 people ["John", "Sarah", "Claire"] * then toString() should return the following multiline string: * name: operahouse * extension: jpg * location: sydney * size: 420b * people: John, Sarah and Claire * * Notes * the 'name' should contain everything in 'filename' to the left of the last dot * - the 'extension' should containing everything in 'filename' to the right of the last dot * - If there is only one name in the people array there should be no comma or 'and' * - You can make a new line in a string using " " * - You may not use the StringBuilder class */ public String toStringAdvanced () { //TODO To be completed String ans = "name: operahouse location: Sydney "; String names = IIII for(int i = 0; i < people.length; i++) { names += people[i]; } } return ans + names;

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

Mobile Usability

Authors: Jakob Nielsen, Raluca Budiu

1st Edition

0133122131, 9780133122138

More Books

Students also viewed these Programming questions

Question

=+b) Which model do you prefer? Explain briefly. Section 18.4

Answered: 1 week ago