Core Java Interview preparation

How to create Threads by Implementing Runnable Interface

Download Final Year Projects   [wptelegram-join-channel] How to create Threads by Implementing Runnable Interface in Java In this tutorial, we will discuss, What are threads? Difference between Thread and Process. How to create Threads by Implementing Runnable Interface? Video Tutorial: What are Threads…? Thread is a tiny program running continuously. It is sometimes called a …

How to create Threads by Implementing Runnable Interface Read More »

How to make classes Threadable using Thread Class

Download Final Year Projects   [wptelegram-join-channel] How to make classes as Threadable using Thread Class In this tutorial, we will discuss, What are threads? Difference between Thread and Process. How to make classes Threadable using Thread class? Video Tutorial: What are Threads…? One of the exciting features of the Windows operating system is that – …

How to make classes Threadable using Thread Class Read More »

Implementing multiple inheritances using interfaces in Java

Download Final Year Projects   [wptelegram-join-channel] Implementing multiple inheritances using interfaces in Java Write a Java program to demonstrate the role of interfaces while implementing multiple inheritances in Java. Video Tutorial: Before we understand, how to use an interface to implement multiple inheritances, we will discuss the types of inheritance supported by Java. There are …

Implementing multiple inheritances using interfaces in Java Read More »

Java program to find area of rectangle triangle Interface

Download Final Year Projects   [wptelegram-join-channel] Java program to find the area of rectangle and triangle using Interface Write a Java program to define an interface called Area which contains a  method called Compute() and calculate areas of the rectangle(I*b) and triangle(1/2*b*h) using classes Rectangle and Triangle.   Video Tutorial: Step1: Create an interface in …

Java program to find area of rectangle triangle Interface Read More »

Difference between Class & Interface Extend Implement Interface

Download Final Year Projects   [wptelegram-join-channel] In this article, I will cover, What are Interfaces in Java? Difference between Class & Interface. How to Extend and Implement Java Interface? Video Tutorial – Difference between Class & Interface Extend Implement Interface: Definition of Java Interface: An interface is similar to a class but there lies some …

Difference between Class & Interface Extend Implement Interface Read More »

How Java provides access protection using Packages

Download Final Year Projects   [wptelegram-join-channel] How Java provides access protection using Packages In this article, I will cover, What are Java Packages Types of Java Packages How to create a user-defined Package in Java How to Import Java Packages Sample Program to demonstrate access protection in Java using Packages Video Tutorial – How Java …

How Java provides access protection using Packages Read More »

Java Program to find the sum of numbers divisible by 7 between 100 to 200

Download Final Year Projects   [wptelegram-join-channel] Write a Java Program to find sum of numbers divisible by 7 between 100 to 200 Write a Java program to find the number of and the sum of all numbers greater than 100 and less than 200 which are divisible by 7. Video Tutorial: Steps (Program logic): 1. …

Java Program to find the sum of numbers divisible by 7 between 100 to 200 Read More »

Java Program to find Sum, Product, and Average of an Array

Download Final Year Projects   [wptelegram-join-channel] Write a Java Program to find Sum, Product, and Average of an Array Write a Java Program to Find the Sum of array elements, Product of array elements, and Average of elements of a single dimensional array. Video Tutorial: Steps (Program logic): 1. Declare the local variables like a, …

Java Program to find Sum, Product, and Average of an Array Read More »