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.

Operators in Python Programming

Suryateja Pericherla Categories: Python Programming. No Comments on Operators in Python Programming

This article provides a comprehensive overview of operators in Python programming language along with relevant examples.   Following are different types of operators in Python: Arithmetic operators Relational operators Assignment operators Logical operators Bitwise operators Membership operators Identity operators   Arithmetic Operators   Following are various arithmetic operators available in Python:   Operator Description Example […]

Read the rest of this entry »

Strings in Python Programming

Suryateja Pericherla Categories: Python Programming. No Comments on Strings in Python Programming

This article provides a comprehensive overview of strings in Python programming language. All the string functions are demonstrated with examples.   Introduction to Strings in Python A string is a sequence of one character strings. Strings are used to store textual information. Examples of strings: ‘Python’ ‘Ramesh Kumar’ “A” “123”   Sequence Operations on Strings […]

Read the rest of this entry »

Types in Python Programming

Suryateja Pericherla Categories: Python Programming. No Comments on Types in Python Programming

This article provides a comprehensive overview of different types in Python programming language along with relevant examples.   Introduction to Types in Python In general, the structure of a Python program is as follows: Programs are composed of modules. Modules contain statements. Statements contain expressions. Expressions create and process objects.   In Python, everything is […]

Read the rest of this entry »

Introduction to Python Programming

Suryateja Pericherla Categories: Python Programming. 6 Comments on Introduction to Python Programming

This article provides an introduction to Python programming by describing what is Python, who is Python’s developer, Python applications and features, how to create and execute Python scripts, how to work with variables, what are different keywords and how to perform input/output in Python scripts.   What is Python? Watch the below video which provides […]

Read the rest of this entry »

Download UGC NET November 2017 Certificate

Suryateja Pericherla Categories: Misc. 24 Comments on Download UGC NET November 2017 Certificate

In this article we will learn how to download UGC NET certificate for the exam conducted in November 2017. A step-by-step procedure is provided.   I wrote CBSE / UGC NET in November 2017 and I was qualified in Computer Science and Applications stream. Since the result was released in January 2018, I was eagerly […]

Read the rest of this entry »

OpenCV Android Application Error

Suryateja Pericherla Categories: Android. 2 Comments on OpenCV Android Application Error

Today I was trying to add OpenCV library to my Android app by following the instructions in this video.   Downloaded OpenCV 3.4 and added to the Android app. After adding it to the app, several (45) errors popped up, among which the major error was: error: package android.hardware.camera2 does not exist   I solved […]

Read the rest of this entry »

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 »
Blogarama - Blog Directory