What does the 's' in HTTPS stand for? MCQ with Answer and Explanation

What does the 's' in HTTPS stand for?
A. Secure
B. Simple
C. System
D. Standard
Answer: Option A
Solution (By JKSSB Mock Tests)
HTTPS stands for HyperText Transfer Protocol Secure, indicating that communication is encrypted using SSL/TLS.

Discuss this Question (0)

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

Practice More Internet and Web Technologies Questions

Question #1
Which of the following is an example of a static web page?
A. A page that updates automatically
B. A page that shows user-specific data
C. A page that displays the same content every time
D. A page with a login form

Correct Answer: Option C


Explanation:
A static web page is delivered exactly as stored and does not change based on user interaction or server-side processing.

This question belongs to: Computer Internet and Web Technologies
Question #2
What is the purpose of the 'Session' in web applications?
A. To maintain state across multiple requests from the same user
B. To handle form submissions
C. To store static files
D. To manage database connections

Correct Answer: Option A


Explanation:
A session is a server-side storage that persists user-specific data (like login status) across requests, using cookies or URL rewriting.

This question belongs to: Computer Internet and Web Technologies
Question #3
Which of the following is a security feature that prevents a web page from being loaded in an iframe on a different domain?
A. Content-Security-Policy
B. CORS
C. X-Frame-Options
D. Same-origin policy

Correct Answer: Option C


Explanation:
X-Frame-Options specifically controls whether a page can be embedded in frames, preventing clickjacking.

This question belongs to: Computer Internet and Web Technologies