24.5k views
0 votes
What is the output of the following code snippet? public static int assignPriority(int priority) { return priority + 2; } public static void main(String[] args) { int priority = assignPriority(3); System.out.println("Priority: " + priority); }

2 Answers

3 votes

Answer:

d

Step-by-step explanation:

d

User Zahirabbas
by
5.2k points
5 votes

Answer:

The output of the given code is "5".

Step-by-step explanation:

In the given code a method "assignPriority" is declared, which accepts an integer parameter "Priority", and inside the method, it will return an integer variable "Priority" value with add a number "2".

  • This method uses int as a return type, which means, it will return an integer value.
  • In the main function, an integer variable "Priority" is declared, that holds function return value, and in calling time it will accept a value that is "3", at the last print method prints its value.

User Will Angley
by
6.0k points