Java

Difference between Abstract Class and Interface in Java — step-by-step Programming tutorial on Progressive Robot

Difference between Abstract Class and Interface in Java

Difference between Abstract Class and Interface is one of the popular interview questions. Abstract Class and Interface are a core part of the Java programming language. Whether to choose an interface or abstract class is a design decision that every architect faces. In my last articles, I have provided as much as possible details about […]

Read more
Google Search from Java Program Example — step-by-step Programming tutorial on Progressive Robot

Google Search from Java Program Example

Sometime back I was looking for a way to search Google using Java Program. I was surprised to see that Google had a web search API but it has been deprecated long back and now there is no standard way to achieve this. Basically google search is an HTTP GET request where query parameter is […]

Read more
How to Make a Minecraft Server — step-by-step Linux tutorial on Progressive Robot

How to Make a Minecraft Server

Minecraft is a popular sandbox video game. As of late 2019, it was the second best-selling video game of all time. In this tutorial, you will create your own Minecraft server so that you and your friends can play together. Specifically, you will install the necessary software packages to run Minecraft, configure the server to run, and then deploy the game.

Read more
How To Install Apache Tomcat 9 on Debian 10 — step-by-step Linux tutorial on Progressive Robot

How To Install Apache Tomcat 9 on Debian 10

Apache Tomcat is a web server and servlet container that is used to serve Java applications. Tomcat is an open source implementation of the Java Servlet and JavaServer Pages technologies, released by the Apache Software Foundation. This tutorial covers the basic installation…

Read more
How To Install Apache Tomcat 9 on Ubuntu 18.04 — step-by-step Linux tutorial on Progressive Robot

How To Install Apache Tomcat 9 on Ubuntu 18.04

Apache Tomcat is a web server and servlet container that is used to serve Java applications. Tomcat is an open source implementation of the Java Servlet and JavaServer Pages technologies, released by the Apache Software Foundation. In this tutorial, you will install and configure Tomcat 9 on your Ubuntu 18.04 server.

Read more
Java 9 Features with Examples — step-by-step Programming tutorial on Progressive Robot

Java 9 Features with Examples

URL: https://www.progressiverobot.com/java-9-features-with-examples/ Java 9 is a major release and it has brought us a lot of features for developers. In this article, we will look into Java 9 features in detail. Java 10 has been released, for a complete overview of Java 10 release, go through [Java 10 Features](/community/tutorials/java-10-features). Java 9 Features ![java 9 features](images/java-9-features-with-examples-section-1.png) […]

Read more
40 Java Collections Interview Questions and Answers — step-by-step Programming tutorial on Progressive Robot

40 Java Collections Interview Questions and Answers

URL: https://www.progressiverobot.com/java-collections-interview-questions-and-answers/ [Java Collections Framework](/community/tutorials/collections-in-java-tutorial) is one of the core APIs of java programming language. It's one of the important topics for java interview questions. Here I am listing some important java collections interview questions and answers to help you in the interview. This is directly coming from my 14+ years of experience in Java […]

Read more
Java Exception Interview Questions and Answers — step-by-step Programming tutorial on Progressive Robot

Java Exception Interview Questions and Answers

URL: https://www.progressiverobot.com/java-exception-interview-questions-and-answers/ Java provides a robust and object-oriented approach to handle exception scenarios known as Java Exception Handling. Sometime back I wrote a long post on [Exception Handling in Java](/community/tutorials/exception-handling-in-java) and today I am listing some important Java Exceptions Questions with Answers to help you in interviews. [What is an Exception in Java?](#java-exception) [What are […]

Read more
CHAT