Startertutorials Blog
Tutorials and articles related to programming, computer science, technology and others.
Subscribe to Startertutorials.com's YouTube channel for different tutorial and lecture videos.

Introduction to C Programming Language

Introduction to C Programming Language

Categories: C Programming. No Comments on Introduction to C Programming Language

This article provides a comprehensive introduction to C programming language which is the base for many other programming languages. This article is a part of C programming tutorial for beginners.   What is C Programming? C is a structured mid-level programming language for developing software. C follows structured programming in which the instructions are arranged […]

Read the rest of this entry »
Flowchart

Flowchart Symbols in Computer Programming

Categories: Programming. No Comments on Flowchart Symbols in Computer Programming

This article provides a comprehensive overview of flowchart symbols in computer programming along with examples.   Flowchart A flowchart is a diagrammatic or pictorial or visual representation of an algorithm. It is a diagram which consists of various graphic symbols for representing the nature and flow of steps in a program or process.   The […]

Read the rest of this entry »
Algorithm

Algorithm in Computer Science

Categories: Programming. No Comments on Algorithm in Computer Science

This article provides a comprehensive overview of algorithm in computer science field along with relevant examples. If not already done, go through this program development steps article.   Definition An algorithm is a finite sequence of step by step, discrete, unambiguous instructions for solving a particular problem. Or Algorithm is a step-by-step procedure for solving […]

Read the rest of this entry »
Basics of programming languages

Basics of Programming Languages

Categories: Programming. 4 Comments on Basics of Programming Languages

In this article we will learn about basics of programming languages. First we will look at different types of computer languages and then learn about different generations of programming languages. Hope you had already learned about basic networking concepts.   Computer Languages To communicate with a computer, we use computer languages or also known as […]

Read the rest of this entry »

HTML Form Validation using PHP and JavaScript

Categories: Programming. Tags: AJAX, HTML, JavaScript, and PHP. No Comments on HTML Form Validation using PHP and JavaScript

In this article I will show you how to validate a HTML form using PHP and JavaScript. JavaScript performs preliminary checks on the client-side and PHP is used to validate the details entered by the user against the details available in the database on server-side.   AJAX has also been used to display the error […]

Read the rest of this entry »