Question: Write a java program that check the type of the value and determine the data type of the value. In this program, you will develop

Write a java program that check the type of the value and determine the data type of the value. In this program, you will develop a Type checking program based on a class called Type. Create another class called Type Tester in which main method is defined that includes the following code: class Type Tester publik static void main(String[] args) { Type theType = new Type(); theType.printType(true); If the argument of theType.printType(true) is true or false, it will invoke a method inside Type class and print a message true is a boolean. If it is string Hello World then it should display "Hello World is String. The sample output format is as follows: C:\Users\janna\Desktop\Programming in Java\Mid Term Exam\Q1>java Type Tester true is a boolean
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
