What is the output of the following unknown


What is the output of the following unknown method? public class Strange { public static final int MAX = 5; public static void unknown() { int number = 0; for (int count = MAX; count >= 1; count--) { number += (count * count); } System.out.println("The result is: " + number); } public static void main(String[] args) { unknown(); } }

Request for Solution File

Ask an Expert for Answer!!
Basic Computer Science: What is the output of the following unknown
Reference No:- TGS0571341

Expected delivery within 24 Hours