I’m pretty sure D but it should be like $B2
hola no conozco el toldo, pero necesito puntos cerebrales tan lo siento
Python Code:
class Dog:
""" Dog class definition """
# data attribute species as part of the class Dog
species = "Canis familiaris"
def __init__(self, _name, _breed):
""" Constructor """
# Assigning values
self.name = _name
self.breed = _breed
self.tricks = []
def teach(self, trick):
""" add a passed string parameter to tricks """
# Adding to list
self.tricks.append(trick)
# Printing message
print(self.name + " knows " + trick)
def knows(self, chkStr):
""" check whether a passed string parameter is in the dog’s list of tricks """
# Checking in tricks list
if chkStr in self.tricks:
# Printing message
print("Yes, " + self.name + " knows " + chkStr)
else:
# Printing message
print("No, " + self.name + " doesn't know " + chkStr)
A general purpose application is often called a 'off-the-shelf'. It is a kind of software that one can use at home and school. Most general-purpose applications use a graphical user interface that displays graphical elements called icons to represent familiar objects.
The graphical user interface is simply defined as a type of user interface that gives users permission to interact with electronic devices via the aid of graphical icons and audio indicator such as primary notation.
- General purpose application software is simply defined as a type of application that is used for different kind of tasks.
It is not known to be able to perform more than one function. For example, a word processor.
Learn more from
brainly.com/question/2919813