LARAVEL Routing MCQ

Laravel MCQ
  1. Home
  2. Tutorials
  3. Laravel
  4. Routing
  5. Multiple Choice Question

(1) Which of the following route can be used to catch all http requests in place of 404.

A) Route::all(
B) Route::last(
C) Route::fallback
D) Route::404(

(2) In Laravel which of the following route is used to match all HTTP verbs?

A) Route::take
B) Route::any
C) Route::match
D) Route::all

(3) Which of the following dynamic route is used to specify more than one HTTP verbs in a single route ?

A) Route::match
B) Route::any
C) Route::catch
D) Fallback

(4) In which of the following HTTP request parameters are displayed in URL?

A) GET
B) POST
C) Both
D) None

(5) Which of the following HTTP verb is not available in Laravel application?

A) get
B) post
C) catch
D) patch
Comments
Login to TRACK of Comments.