ITSC 1213 2025
update|comprehensive questions
and verified answers (complete
solutions) A+ GRADE!! Questions
and Correct Answers/ Latest
Update / Already Graded
What must you include in the subject line of all emails to Lehmann?
Ans: ITSC 1213 - 001
What is the name of the IDE we are using in lecture and lab?
Ans: BlueJ
A java project is a collection of?
Ans: Classes
The file extension of a Java source code file is?
Ans: .class
Java is a compiled language and the compiler produces an executable?
Ans: False
Which of the following is not a Java primitive data type?
Ans: String
If you do not write a constructor method, Java provides one for you?
, [2]
Ans: True
What operator is used to create object from class definitions?
Ans: New
By convention, all class names?
Ans: Start with an uppercase letter, and then use camel notation
The term for declaring the fields of a class and methods that change the values of these fields
is in one class definition file is?
Ans: Encapsulation
Which method is used to build an object?
Ans: Constructor Method
The name of your source code file must?
Ans: Be the exact same as the public class in the file
A class is a?
Ans: Template
You can only create one instance of a class?
Ans: False
Where does execution of a Java application start?
Ans: In public static void main in a public class
Where are all fields declared?
Ans: Outside of any method