Computer Knowledge
Internet and Web
1,557 Questions
The Internet and Web encompass global networks, web portals, browsers, and online communication tools. This hub provides questions on basic internet concepts, email structures, and web terminology. Strong knowledge here is vital for scoring well in computer awareness sections.
Web browsersEmail conceptsWorld Wide WebWeb portalsInternet terminology
Internet and Web Questions
-
Track a user's e-mail
-
Add statefulness to the originally stateless HTTP
-
Disclose a user's identity
-
Add history information to the originally stateless HTTP
B
Correct answer
Explanation
HTTP is inherently stateless, meaning each request is processed independently without memory of previous interactions. Cookies solve this by storing small pieces of data on the client side that are sent back with subsequent requests, allowing the server to maintain session state and track user activity across multiple page views. This enables features like shopping carts, login persistence, and personalized content.
-
Evercookie is a javascript API available that produces extremely persistent cookies in a browser
-
Evercookie is a cookie anonymysing tool
-
Evercookie is a FireFox Plugin
-
Evercookie is a cookie pollution tool
A
Correct answer
Explanation
An Evercookie is a JavaScript-based API that produces extremely persistent cookies in a browser. It achieves this by storing cookie data in several redundant storage mechanisms (such as Local Storage, IndexedDB, Flash Cookies, Silverlight, and browser cache) and recreating deleted cookies from surviving copies.
-
Impression
-
ImageUrl
-
UrlNavigate
-
Keyword
-
AlternateText
C
Correct answer
Explanation
This is an invalid property. The correct name of the property is NavigateUrl, which is used to point to the URL where the control will be transferred if the user clicks an advertisement.
A
Correct answer
Explanation
We can use the mailto command in an A HREF link tag to create an email link. Clicking on the link will invoke the clients' email client automatically.
-
href
-
hash
-
hostname
-
pathname
-
host
A
Correct answer
Explanation
The href property of the 'Location' object returns the entire path or URL of the current page.
-
ShareService
-
ShareServiceProvider
-
ShareActionProvider
-
Sharing
-
Explicit Intent
-
Implicit Intent
-
Special Intent
-
None of above
B
Correct answer
Explanation
Using Intent.ACTION_VIEW with a URI creates an Implicit Intent because you're specifying an action and data, but not the exact component to handle it. Android resolves the component at runtime based on the registered intent filters. Explicit intents specify the component class directly (new Intent(context, MyClass.class)).
-
Service
-
Intents
-
Content Provider
-
Activity
C
Correct answer
Explanation
Content Providers are the Android component designed specifically for sharing structured data between applications. Services run background operations, Intents enable messaging between components, and Activities display UI - none of these are primarily for data sharing across apps.
-
Internet chat
-
Web browsing
-
E-mail
-
Ping
-
wget
-
lynx
-
ping
-
traceroute
B
Correct answer
Explanation
The 'lynx' command provides a way to browse the web on a text- only terminal.
-
has not been used for the longest time in the past
-
will not be used for the longest time in the future
-
has been used least number of times
-
has been used most number of times
B
Correct answer
Explanation
Optimal page replacement algorithm assumes that the pages that will come in future are already known, so replacement of the page which will not be used in future occurs.
C
Correct answer
Explanation
<a href = http://www.company.com> company </a> the format is only correct to create a hyperlink. Because we use <a href = “Link”> link name</a> URL to be displayed on browser. Standard tag to make the text as hyperlink, whereas < a url > and <a> and <a name> are invalid tags.
-
It gives extra path information that follows the name of the CGI program on the URL.
-
It gives extra path information that follows the name of the CGI program.
-
It gives the username as defined in the fRFC 931.
-
It is the virtual path to the CGI program being executed.
A
Correct answer
Explanation
In CGI programming, PATH_INFO is the extra path information that follows the script name in a URL. For example, in '/cgi-bin/script.py/extra/path', the '/extra/path' portion is the PATH_INFO data available to the CGI program.
-
<HTML>
-
<form>
-
<start>
-
<title>
A
Correct answer
Explanation
HTML documents must begin with the tag as the root element that contains all other elements. The tag is for creating forms, is not a valid HTML tag, and sets the page title but appears inside , not at the document start.
-
<a href = “url” target = “new”>
-
<a href = “url” target = “-blank”>
-
<a href = “url”.new>
-
<a href = “url” target =”open”>