#Pseudocode Exam Question
1 messages · Page 1 of 1 (latest)
We can't know if you did or not and we don't do other people's homework (see the #📜・rules ) Instead, show us what you did and we can tell you if it's good or not and what you could improve.
Ps. Please chose a better more descriptive title and chose only the tags that are related to your problem. Otherwise I'll close and lock this post.
OK thanks
Take a minute to read the #📄・posting-guidelines
class Video
private attributes:
__name
__views
__star_rating
constructor method Video(name)
set __name to name
set __views to 0
set __star_rating to 3
method get_name()
return __name
method get_views()
return __views
method get_star_rating()
return __star_rating
method set_name(name)
set __name to name
method set_views(views)
set __views to views
method set_star_rating(star_rating)
set __star_rating to star_rating
Pseudocode Exam Question