📚 Practice Mode
C#, Perl, and Java Programming Fundamentals
Learn at your own pace with hints and detailed explanations
1 / 20
True/False
public class Sample{ public static void main(String[] args){ int i=5; if(i==5) throw new ArithmeticException("i is 5"); System.out.println(i); } } Does the code compiles fine?
- True
- False