
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
Material Type: Quiz; Class: Intermediate Java Programming; Subject: Computer Programming; University: Florida International University; Term: Summer 2007;
Typology: Quizzes
1 / 1
This page cannot be seen from the preview
Don't miss anything!

th
public class Quiz5 { public static void main ( String[] args ){ String [] arr = new String[]{ "Florida" , "Georgia" , "Montana" , "California" }; String s; s = printRec1 ( arr, 0 ); System.out.println ( "Result of printRec1 is: " + s ); s = printRec2 ( arr, 0 ); System.out.println ( "Result of printRec2 is: " + s ); } _/**
_/**
Output is: Florida Georgia Montana California Result of printRec1 is California California Montana Georgia Florida Result of printRec2 is California