1. Static Keyword
  2. Virtual Keyword
  3. Abstract Keyword
  4. Final Keyword
  5. Explicit keyword
  6. This Keyword
  7. new Keyword
  8. const keyword
  9. super keyword

1. Static Keyword

Static is something which is same for all instances

Example 1

class Vehicle {
    static var numberOfWheels = 4  // Static property belonging to the type
    var num = 23                   // Instance property belonging to each instance
}

// Accessing static property using the class name
print(Vehicle.numberOfWheels) // Outputs: 4

// Creating an instance of Vehicle and accessing an instance property
print(Vehicle().num) // Outputs: 23