Exam Coverage
Exam coverage for the APSU CSCI 2010 Final Exam includes the
fundamental concepts, principles, and practical applications of
computer science and programming typically covered throughout the
course. It focuses on problem-solving methodologies, algorithm
development, program design, data types, variables, operators,
control structures, functions, and object-oriented programming
concepts. The exam also evaluates understanding of software
development practices, debugging techniques, program testing, and
code analysis.
,Class
specify the attributes of an object and the actions an object can take
UML Diagram
Can be used to summarize the properties of a class
,Instance Variable
can be accessed outside of the class using the "." operator
Method
defines an action that an object can perform, it can also be called
outside of the class by using the "." operator
, Access Modifiers
Used to specify how a class, method, or instance variable can be
accessed
Public Method or instance variable
a method that is accessible to another method of any other class
Private Method or instance variable
a method that is only accessible to methods in the same class