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.

APSET 2016 Paper 1 and Computer Science Paper 2 and 3 with key

Categories: APSET. 2 Comments on APSET 2016 Paper 1 and Computer Science Paper 2 and 3 with key

In this article we will look at APSET 2016 Paper 1 and Computer Science Paper 2 and 3 with key. APSET examination was held on September 11, 2016.   About APSET Keeping in view, the State Bifurcation the government of Andhra Pradesh had issued two GO.s. Ms No. 57 Higher education department has identified Andhra […]

Read the rest of this entry »

Classes and Objects in C++ Programming

Categories: C++ Programming. No Comments on Classes and Objects in C++ Programming

This article provides a comprehensive overview of classes and objects in C++ programming languages along with example programs.   Introduction Object oriented programming paradigm makes it easy to solve real-world problems. Classes and objects are the fundamental concepts of object oriented paradigm. They make development of large and complex systems easier and help to produce […]

Read the rest of this entry »

Functions in C++ Programming

Categories: C++ Programming. No Comments on Functions in C++ Programming

This article provides a comprehensive overview of functions in C++ programming language along with easy to understand example programs.   Introduction While writing large programs, main() function will become quite complex to maintain and soon you will lose track of what is happening. This is where functions will aid programmers.   Functions allows the programmer […]

Read the rest of this entry »

Arrays and Strings in C++ Programming

Categories: C++ Programming. No Comments on Arrays and Strings in C++ Programming

This article provides a comprehensive overview of arrays and strings in C++ programming language along with example programs.   Arrays Introduction An array is a group of elements forming a complete unit. Characteristics of an array are as follows: An array is a collection of elements. All elements in an array are of the same […]

Read the rest of this entry »

C++ Basic Concepts with Examples

Categories: C++ Programming. 1 Comment on C++ Basic Concepts with Examples

This article provides a comprehensive overview of C++ basic concepts along with easy to understand examples.   Tokens Smallest indivisible parts of a program are called lexemes and groups of similar lexemes are called tokens. C++ program contains several items and those are identified as tokens by a compiler. C++ tokens are as follows: Keywords […]

Read the rest of this entry »

Input and Output in C++ Programming

Categories: C++ Programming. No Comments on Input and Output in C++ Programming

This article provides a comprehensive overview of input and output in C++ programming language along with example programs.   Any program in a given programming language needs significant amount of input from the user and also needs to display to the output several times. To support such I/O operations, C++ provides a library which contains […]

Read the rest of this entry »

Introduction to Object Oriented Paradigm

Categories: Programming. No Comments on Introduction to Object Oriented Paradigm

This article provides a comprehensive introduction to object oriented paradigm along with real-world examples.   This world is made up off several objects and objects communicate with each other. Similar objects can be grouped together. For example, take a college. It can have two working sections like teaching and non-teaching. These two groups can be […]

Read the rest of this entry »