Question: Which choice is not a valid Rails route?
- route "products/index", to: "products/index", via: :get
- match "products/index", to: "products#index", via: :get
- root "products/index"
- get "products/index"
Answer: The correct answer of the above question is Option A:route "products/index", to: "products/index", via: :get