MCQs City stays free thanks to ads. Please turn off your ad blocker for this site so content and features keep working.
Computer Programming MCQs
Java concepts and its programming
Q
What will be output of following program? public class Test{public static void main(String[] args){byte b=127; b++; b++; System.out.println(b); } } ?