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.

GATE 2017 CS Question Paper and Key

Suryateja Pericherla Categories: GATE. 6 Comments on GATE 2017 CS Question Paper and Key

Yesterday (February 11th) I wrote GATE examination in the afternoon session. Branch was Computer Science and Engineering (CS).   From my memory and from bits already available on Quora, I am sharing the question and answers of GATE 2017 CS examination conducted on February 11th in the afternoon session.   Note: All the questions provided […]

Read the rest of this entry »

Introduction to MIT APP Inventor

Suryateja Pericherla Categories: MIT App Inventor. No Comments on Introduction to MIT APP Inventor

In this article we will learn about introduction to MIT App Inventor. First we will learn what is app inventor?, then uses of app inventor, and what are the different types of apps we can build using app inventor.   What is App Inventor? App Inventor is a web-based GUI (Graphical User Interface) tool developed […]

Read the rest of this entry »

Standard Template Library

Suryateja Pericherla Categories: C++ Programming. No Comments on Standard Template Library

This article provides a comprehensive overview of Standard Template Library (STL) in C++ programming language along with example programs.   Introduction The Standard Template Library (STL) is a collection of components to implement data structures and frequently used operations on data. Three major components in STL are: Containers Algorithms Iterators   Containers   Container is […]

Read the rest of this entry »

Java Interview Questions and Answers

Suryateja Pericherla Categories: Java. 1 Comment on Java Interview Questions and Answers

Here is a collection of frequently asked java interview questions and answers for technical interviews. All Java questions are provided with appropriate answers. If you find any answer is not correct, do comment in the comments section (scroll down).   Note: Click the question or click on the arrow to see the answer for a question. […]

Read the rest of this entry »

Generic Programming in C++ Programming

Suryateja Pericherla Categories: C++ Programming. No Comments on Generic Programming in C++ Programming

This article provides a comprehensive overview of generic programming in C++ programming language along with example programs.   Introduction To generate short, simple code and to avoid duplication of code, C++ provides templates to define the same piece of code for multiple data types. With templates, programmers can define a family of functions or classes […]

Read the rest of this entry »

Java program to reverse the array inplace

Suryateja Pericherla Categories: Arrays. 2 Comments on Java program to reverse the array inplace

In this article we will learn to implement a Java program to reverse the array. A Java program is provided below which reverses an array in-place (without using extra memory).   Following program reads an array of elements and reverses the array in place i.e., without using any temporary array: import java.util.Scanner; public class Driver […]

Read the rest of this entry »

Java program to find the maximum and minimum value of an array

Suryateja Pericherla Categories: Arrays. No Comments on Java program to find the maximum and minimum value of an array

In this article we will learn to implement a Java program to find the maximum and minimum value of an array. A java program is provided below which reads array elements from the user and finds out the maximum, minimum elements in the array.   Program is as follows: import java.util.Scanner; public class Driver { […]

Read the rest of this entry »

Java program to check whether the number is an armstrong number or not

Suryateja Pericherla Categories: Basic. No Comments on Java program to check whether the number is an armstrong number or not

In this article we will learn to implement a Java program to check whether the number is an armstrong number or not.   Armstrong number is one in which the sum of the cubes of individual digits is same as the given number. For example if you take the number 153, (1^3) + (5^3) + […]

Read the rest of this entry »

Java program to find given number is palindrome or not

Suryateja Pericherla Categories: Basic. No Comments on Java program to find given number is palindrome or not

In this article we will learn to implement a Java program to find given number is palindrome or not. A Java program is provided below which reads a number and prints whether it is a palindrome or not.   A palindrome is one which is same after reversing it. For example, if you take a […]

Read the rest of this entry »
Blogarama - Blog Directory