Home
You may like this!
61.
Which of the following best describes a web application?
  • A.
    Code designed to be run on the client/li>
  • B.
    Code designed to be run on the server
  • C.
    SQL code for databases
  • D.
    Targeting of web services
  • Answer & Explanation
  • Report
Answer : [B]
Explanation :
A web application is code designed to be run on the server with the results sent to the client for presentation.
Report
Name Email  
62.
__________ is a client-side scripting language.
  • A.
    JavaScript
  • B.
    ASP
  • C.
    ASP.NET
  • D.
    PHP
  • Answer & Explanation
  • Report
Answer : [A]
Explanation :
JavaScript is a client-side scripting language as opposed to languages such as ASP and ASP.NET.
Report
Name Email  
63.
Which of the following is an example of a server-side scripting language?
  • A.
    JavaScript
  • B.
    PHP
  • C.
    SQL
  • D.
    HTML
  • Answer & Explanation
  • Report
Answer : [B]
Explanation :
PHP is a server-side language that has its actions handled by the server before delivering the results to the requester.
Report
Name Email  
64.
Which of the following is used to access content outside the root of a website?
  • A.
    Brute force
  • B.
    Port scanning
  • C.
    SQL injection
  • D.
    Directory traversal
  • Answer & Explanation
  • Report
Answer : [D]
Explanation :
Directory traversals are used to browse outside the root of the site or location and access files or directories that should otherwise be hidden.
Report
Name Email  
65.
Which of the following can prevent bad input from being presented to an application through a form?
  • A.
    Request filtering
  • B.
    Input validation
  • C.
    Input scanning
  • D.
    Directory traversing
  • Answer & Explanation
  • Report
Answer : [B]
Explanation :
Input validation is the process of checking input for correctness prior to its being accepted by an application. Unlike filtering, which works on the server side, validation works on the client side and prevents bad input from making it to the server.
Report
Name Email