tutorial

Determine Even or Odd Number in VB.NET Tutorial

Submitted by donbermoy on

Even Numbers are any integer that can be divided exactly by 2. The last digit will be 0, 2, 4, 6, or 8. If it is not an even number, it is called an odd number. The last digit will be 1, 3, 5, 7, or 9.

In this tutorial, we will create a program that can determine a number whether odd or even.

Now, let's start this tutorial!

Simple Login Application in Python Tutorial with Source Code

Submitted by razormist on

In this tutorial, we will create a Simple Login Application in Python. Python has a design philosophy that emphasizes code readability. That's why Python is very easy to use especially for beginners who just started programming. It is very easy to learn the syntax emphasizes readability and it can reduce time-consuming in developing. So let's now do the coding.

Learn Java For Free With This Course

Submitted by admin on
Whether you are a seasoned programmer or a beginner, the first step in learning how to program is to learn from the basic concept of any programming language. Today, I’m going to introduce to you the free course from Udemy which garnered more than 729k students. The course is Java Tutorial for Complete Beginners. Though the course is quite old, it was last updated on October 2015, the importance

Simple Inventory System in Python Tutorial

Submitted by razormist on
In this tutorial we will create a Simple Inventory System Using Python / SQLite. Python is a computer programming language that lets work faster and convenient because of its user - friendly environment. Python supports packages and modules, which encourage a developer to program in a modularity and reusable way..

Object Oriented Programming in C++

Submitted by moazam60 on
In this set of tutorial we will learn object oriented programming in c++ . Object Oriented programming helps you develop softwares using a new approach. In this book you will learn the core concepts of object Oriented programming i.e inheritance , polymorphism and composition. We will learn what are these techniques and how to use these techniques as we go through the course. We will also learn about classes and other stuff related to it as we go through this book.

Borders

Submitted by Yorkiebar on
Introduction: This is the fourth part in my CSS Styling tutorials, in which I will be covering Borders. Order: Borders around elements come between the elements margin and padding. So, if the element has padding, the border will be away from the element whereas if the element only has margin, the border will be next the element but away from other elements. Basic Structure: The basic border attribute takes three arguments; Width, Type, Colour.

PHP/MySQLi Creating a Forum - Part 4 - Adding & Listing Replies

Submitted by Yorkiebar on
PHP/MySQLi Creating a Forum - Part 3 - Thread Page Introduction: This tutorial will be continuing my series of creating a forum in PHP/MySQLi/HTML. This is the fourth and (for now) the final part which is adding reply functionality. Pre-creation: First you will need a host for your PHP, either a web host or localhost is fine but you will need PHP and MySQL(i) capabilities. Also, this will not be covering creating users, or styling the pages.