Question: package debugmeone; import static debugmeone.DebugMeOne.foo; import static debugmeone.DebugMeOne.foobar; /* * Debugging Exercise - Chapter 6, Part I * * * NOTE: There are two methods

package debugmeone;

import static debugmeone.DebugMeOne.foo; import static debugmeone.DebugMeOne.foobar;

/* * Debugging Exercise - Chapter 6, Part I * * * NOTE: There are two methods below, foo and foobar, that should * print to the console the words * * foo! * foobar! * * Neither method functions correctly. */ public class DebugMeOne { public static void foo() { System.out.println("foo!"); }

public static void foobar() { System.out.println("foobar!"); } public static void main(String[] args) { foo(); foobar(); } }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!