Ask Question
17 September, 20:41

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

+5
Answers (1)
  1. 17 September, 21:37
    0
    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.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “What is the output of the following code snippet? public static int assignPriority (int priority) { return priority + 2; } public static ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers