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.
Home » Page 30

Cloud Computing Trends, Challenges, and Surveys

Suryateja Pericherla Categories: Cloud and Cloud Computing. 1 Comment on Cloud Computing Trends, Challenges, and Surveys

This article contains links to various resources on the web that disseminate knowledge with respect to cloud computing trends, challenges in its adoption, and various surveys related to cloud technology.   My main intention to create this article/post is to save these links for my future research related to cloud and its security. May be […]

Read the rest of this entry »

C Programming Basics Video Lectures

Suryateja Pericherla Categories: C Programming Videos. 6 Comments on C Programming Basics Video Lectures

This article provides a collection of C Programming basics video lectures created by Suryateja Pericherla.   Note: Please wait 10 to 30 seconds to let the videos load from Youtube. Introduction to C Programming Language   Structure of a C Program   Creating and Running C Programs in Windows   Creating and Running C Programs in […]

Read the rest of this entry »

Computer Basics Video Lectures

Suryateja Pericherla Categories: C Programming Videos. No Comments on Computer Basics Video Lectures

This article provides a list of computer basics video lectures created by Suryateja Pericherla.   Note: Please wait 10 to 30 seconds to let the videos load from Youtube. What is a Computer and Block Diagram of a Computer Hardware and Software Types of Computers Based on Portability   Basic Hardware Parts in a Computer   […]

Read the rest of this entry »

CPP program to rethrow an exception

Suryateja Pericherla Categories: Exception Handling. 1 Comment on CPP program to rethrow an exception

In this article we will learn to implement a CPP program to rethrow an exception. A C++ program is provided below to demonstrate rethrowing an exception.   Program is as follows: #include <iostream> using namespace std; int main() { try { int a, b; cout<<"Enter two integer values: "; cin>>a>>b; try { if(b == 0) […]

Read the rest of this entry »

CPP program for handling divide by zero exception

Suryateja Pericherla Categories: Exception Handling. 5 Comments on CPP program for handling divide by zero exception

In this article we will learn to implement a CPP program for handling divide by zero exception. A C++ program is provided below for handling divide by zero exception. Program is as follows: #include <iostream> using namespace std; int main() { int a, b; cout<<"Enter two integer values: "; cin>>a>>b; try { if(b == 0) […]

Read the rest of this entry »

Cpp program to create a function template to swap two numbers

Suryateja Pericherla Categories: Templates. No Comments on Cpp program to create a function template to swap two numbers

In this article we will learn to implement a Cpp program to create a function template to swap two numbers. A C++ program is provided below to create a function template for swapping.   Program is as follows: #include <iostream> using namespace std; template<class T> void swapme(T &x, T &y) { T temp = x; […]

Read the rest of this entry »

CPP program to create a function template for power of a number

Suryateja Pericherla Categories: Templates. No Comments on CPP program to create a function template for power of a number

In this article we will learn to implement a CPP program to create a function template for power of a number. A C++ program is provided below to create a function template for calculating power of a number.   Program is as follows: #include <iostream> #include <cmath> using namespace std; template<class T> void power(T x, […]

Read the rest of this entry »

CPP program to illustrate member function template

Suryateja Pericherla Categories: Templates. No Comments on CPP program to illustrate member function template

In this article we will learn to implement a CPP program to illustrate member function template. A C++ program is provided below to illustrate member function template.   Program is as follows: #include <iostream> using namespace std; class Adder { public: template<class T1, class T2> void add(T1 x, T2 y) { cout<<"Sum is: "<<(x+y)<<endl; } […]

Read the rest of this entry »

CPP program to illustrate class template with multiple parameters

Suryateja Pericherla Categories: Templates. No Comments on CPP program to illustrate class template with multiple parameters

In this article we will learn to implement a CPP program to illustrate class template with multiple parameters. A C++ program is provided below to demonstrate a template class with multiple parameters.   Program is as follows: #include <iostream> using namespace std; template<class T1, class T2> class Adder { private: T1 x; T2 y; public: […]

Read the rest of this entry »

CPP program to illustrate template class

Suryateja Pericherla Categories: Templates. No Comments on CPP program to illustrate template class

In this article we will learnt to implement a CPP program to illustrate template class. A C++ program is provided below to illustrate class template.   Program is as follows: #include <iostream> using namespace std; template<class T> class Swapper { private: T x; T y; public: Swapper(T x, T y) { this->x = x; this->y […]

Read the rest of this entry »
Facebook
Twitter
Pinterest
Youtube
Instagram
Blogarama - Blog Directory