Which HTTP status code indicates that a requested page has been permanently moved? MCQ with Answer and Explanation

Which HTTP status code indicates that a requested page has been permanently moved?
A. 302
B. 301
C. 404
D. 400
Answer: Option B
Solution (By JKExamLibrary)
HTTP 301 means Moved Permanently, indicating the resource has been assigned a new permanent URI. 302 is temporary redirect, 400 is Bad Request, and 404 is Not Found.

This question belongs to: Computer Internet and Web Technologies

Discuss this Question (0)

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

Practice More Internet and Web Technologies Questions

Question #1 Report Error
What is the purpose of a web browser's 'incognito' or 'private' mode?
A. To not save browsing history, cookies, and form data locally
B. To encrypt all traffic automatically
C. To prevent websites from tracking you
D. To block all ads

Correct Answer: Option A


Explanation:
Private browsing mode does not save browsing history, cookies, or form data after the session ends, but does not make the user invisible to websites or ISPs.

This question belongs to: Computer Internet and Web Technologies
Question #2 Report Error
Which type of web software layout strategy automatically adjusts page spacing, element scaling, and images to look optimal across multiple screen sizes (Desktop, Tablet, Mobile phone)?
A. Monolithic Template Logic
B. Static Grid Layout
C. Fixed Frame Presentation
D. Responsive Web Design

Correct Answer: Option D


Explanation:
Responsive Web Design uses fluid grids, flexible images, and CSS media queries to dynamically adjust the layout based on the user's device screen width.

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

Correct Answer: Option C


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