Which of these characterizes an object-oriented program?(1 point)Responsesdef inputName():        name = input("What is your name?")        return namedef inputName():         name = input("What is your name?")         return nameclass Name:        def __init__(self, name):                self.name = nameclass Name:         def __init__(self, name):                 self.name = nameprint("What is your name?")print("What is your name?")name = input("What is your name?")

1 answer

In object-oriented programming (OOP), the main concepts include the use of classes and objects. Among the provided responses, the ones that characterize an object-oriented program are:

class Name:      
    def __init__(self, name):              
        self.name = name

This snippet defines a class Name that has an initializer method (__init__) which takes an argument and assigns it to an instance variable (self.name). This encapsulates data (the name) within an object, which is a key principle of OOP.

The other snippets simply define functions or use basic input/output operations without any object-oriented structure.