Practice: Public vs. Private access modifiers
In the "Public vs. private access modifiers" tutorial, we learned how and when to use the public and private access modifiers. While public code can be approached from outside the class, private code can be accessed only from within the class.
In the following section, we will be able to practice everything that we learned about the use of the public and private access modifiers by writing our own code.