Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the quiz-maker domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/u797631661/domains/codermantra.com/public_html/wp-includes/functions.php on line 6121
October 2020 – CoderMantra

Java – Method

In Java, methods are a group of statements that perform a specific task. In this tutorial, we will learn what is method, how to define the method in Java, and how to use methods with lots of examples. What is a Method Suppose, we need to write some fixed lines of code regularly to perform…

Read More »

Java – Class and Object

In the previous tutorial, we had discussed the OOPs concept in Java. In this chapter, we will learn how to define a class and creating an object in Java. We will also have an example of accessing data members and member functions of a class. Define a Class In Java Let’s start with how to…

Read More »

Java – OOPs Concept

Object-Oriented Programming or OOPs is a modern way of programming to use real-life entities. Java uses features of OOPs, that’s why java is known as an Object-Oriented Programming Language. The core concept of OOP is to bind data and function in a single unit with reuse of the code principal. Features of OOPs. Object Class…

Read More »