1. To protect application from cross-site request forgery attacks, which of the following should be included in forms? {{ secure }} {{ csrf_field() }} {{ protect() }} {{ csrf_protect() }}…
1. Which of the following will produce a value of “83” as its output? echo intval(“0123”, 8); echo (int) 083 echo (int) 123; echo intval(“0123”); Answer : echo intval(“0123”, 8);…