Hi there! This next lesson will be on understanding for loop in Java Programming. The for loop statement This type of loop will repeat Java statements for a specific number of times.
Programming
Learning Switch Statement in Java Programming
Welcome to our next Java lesson and in this lesson we are going to learn about the switch statement. What is a switch statement? A switch statement is just like if else if statement the difference is that there is…
Java If, If Else, If Else If Statement
Java If, If Else, If Else If Statement This Lesson will teach us one of the control flow statements in Java programming: the if statement. Just like every other programming language the if statement in Java is one way form…
Comments in Java Programming
In this Java tutorial, we are going to learn about creating comments. Comments in programming do not change the functionality or how your program works but it plays an important role in documentation of your program. There are 3 types…
Java Lesson about Variables
Hi everyone, welcome to our next lesson in Java. This lesson is about variables in Java. We will learn the following in this lesson: Naming convention of variables in Java How to declare a variable How to initialize and assign…
Primitive Data Types in Java
In this post, you will learn the different primitive data types in Java programming languages. Primitive data types in Java include the following: boolean, byte, char, double, float, int, long, short The above mentioned data types can be grouped into…
Properties, Methods and Events in Visual Basic 6
This lesson will discuss about the Properties, Methods and Events Properties, methods and events are 3 separate terms in visual basic but they are associated or interrelated with one another. We will define each and every one of them and…
Loop Statement in Visual Basic
In this lesson, we’re going to learn how to use loop statements in visual basic. What is a loop? A loop in computer programming is a process that repeats the same command or instruction and ends until given condition becomes…
If Statement in Visual Basic
In computer programming, a conditional statement is the type of statement that executes a command when the condition is met or when the condition is true. The if…then statement The if then statement of visual basic is similar to the…
Login Logout Monitoring System in Visual Basic
Monitoring the login and logout of the users of an information system is very important, that’s why we have prepared a sample source code on how to do that. This simple application will record the login time and the logout…