Which type of web architecture asset functions as a highly lightweight text data-interchange format, structured using basic key-value pairs that are exceptionally easy for JavaScript to parse natively? MCQ with Answer and Explanation

Which type of web architecture asset functions as a highly lightweight text data-interchange format, structured using basic key-value pairs that are exceptionally easy for JavaScript to parse natively?
A. CSS formatting style frameworks
B. JSON (JavaScript Object Notation)
C. Unencrypted text files
D. SMTP route configurations
Answer: Option B
Solution (By JKExamLibrary)
JSON is a language-independent, text-based format for storing and exchanging data. Its simple key-value structure makes it a popular choice for web APIs and modern web applications.

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
Which of the following security protocols adds an encrypted wrapper layer around a standard File Transfer Protocol channel to protect authentication variables?
A. FTPS (FTP over SSL/TLS)
B. Unencrypted HTTP link
C. Telnet console channel
D. SMTP route link

Correct Answer: Option A


Explanation:
FTPS is an extension to the standard File Transfer Protocol (FTP) that adds support for Transport Layer Security (TLS) and Secure Sockets Layer (SSL) cryptographic protocols.

This question belongs to: Computer Internet and Web Technologies
Question #2 Report Error
Which of the following HTTP status codes indicates that the request has succeeded and a new resource has been created?
A. 200 OK
B. 204 No Content
C. 202 Accepted
D. 201 Created

Correct Answer: Option D


Explanation:
201 Created is the status code for successful POST requests that result in the creation of a new resource.

This question belongs to: Computer Internet and Web Technologies
Question #3 Report Error
What mechanism does a web server implement to gracefully instruct a browser that an old web resource has changed its location permanently to a new URL address asset?
A. Altering the local computer DNS router configurations
B. Issuing an HTTP 301 Moved Permanently response code with the new location header
C. Issuing a general 500 Internal Error crash notification alert
D. Setting a temporary session tracking cookie inside memory

Correct Answer: Option B


Explanation:
An HTTP 301 redirect informs browsers and search engines that a page has permanently relocated, prompting them to update their links and pass SEO ranking history to the new URL.

This question belongs to: Computer Internet and Web Technologies