Java - Spoken Tutorials - Assignments
			Funded by the National Mission on Education through ICT
	-------------------------------------------------------------------------------------

Static Variables

(a) Design a class CarService to represent a Car Service Station

(b) This class should contain variables to represent the following details
    - Name of the Service Station
    - Car make, model and regno - which are in for service
    - No. of Cars in for Service

(c) Identify the instance variables and static variables

(d) Declare them using suitable keywords

(e) Define a constructor to initialise the values for Car make, model and regno

(f) Define a method show() to print the values of all the variables

(g) Also create a Demo class containing the main method to verify the results
    - Create a few objects of CarService
    - Invoke the show() method using these objects
    - Also access the static variables directly using the class name