Java & Internet Programming

Reviewed by Editorial Team
The ProProfs editorial team is comprised of experienced subject matter experts. They've collectively created over 10,000 quizzes and lessons, serving over 100 million users. Our team includes in-house content moderators and subject matter experts, as well as a global network of rigorously trained contributors. All adhere to our comprehensive editorial guidelines, ensuring the delivery of high-quality content.
Learn about Our Editorial Process
| By Omedutechhp
O
Omedutechhp
Community Contributor
Quizzes Created: 1 | Total Attempts: 290
| Attempts: 290 | Questions: 24
Please wait...
Question 1 / 24
0 %
0/100
Score 0/100
1. HTML stands for Hypertext ___________ Language.  

Explanation

HTML stands for Hypertext Markup Language. It is a standard language used for creating and structuring the content of web pages. Markup refers to the process of adding tags and elements to text in order to define its structure and presentation on a web page. HTML uses markup tags to define headings, paragraphs, links, images, tables, and other elements that make up a web page. By using HTML markup, web developers can create interactive and visually appealing websites that can be accessed and displayed correctly by different web browsers.

Submit
Please wait...
About This Quiz
Web Technologies Quizzes & Trivia

This quiz covers key concepts in JAVA and Internet Programming, assessing knowledge on network structures, HTML, Java development history, and the inception of web browsers. It's designed to enhance understanding of web technologies and Java programming, crucial for aspiring developers.

Tell us your name to personalize your report, certificate & get on the leaderboard!
2. System.out.println();

Explanation

The given code snippet is using the System.out.println() method to print something, but the content to be printed is missing. Therefore, the correct answer cannot be determined without the missing information.

Submit
3. URL Means?

Explanation

A URL stands for Uniform Resource Locator, which is a reference or address to a resource on the internet. It is used to locate and access specific web pages, documents, images, or any other type of file. The URL consists of several parts, including the protocol (such as HTTP or HTTPS), the domain name or IP address of the server, and the path to the specific resource. By using a URL, users can easily navigate and access different resources on the internet.

Submit
4. ______________ Tag is used to give title to the document.

Explanation

The correct answer is "title" because the title tag is used in HTML to give a title to the document. This tag is placed between the head tags and is displayed as the title of the webpage in the browser's title bar or tab. It helps in providing a brief description of the webpage's content and improves search engine optimization.

Submit
5. Internet s a ____________of networks.

Explanation

The correct answer is "network" because the internet is a collection of interconnected networks. It is a global system of interconnected computer networks that use the Internet Protocol Suite (TCP/IP) to link devices worldwide. These networks are connected through various technologies such as wired and wireless connections, allowing for the exchange of data and communication between devices and users across the globe.

Submit
6. ______________command converts the source code to internediate bytecode.

Explanation

The javac command is used to compile Java source code into bytecode. It takes the source code as input and generates the corresponding bytecode, which can then be executed by the Java Virtual Machine (JVM). The bytecode is an intermediate representation of the code that is platform-independent and can be executed on any device or operating system that has a JVM installed. Therefore, the correct answer is javac.

Submit
7. Strings are always specified in

Explanation

Strings in programming are typically specified within double quotes. This is because double quotes are the standard way to denote a string literal in many programming languages. Using double quotes makes it clear to the compiler or interpreter that the characters within the quotes should be treated as a string of text rather than as code or a variable. Other options such as single quotes, braces, or square brackets are not commonly used to specify strings in programming.

Submit
8. First Web Browser Hot Java was developed in_____________

Explanation

The correct answer is 1993. In 1993, the first web browser called Hot Java was developed.

Submit
9. System.println.out();

Explanation

The given code is incorrect because it has a syntax error. The correct syntax for printing in Java is "System.out.println();" with a capital "S" in "System". Therefore, the correct answer is False.

Submit
10. The java package provides classes to support input and output operations

Explanation

The correct answer is java.io. This package in Java provides classes that support input and output operations. It includes classes for reading and writing files, as well as classes for working with streams, readers, and writers.

Submit
11. Which of the following is a software application that helps to view and navigate information on the web.

Explanation

A web browser is a software application that allows users to view and navigate information on the web. It is used to access websites, display web pages, and interact with various web content, such as text, images, videos, and links. Web browsers provide a user-friendly interface and support features like bookmarks, history, and tabbed browsing to enhance the browsing experience.

Submit
12. Keywords are the ______________ words that have special significance in any language.

Explanation

Keywords are the pre-defined words that have special significance in any language. These words are reserved and cannot be used for any other purpose. In programming languages, keywords are used to define the syntax and structure of the code. They have predefined meanings and functions, and using them inappropriately can lead to syntax errors.

Submit
13. ISP Means?

Explanation

