All articles

article photo
What is the difference between var and val in Kotlin?

Learn about the difference between the keyword var and val in Kotlin.

Frogitecture


7/12/2022

article photo
Python - Creating a Pythagorean Theorem Calculator

Learn how to create a Pythagorean theorem calculator in Python.

Frogitecture


2021-09-25

article photo
C++ Inheritance – 3 – Constructors and Destructors

When a derived-class object is instantiated, a chain of constructor calls begins. Similarly, when a derived-class object is destroyed, destructor calls begins

Frogitecture


2020-12-19

article photo
C++ Inheritance – 2 – Protected Members

Two very common access specifier in C++ are public and private. Here I introduce the access specifier protected and give you an example of how you can use it.

Frogitecture


2020-12-16

article photo
C++ Inheritance - 1 - Base and Derived Classes

Inheritance is a form of software reuse in which a class can use another class’s methods and members and modify them.

Frogitecture


2020-12-15

article photo
C++ Overloading Relational Operators

This article goes through how to overload relational operators in C++. Create your own user-defined types and use overloaded operators with them.

Frogitecture


2020-12-03

article photo
Go-Back-N Protocol

What is the Go-Back-N Protocol? How does it work?

Frogitecture


2020-11-25

article photo
Parameter Passing Methods in Programming Languages

Read about four different ways of Parameter Passing Methods

Frogitecture


2020-09-22

article photo
Type checking in programming languages

Type checking prevents type errors to happen.

Frogitecture


2020-07-08

article photo
Categories of arrays in programming languages

Read about the subscript range and storage bindings.

Frogitecture


2020-07-08

article photo
Measure execution time in C++

Learn how to measure execution time of algorithms in C++

Frogitecture


2020-06-30

article photo
Firebase Authentication - 10 - Delete account

Deleting an account in Android with Firebase Authentication

Frogitecture


2020-06-22