Seudónimo Seudónimo 11-01-2021 Computers and Technology contestada Language: JAVAGiven the following method:public void call(int k){if (k > 1){call(k - 2);call(k - 1);System.out.print(k);}}What will be the output by the command call(5);?a) 3 4 5 b) 2 2 3 4 5c) 2 3 2 3 4 5d) 2 3 2 2 3 4 5e) 2 3 2 3 2 3 4 5Please explain this if possible--thanks in advance!