1: //Question1.java 2: 3: public class Question1 4: { 5: public static void main(String[] args) 6: { 7: methodA(3); 8: } 9: 10: public static void methodA 11: ( 12: int n 13: ) 14: { 15: if (n < 1) 16: System.out.println('B'); 17: else 18: { 19: methodA(n - 1); 20: System.out.println('R'); 21: } 22: } 23: }