Question: Given following method, answer the questions. public class Question4{ //given two integers max and min, method returns a random integer between max and min. public
Given following method, answer the questions. public class Question4{ //given two integers max and min, method returns a random integer between max and min. public static int randint(int max, int min) return ( min + (int) (Math.random() * (max - min + 1))); } 1. What are the formal parameters of the randint method? ii. What is the return typeof the randint method? iii. What is the signature of the randint method? iv. Write a statement to invoke the randint method with two arguments 100 and 10. The return value should be assigned to an int type variable. Edit View Insert Format Tools Table
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
