Write a class called TV with attributes: channel, volumeLevel, on_Off_state. The default values should be 1 for channel (only channels 1 to 100 are allowed), 5 for volumeLevel (only volumeLevels 1 to 10 are allowed), and OFF for on_Off_state (only ON and OFF are allowed). The TV class should allow the user to create a default TV and a TV with given parameters for channel, volumeLevel, on_Off_state. User should be able to set the TV channel to any channel, or increment or decrement the channel within the channel range. User can only increment or decrement volumeLevel within the valid range. User should be able switch the TV ON or OFF. User should be able read the current state of TV (i.e. values of channel, volumeLevel, and on_Off_state)
Write a class called TV with attributes: channel, volumeLevel, on_Off_state. The default values should be 1 for channel (only channels 1 to 100 are allowed), 5 for volumeLevel (only volumeLevels 1 to 10 are allowed), and OFF for on_Off_state (only ON and OFF are allowed). The TV class should allow the user to create a default TV and a TV with given parameters for channel, volumeLevel, on_Off_state. User should be able to set the TV channel to any channel, or increment or decrement the channel within the channel range. User can only increment or decrement volumeLevel within the valid range. User should be able switch the TV ON or OFF. User should be able read the current state of TV (i.e. values of channel, volumeLevel, and on_Off_state).
Step by step
Solved in 4 steps with 1 images