Month: January 2023

Arithmetic Operations with methods in python

Introduction Arithmetic Operators in Python can perform addition, subtraction, multiplication, division, exponentiation, and modulus operators. In this blog, I am going to teach you how to do 4 basic arithmetic operations with methods in Python. Creating Functions Before we go into the meat and potatoes if this topic, let us first initialize our functions. In …

Arithmetic Operations with methods in python Read More »

Getting to know if-else statements in java programming

In this blog, I will show some sample codes about If-Else Statements in Java. The If-Else Statements is used to test the condition of the given statement. Whether the output is True or False. We can also test multiple condition. I will demonstrate some basic but straight forward in applying the If-Else Statement. Java supports …

Getting to know if-else statements in java programming Read More »

Iris Classification using Logistic Regression

Logistic regression is the best regression approach to utilize when the dependent variable is dichotomous (binary). Like other regression studies, logistic regression is a predictive analysis. Logistic regression is a statistical approach for defining and explaining the relationship between one dependent binary variable and one or more independent variables that are nominal, ordinal, interval, or …

Iris Classification using Logistic Regression Read More »

Beginner’s Guide For Tinkercad Arduino Projects

Tinkercad is a user-friendly, web-based platform that allows users to design, simulate, and program their own electronic projects using the Arduino microcontroller. With Tinkercad, you can easily create circuit designs and program your Arduino to control lights, motors, and other components. In this two-part guide, you will learn how to use Tinkercad to create your …

Beginner’s Guide For Tinkercad Arduino Projects Read More »

Basic Arithmetic Operators in Java Programming.

Arithmetic Operators involves the mathematical operators used to perform basic math equation on the primitive data types referred to as the operands. By learning these basic operators, in the future you are able to make your own algorithm that requires many alternative solution. In this blog, I will show you a sample codes that applying …

Basic Arithmetic Operators in Java Programming. Read More »