

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
A java programming quiz focused on completing the point class definition, understanding inheritance and method binding in java, and comparing strings. It includes filling in the blanks for the point class, identifying the correct java keywords for inheritance and incomplete class definitions, and evaluating given expressions related to string comparison.
Typology: Exercises
1 / 2
This page cannot be seen from the preview
Don't miss anything!


public class Point { private int x; private int y;
public Point( int x, int y ) { setX( x ); setY( y ); }
public int getX() { ____________________________; }
public int getY() { ____________________________; }
public void setX( int x ) { ___________________________; }
public void setY( int y ) { ___________________________; } }
String s1 = new String( "CSE 11" ); String s2; String s3 = s1;
s2 = new String( "CSE 11" );
s1 == s2 __________
s1 == s3 __________
s1.equals( s2 ) __________
s1.equals( s3 ) __________
s1 == "CSE 11" __________
s2 == "CSE 11" __________
public class Quiz {
public class Foo { public Foo( int x, int y ) { this(); System.out.println( "Foo ctor #1" ); }
public Foo() { System.out.println( "Foo ctor #2" ); }
public String toString() { System.out.println( "Foo.toString" ); return "Foo.toString"; } }
public class Fubar1 extends Foo { public Fubar1( int x, int y, int z ) { super( x, y ); System.out.println( "Fubar ctor #1" ); }
public Fubar1( int x, int y ) { this( x, y, -99 ); System.out.println( "Fubar ctor #2" ); }
public String toString() { System.out.println( "Fubar.toString" ); return super.toString() + " + " + "Fubar.toString"; } }
public class FubarTest { public static void main( String[] args ) { Foo ref = new Fubar1( 5, 10 );
System.out.println( "-----" );
System.out.println( ref.toString() ); } }