Python Forum
This is an open book home assignment but i really need your help
Thread Rating:
  • 1 Vote(s) - 4 Average
  • 1
  • 2
  • 3
  • 4
  • 5
This is an open book home assignment but i really need your help
#1
2.Consider the following statements.
*1 Class attributes are more suitable for sharing data across instances of a class as opposed to instance variables.
*2 Instance variables always point to a common location in memory regardless of which instance of a class is used to access them
*3 Abstraction cannot be utilized without Inheritance
*4 In order to enable access to instance variables, functions must have a “self” argument.
*5 Composition represents an “is-a” relationship between two entities.

Which combination of statements is true?

4, 3, 5, 1

1, 2, 3, 5

2, 3, 5, 4

5, 2, 4, 1

3. Which of the following scenarios depict true inheritance.
NB: -> represents the is a/an

*Vehicle -> Car -> Truck
*Pet -> Animal -> Dog
*Person -> Employee -> Manager
*User -> Admin -> Guest


5. The code class X(object): def __init__(self, J) can be interpreted as:
*Make a subclass X of class object that defines a constructor method that takes self and J as parameters
*Make a class X of object with a constructor method that has as parameters self and J
*Make a class X that inherits from an object class and has defined a constructor method that accepts as arguments the values of self and J
*All of the above
Reply
#2
We will not do your homework for you, but will be glad to answer questions
about the code that you write.
Reply
#3
actually you don't even need to write a code - that is a test and you need to study the learning material that you have and answer the questions.
Reply
#4
You didn't provide any info on what you need help on, so let's start at the top:

Quote: 2.Consider the following statements.
*1 Class attributes are more suitable for sharing data across instances of a class as opposed to instance variables.
What are your thoughts on this?
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  a Home language TDH 4 3,403 Oct-17-2017, 03:30 PM
Last Post: buran

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020