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); }

Respuesta :

Answer:

The output of the given code is "5".

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.  

Answer:

d

Explanation:

d

ACCESS MORE
ACCESS MORE
ACCESS MORE
ACCESS MORE