An ISP, or Internet Service Provider, refers to a company or organization that provides internet access to individuals and businesses. They offer various types of internet connections, such as broadband, DSL, or fiber optic, allowing users to connect to the internet and access online services, websites, and other resources. ISPs are responsible for maintaining the necessary infrastructure, network equipment, and servers to ensure reliable and fast internet connectivity for their customers.

Submit
14. Java was developed by a team headed by ______________

Explanation

Java was developed by a team headed by James Gosling.

Submit
15. The vector class contained in

Explanation

The correct answer is java.util because the Vector class is a part of the java.util package in Java. This package contains various utility classes and interfaces that are commonly used in Java programming, including the Vector class. The Vector class provides a dynamic array-like data structure that can be used to store and manipulate a collection of objects.

Submit
16. ARPANET Means

Explanation

ARPANET stands for Advanced Research Projects Agency Network. It was the first-ever operational packet switching network and the precursor to the modern-day internet. It was developed by the Advanced Research Projects Agency (ARPA) of the United States Department of Defense in the late 1960s. ARPANET was designed to connect various research institutions and universities, allowing them to share resources and collaborate on research projects. It played a significant role in the development of networking technologies and protocols that are still used today.

Submit
17. Java exception handling is governed by the following five keywords

Explanation

The correct answer is the list of five keywords that govern Java exception handling: try, catch, finally, throw, and throws. These keywords are used in the syntax and semantics of exception handling in Java programs. The "try" keyword is used to enclose a block of code that may throw an exception, while the "catch" keyword is used to handle the exception if it occurs. The "finally" keyword is used to specify a block of code that will always be executed, regardless of whether an exception is thrown or caught. The "throw" keyword is used to manually throw an exception, and the "throws" keyword is used to declare that a method may throw a particular type of exception.

Submit
18. The Life Cycle of an applet begins when it is first loaded and the _________ method is invoked.

Explanation

The correct answer is "init()". The life cycle of an applet starts when it is first loaded and the "init()" method is invoked. This method is responsible for initializing the applet and is typically used to set up any necessary variables or resources.

Submit
19. The return type of a constructor is

Explanation

The return type of a constructor is "none" because constructors do not have a return type. They are special member functions that are used to initialize objects of a class. When an object is created, the constructor is automatically called and it is responsible for initializing the object's data members. Since constructors do not return any value, their return type is "none".

Submit
20. ___________________method replaces destructor function in java.

Explanation

In Java, the finalize method replaces the destructor function. The finalize method is called by the garbage collector before an object is destroyed. It allows the object to perform any necessary cleanup operations before it is removed from memory. The finalize method is declared in the Object class and can be overridden in any class.

Submit
21. The keywords ___________ and ___________ are reserved words but they are not used.

Explanation

The keywords "cont" and "goto" are reserved words in programming languages, but they are not commonly used. These keywords are typically used for control flow and looping mechanisms, such as "continue" and "goto" statements. However, using these keywords can make the code more complex and harder to understand, so they are often avoided in favor of alternative control flow structures.

Submit
22. Java is a programming language developed by ____________________  

Explanation

Java is a programming language developed by Sun Microsystems.

Submit
23. Public static void main(string args[ ])

Explanation

The given code snippet has a syntax error. The correct syntax for the main method in Java is "public static void main(String[] args)". Therefore, the correct answer is False.

Submit
24. The_______________ is a collection of linked documents or pages,stored  on millions of computers and distributed accross the internet.

Explanation

A home page is a web page that serves as the starting point for a website. It is the main page of a website that provides links to other pages within the site. The home page is typically the first page that users see when they visit a website. It can contain a variety of information, such as navigation menus, search bars, and featured content. In the context of the given question, the home page is a collection of linked documents or pages that are stored on millions of computers and distributed across the internet.

Submit
View My Results

Quiz Review Timeline (Updated): Mar 21, 2023 +

Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.

  • Current Version
  • Mar 21, 2023
    Quiz Edited by
    ProProfs Editorial Team
  • Dec 06, 2011
    Quiz Created by
    Omedutechhp
Cancel
  • All
    All (24)
  • Unanswered
    Unanswered ()
  • Answered
    Answered ()
HTML stands for Hypertext ___________ Language.  
System.out.println();
URL Means?
______________ Tag is used to give title to the document.
Internet s a ____________of networks.
______________command converts the source code to internediate...
Strings are always specified in
First Web Browser Hot Java was developed in_____________
System.println.out();
The java package provides classes to support input and output...
Which of the following is a software application that helps to view...
Keywords are the ______________ words that have special significance...
ISP Means?
Java was developed by a team headed by ______________
The vector class contained in
ARPANET Means
Java exception handling is governed by the following five keywords
The Life Cycle of an applet begins when it is first loaded and the...
The return type of a constructor is
___________________method replaces destructor function in java.
The keywords ___________ and ___________ are reserved words but they...
Java is a programming language developed by ____________________...
Public static void main(string args[ ])
The_______________ is a collection of linked documents or...
Alert!

Advertisement