Which parameter indicates a 'URL encoding' or 'Percent-encoding' mechanism's primary purpose? MCQ with Answer and Explanation

Which parameter indicates a 'URL encoding' or 'Percent-encoding' mechanism's primary purpose?
A. To convert non-ASCII or special characters within a URL into a safe format that can be reliably transmitted over HTTP
B. To compress big images inside web files to save network bandwidth
C. To replace secure HTTPS encryption keys with basic string variables
D. To hide domain location routes from search engines
Answer: Option A
Solution (By JKSSB Mock Tests)
URLs must only contain characters from a specific safe ASCII set. Characters outside this set are converted into a '%' followed by a hexadecimal code sequence (e.g., spaces become %20).

Discuss this Question (0)

No comments yet. Be the first to start the discussion!

Practice More Internet and Web Technologies Questions

Question #1
What does an 'Asymmetric Encryption' implementation use to secure web communications over HTTPS links?
A. A single shared secret password key for both operations
B. A localized cookie token combined with basic user credentials
C. A series of mechanical network router configuration keys
D. A mathematically linked key pair consisting of a Public Key and a Private Key

Correct Answer: Option D


Explanation:
Asymmetric cryptography utilizes a public key (available to everyone for data encryption) and a private key (kept secret by the server for data decryption).

This question belongs to: Computer Internet and Web Technologies
Question #2
What mechanism does a browser use to maintain persistent client-side data store pools across tabs using basic key-value pairs without expiration deadlines via JavaScript?
A. LocalStorage
B. DNS Registry Logs
C. RAM Buffers
D. Session Cookies

Correct Answer: Option A


Explanation:
The Web Storage API provides 'localStorage', allowing web applications to save data locally inside the user's browser with no built-in expiration timeline.

This question belongs to: Computer Internet and Web Technologies
Question #3
What is the purpose of the 'Expires' header in HTTP?
A. To indicate when the response is no longer valid
B. To specify the maximum age of the resource
C. To set the expiration time of a cookie
D. To control the cache

Correct Answer: Option A


Explanation:
The Expires header gives the date/time after which the response is considered stale, used for caching control.

This question belongs to: Computer Internet and Web Technologies