Select Statements and Arithmetic Operators in MySQL

Hi all! Welcome back! In this blog I will go over Select statements, a very widely used statement in SQL and the only statement in the Data Query/Retrieval Language (DQL/DRL) . The Select statement is used to retrieve information from database. There are several process you can do with the select statements DQL/DRL there are …

MySql Interview Questions

Explain inner join, left and outer join. Hi all and Welcome back! Today I will discuss some very popular MySQL interview questions. I have adopted many of these questions from Aayushi Johari. Here is the link to his blog for greater details. https://www.edureka.co/blog/interview-questions/sql-interview-questions However my goal on this blog is to summarize his answers to …

How do you pass multiple arguments to a method on each invocation call?

VARARGS In Java the varargs feature allows us to pass multiple arguments to a method. The variable-length argument being passed in is specified by three periods(…).  To set this up you will need the following components: type name three dots (…) space and variable name Here is an example of the varargs feature syntax This …

Java Interview Questions

By Roy Nunez @JavaMadeEasy 🙂 See below a list of questions and follow their corresponding hyperlinks that lead to answers and my explanations in greater detail! To stay updated on the latest programs addressing these concepts, follow me on github!!! What is the difference between constructors and methods? What is a continue statement and what …

Declarations and Program Structure

Hi all, and welcome back to JavaMadeEasy! Today I am going to talk about method declarations for data members, methods and constructors as well as the program structure for a main program that accesses two different classes. Data members SO lets go ahead and jump in to data member declarations. A data member is a …

Multiple Inheritance In Java with Interfaces

Hi All! Welcome back to JavaMadeEasy! On this blog I will be going over how to use Interfaces for multiple inheritance, a feature not supported on Java for classes. In java a class can not extend multiple base classes. This is because, derived class may inherit different implementation for the same method from multiple base …

Break and Continue Statements in Java

Hi! Welcome to JavaMadeEasy and here I present break and continue statements with both while- and for-loops in the Java programming language. Break Statements Break Statements can be used to break out of a loop instantly when a specified condition is true. To detect these conditions if-statements are used. Continue Statements A continue statement is …

Design a site like this with WordPress.com
Get started