1 package com.twisters;
2 public class NoConstructor {
3
4 boolean isConstructor = false; //No changes permitted to this line
5
6 /* No Code may be added or changed in main*/
7 public static void main(String[] args) {
8 NoConstructor noConstructor = new NoConstructor();
9 System.out.println(noConstructor.isConstructor); //Prints true
10 }
11 }