Asked by Clayton Carter on Jun 06, 2024

verifed

Verified

What type of program would have a class named Student with objects called fullTime and partTime?

A) machine language program
B) object-oriented program
C) markup language program
D) procedural language program

Object-Oriented Program

A programming paradigm based on the concept of "objects", which can contain data and code to manipulate that data.

Markup Language Program

A system for annotating a document in a way that is syntactically distinguishable from the text, used to structure and display text and multimedia documents.

  • Understand the fundamentals of object-oriented programming and software development processes.
verifed

Verified Answer

AB
Austin BrowneJun 07, 2024
Final Answer :
B
Explanation :
The presence of a class named Student with objects called fullTime and partTime indicates that the program is object-oriented. The class Student is a blueprint for creating objects that represent students, while fullTime and partTime are two separate objects/instances of the Student class, indicating that the program treats them as separate entities with different properties and behaviors. This is a hallmark of object-oriented programming. Machine language, procedural language, and markup language programs do not typically use classes or objects in this way.