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

Multiple choice php
  1. Hypertext Preprocessor

  2. Pre Hypertext Processor

  3. Pre Hyper Processor

  4. Pre Hypertext Process

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

PHP is a recursive acronym that stands for 'PHP: Hypertext Preprocessor'. Originally it stood for 'Personal Home Page', but as the language evolved, the name was changed to reflect its primary purpose as a server-side scripting language for web development.

Multiple choice java
  1. First tier.

  2. Second tier.

  3. Third tier.

  4. Fourth tier

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

In the classic multitiered J2EE architecture: Tier 1 is the client tier (browsers, desktop apps), Tier 2 is the web server/presentation tier (servlets/JSP), Tier 3 is the business logic tier (EJBs), and Tier 4 is the EIS tier (databases, legacy systems). The browser runs on the client machine, making it the first tier. Tiers represent logical layers, not physical servers.

Multiple choice .net
  1. Application

  2. Association

  3. Data

  4. Logical

  5. Presentation

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

To solve this question, the user needs to know about the layers of the OSI (Open Systems Interconnection) model, which is a conceptual model that characterizes and standardizes the communication functions of a telecommunication or computing system without regard to its underlying internal structure and technology.

The layer exemplified by a web server is the Application layer, which is responsible for providing network services to the end-user applications. This layer provides services to the software applications that run on top of the network, such as web browsers (e.g., Chrome, Firefox), email clients (e.g., Outlook, Thunderbird), and file transfer clients (e.g., FTP, SFTP).

Now, let's go through each option and explain why it is right or wrong:

A. Application: This option is correct because a web server is an application that provides network services to other applications.

B. Association: This option is incorrect because there is no layer in the OSI model called Association.

C. Data: This option is incorrect because the Data layer is responsible for providing reliable end-to-end transmission of data between two devices.

D. Logical: This option is incorrect because the Logical layer (also known as the Network layer) is responsible for routing data between different networks.

E. Presentation: This option is incorrect because the Presentation layer is responsible for translating, encrypting, or compressing the data into a format that can be understood by the Application layer.

Therefore, the answer is: A. Application.

Multiple choice .net
  1. HTML source

  2. Text file

  3. URL

  4. Both a and b.

  5. All of the above.

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

View state is stored in a hidden form field called __VIEWSTATE within the page's HTML source. It's encoded and sent to the server with each postback, then reconstructed. This is why view state increases page size.

Multiple choice .net
  1. HTML source

  2. Text file

  3. URL

  4. Both a and b.

  5. All of the above.

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Query string data is appended to the URL after the ? character. You can see it in the browser address bar. This makes it visible and bookmarkable, but unsuitable for sensitive information.

Multiple choice .net
  1. HTML source

  2. Text file

  3. URL

  4. Both a and b.

  5. All of the above.

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Cookies are stored as small text files on the client's computer by their browser. The browser sends cookies back to the server with each request. They persist across sessions (if expiration is set) and are domain-specific.

Multiple choice .net
  1. Cookies

  2. Query string

  3. View state

  4. Both a and b.

  5. All of the above.

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

View state is an ASP.NET-specific client-side state management technique that uses a hidden field to preserve page state between postbacks. Cookies and query strings exist across all web platforms and are not ASP.NET-specific.

Multiple choice .net
  1. Cookies

  2. Query string

  3. View state

  4. Both a and b.

  5. All of the above.

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

To solve this question, the user needs to be familiar with client-side web development techniques.

The correct answer is option A, which is cookies.

Explanation:

Cookies are small text files that are stored on the user's computer by a website. They are used to store user preferences, login information, and other relevant data. Since cookies are stored on the user's computer, they can be easily disabled by the end-user. Users can disable cookies in their browser settings or use a browser extension to block them.

Option B, query strings, cannot be disabled by the end-user. Query strings are a part of the URL, and they are used to pass data between a web server and a client. They are not stored on the user's computer, so they cannot be disabled by the end-user.

Option C, view state, is a technique used in ASP.NET web development to store state information on the client-side. View state is not a client-side technique that can be disabled by the end-user. It is generated by the server and sent to the client as a hidden field in an HTML form.

Option D, both A and B, is incorrect because query strings cannot be disabled by the end-user.

Option E, all of the above, is incorrect because view state cannot be disabled by the end-user.

Therefore, the correct answer is:

The Answer is: A. Cookies

Multiple choice html
  1. Portable

  2. Discrete

  3. Uniform

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Relative paths make links portable because they reference files relative to the current document's location (like '../images/photo.jpg'). If you move your entire site to a different folder or server, relative links still work since the file relationships stay the same.

Multiple choice html
  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

This is correct because HTML specifies font families (like 'Arial, sans-serif') but doesn't guarantee which specific font a computer has. Each browser renders text using available fonts on that system, substituting alternatives if requested fonts are missing, causing display variation across computers.

Multiple choice iis-server
  1. Web Application Stress Tool

  2. Microsoft Operations Manager

  3. Traffic Volume Manager Tool

  4. Microsoft Traffic Management Tool

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The Web Application Stress Tool (WAST) is Microsoft's tool for simulating multiple concurrent users connecting to a web server. It tests how IIS handles load by mimicking real-world traffic patterns. Microsoft Operations Manager (MOM) is for monitoring, and the other 'Traffic' options are fictional or misnamed distractors.