Computer Knowledge

Internet and Web

1,617 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 technology
  1. True

  2. False

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

Web browsers are responsible for rendering text using fonts available on the local system, and different computers have different font collections. When a specified font isn't available, browsers substitute with similar fonts from their pool. This is why web design specifies font families rather than single fonts, ensuring graceful degradation.

Multiple choice technology
  1. True

  2. False

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

Web pages can be tested and previewed locally by opening HTML files directly in a browser, without requiring an active internet connection. As long as all referenced resources (images, CSS, JavaScript) are also stored locally or cached, the page renders normally. This is standard practice during web development for rapid iteration.

Multiple choice technology
  1. High format Text Protocol

  2. HyperText Transport Protocol

  3. HyperThick Text Protocol

  4. HyperText Transfer Protocol

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

HTTP stands for HyperText Transfer Protocol, the foundation of data communication on the World Wide Web. Options A and C use incorrect words, and B says 'Transport' instead of 'Transfer'.

Multiple choice technology security
  1. Web Proxy

  2. XSS Scanner

  3. An insecure J2EE web application

  4. None of the above

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

OWASP WebGoat is a deliberately insecure J2EE web application designed for security training - it contains known vulnerabilities that students learn to identify and exploit. It is not a proxy, scanner, or tool but a practice target.

Multiple choice technology security
  1. Web Proxy

  2. XSS Scanner

  3. An insecure J2EE web application

  4. None of the above

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

WebGoat is a deliberately insecure J2EE web application developed by OWASP for educational purposes. It allows developers and security professionals to practice identifying and exploiting common web application vulnerabilities in a safe, controlled environment.

Multiple choice technology performance
  1. Windows Resource

  2. Network Delay Time

  3. Time to First Buffer Breakdown

  4. Page Download Time Breakdown

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

Page Download Time Breakdown graph breaks down web page download times into component phases including DNS resolution, connection time, SSL handshake, and server/response time. Time to First Buffer Breakdown shows server vs network time but doesn't focus on connection establishment details. Windows Resource monitors system health, and Network Delay Time shows network latency without the detailed breakdown.

Multiple choice technology performance
  1. Redirect Automatically

  2. Redirect on Instructions

  3. Follow Redirects

  4. Use Keep alive

  5. Follow on Instructions

Reveal answer Fill a bubble to check yourself
A,C,D Correct answer
Explanation

JMeter's HTTP Sampler provides three main options for request handling: 'Redirect Automatically' follows redirects without updating the URL, 'Follow Redirects' updates the URL after redirect, and 'Use KeepAlive' maintains persistent connections. Options B and E ('Redirect on Instructions', 'Follow on Instructions') are invalid/garbled options not found in JMeter.

Multiple choice technology performance
  1. Provide access to the information

  2. Plots the response times on a graph

  3. Shows details of sampler requests and responses

  4. Allows to insert Logic to the request

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

Listeners DO provide access to test information (A true), DO plot response times on graphs (B true), and DO show sampler request/response details (C true). Option D is FALSE because Listeners only view and record results - they don't insert logic. Logic Controllers and Pre/Post-processors handle logic insertion.

Multiple choice technology programming languages
  1. Session

  2. Application

  3. Response.Cookies

  4. Response.ViewState

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

Application state stores data that is accessible to all users across the entire application - it's global to the application. Session state is user-specific and isolated per user session. Cookies are stored on the client-side browser. ViewState is page-specific for maintaining state across postbacks within a single page. For data that must be accessible to ANY user regardless of who they are, Application state is the correct choice.

Multiple choice technology security
  1. Web Proxy

  2. XSS Scanner

  3. An insecure J2EE web application

  4. None of the above

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

OWASP WebGoat is a deliberately insecure J2EE web application created as a learning platform for developers and security professionals to practice identifying and exploiting common web application vulnerabilities. It includes lessons on SQL injection, XSS, authentication bypass, and other OWASP Top 10 vulnerabilities. It is not a scanning tool or proxy.

Multiple choice technology web technology
  1. Blogger

  2. Picasa

  3. Hotmail

  4. Delicious

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

Jack Smith co-founded Hotmail in 1996, one of the first web-based email services. Hotmail was later acquired by Microsoft and became MSN Hotmail. The other options (Blogger, Picasa, Delicious) were founded by different people: Blogger by Evan Williams, Picasa by Lars Ahlin and others, Delicious by Joshua Schachter.

Multiple choice technology web technology
  1. Personal Home Page

  2. Personal Hypertext Processor

  3. PHP: Hypertext Preprocessor

  4. Private Home Page

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

PHP originally stood for 'Personal Home Page' when created by Rasmus Lerdorf in 1994. As the language evolved into a general-purpose scripting language, the meaning was changed to a recursive acronym 'PHP: Hypertext Preprocessor' to reflect its focus on server-side web development and distinguish it from its original purpose. This recursive naming convention (like GNU = GNU's Not Unix) is common in open source projects.

Multiple choice technology
  1. "lo"

  2. "hello world"

  3. "mary had a little lamb"

  4. "cyberspace , the final frontier

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

The first message sent over ARPANET was 'LO' - the system crashed after typing 'LOG' from 'LOGIN'. This occurred on October 29, 1969, between UCLA and Stanford Research Institute.

Multiple choice technology web 2.0
  1. W3C

  2. W3Schools

  3. WYSIWYG

  4. WHATWG

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

The development of HTML5 was initiated by the Web Hypertext Application Technology Working Group (WHATWG) in 2004. The World Wide Web Consortium (W3C) later joined the effort to adopt and co-develop it. W3Schools and WYSIWYG editors are unrelated to its creation, making WHATWG and W3C correct.