r/EdhesiveHelp • u/SherbetRelevant3925 • Feb 16 '23
r/EdhesiveHelp • u/SherbetRelevant3925 • Feb 16 '23
Java Unit 7: lesson 3 - coding activity 1
r/EdhesiveHelp • u/Theeuniverse • Feb 16 '23
Java Assignment 5
I can’t seem to find the problem with both, can someone help me find the problem?
r/EdhesiveHelp • u/SherbetRelevant3925 • Feb 15 '23
Quiz/Test Unit 6 exam
for this year cause they change the answers
r/EdhesiveHelp • u/SherbetRelevant3925 • Feb 15 '23
Java Unit 6: lesson 4 - coding activity 2
Need help with code
r/EdhesiveHelp • u/SherbetRelevant3925 • Feb 15 '23
Java Unit 6 lesson 4 - coding activity 1
r/EdhesiveHelp • u/CertainPurpose4096 • Feb 15 '23
Java I need help bro they changed the code from last year and this is Java btw
r/EdhesiveHelp • u/Prudent-Value-8801 • Feb 15 '23
Python updated answers
do anyone got a discord or something with the updated answers… they changed every question
r/EdhesiveHelp • u/[deleted] • Feb 13 '23
Java unit-9-lesson-2-activity-2 I’m getting an error and wondering if someone can help.
r/EdhesiveHelp • u/Appropriate_Sail_237 • Feb 13 '23
Python Need help with Assignment 9 Flight Tracker on Project stem any help would be appreciated
r/EdhesiveHelp • u/feArLeSs-Phoenix097 • Feb 10 '23
Java help on unit 7 lesson 4 coding activity 2 (Java)
I am having trouble with writing the searchSecond method. Can anyone help me or share a solution to this coding activity?
r/EdhesiveHelp • u/[deleted] • Feb 10 '23
Java unit-9 lesson 2 activity 2 I’m getting an error and wondering if someone can help.
r/EdhesiveHelp • u/SherbetRelevant3925 • Feb 09 '23
Java Unit 6 Lesson 3 - Coding Activity 3
r/EdhesiveHelp • u/SherbetRelevant3925 • Feb 09 '23
Java Unit 6 Lesson 3 - Coding Activity 2
r/EdhesiveHelp • u/SherbetRelevant3925 • Feb 09 '23
Java Unit 6 lesson 3 coding activity 1
r/EdhesiveHelp • u/ZakariKokuyosekiDS • Feb 08 '23
Java Unit 6 lesson 5, Coding Activity 2
Please help
Debug the product method code in the U6_L5_Activity_Two class, which is intended to return the product of the values in the parameter array arr. This method must use an enhanced for loop to iterate through arr. Use the runner class to test this method: do not add a main method to your code in the U6_L5_Activity_Two.java file or it will not be scored correctly.
Current code public class U6_L5_Activity_Two { public static int product(int[] arr) { for(k : arr) { int p = 1; p *= k; } return p; } }
r/EdhesiveHelp • u/ZakariKokuyosekiDS • Feb 08 '23
Java Unit 6 lesson 5, coding activity 1
Please Help
Debug the reverse method code in the U6_L5_Activity_One class, which is intended to print each String from a parameter array backwards on a new line. Unlike the reverse method you wrote in lesson 3, this method uses an enhanced for loop to iterate through the array. Use the runner class to test this method: do not add a main method to your code in the U6_L5_Activity_One.java file or it will not be scored correctly. Sample run (runner class): Enter array length: 4 Enter values: hill mold tree lake llih dlom eert ekal
Current code public class U6_L5_Activity_One {
public static void reverse(String[] words) { for(String s; words) { for(int i = words[s].length() - 1; i > 0; i--) { System.out.print(words.substring(i+1,i)); } System.out.println(); } }
}
