Starter Tutorials 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 34

Openstack Ocata Installation on Ubuntu 16.04

Suryateja Pericherla Categories: Cloud. 1 Comment on Openstack Ocata Installation on Ubuntu 16.04

  Following are instructions for installing OpenStack (ocata) on Ubuntu 16.04 LTS VM.   When creating Ubuntu VM, the RAM size must be at least 4GB. Otherwise, OpenStack may show errors while installing.   Add user named “stack” using the following command: sudo useradd -s /bin/bash -d /opt/stack -m stack   Assign no password for […]

Read the rest of this entry »

Java program to print all unique words of a string

Suryateja Pericherla Categories: Strings. 5 Comments on Java program to print all unique words of a string

In this article we will learn to implement a java program to print all unique words of a string. A java program is provided below which reads a line of text from the user and prints out the unique words in ascending order.   We use TreeMap class from collections framework to store the frequency […]

Read the rest of this entry »

Java program to print only unique characters in a string

Suryateja Pericherla Categories: Strings. No Comments on Java program to print only unique characters in a string

In this article we will learn to implement a Java program to print only unique characters in a string. A Java program is provided below which reads a string from the user, and prints out only the unique characters in the string in insertion order.   First we find out the frequency of each character […]

Read the rest of this entry »

Java program to print the frequency of characters in a string

Suryateja Pericherla Categories: Strings. No Comments on Java program to print the frequency of characters in a string

In this article we will learn to implement a Java program to print the frequency of characters in a string. A Java program is provided below reads the string and gives the frequency of each character (number of times a character is repeated).   This java program reads a string from the user, calculates frequency […]

Read the rest of this entry »

Java program to remove duplicate characters from a string

Suryateja Pericherla Categories: Strings. 2 Comments on Java program to remove duplicate characters from a string

In this article we will learn to implement a Java program to remove duplicate characters from a string. A java program is provided below that accepts a string from the user, ignores any duplicate characters and prints each character only once in ascending order.   We use TreeSet class from collections framework for printing the characters […]

Read the rest of this entry »

Python Programming Tutorial

Suryateja Pericherla Categories: Python Programming. 14 Comments on Python Programming Tutorial

Welcome to Python Programming Tutorial series created by Startertutorials.   This is a comprehensive step-by-step programming tutorial for beginners that covers almost all the core concepts in Python programming language. Enjoy the tutorial and provide feedback by commenting below. About Python Python is a multi-paradigm language gaining widespread popularity now-a-days due to its simplicity and […]

Read the rest of this entry »

Testing in Python Programming

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

In this article we will learn about testing in Python. This covers what is unit testing, how to write and run unit tests in Python programming language.   This article is a part of our Python programming tutorial for beginners.   Introduction Testing is the practice of writing code that helps to find if there […]

Read the rest of this entry »

Standard Libraries in Python Programming

Suryateja Pericherla Categories: Python Programming. 2 Comments on Standard Libraries in Python Programming

This article provides a comprehensive overview of standard libraries in Python programming language along with example programs.   This article is a part of our Python programming tutorial for beginners.   Introduction to Standard Library A library is a set of files which contains pre-defined code that we can use in our own programs. For […]

Read the rest of this entry »

Exception Handling in Python

Suryateja Pericherla Categories: Python Programming. No Comments on Exception Handling in Python

This article provides a comprehensive overview of exception handling in Python programming language along with example programs.   This article is a part of our Python programming tutorial for beginners.   Introduction An error is an abnormal condition that results in unexpected behavior of a program. Common kinds of errors are syntax errors and logical […]

Read the rest of this entry »

Inheritance and Polymorphism in Python

Suryateja Pericherla Categories: Python Programming. No Comments on Inheritance and Polymorphism in Python

In this article we will learn about inheritance and polymorphism in Python programming language. Both inheritance and polymorphism are defined and examples are provided.   This article is a part of our Python programming tutorial for beginners.   Inheritance Creating a new class from existing class is known as inheritance. The class from which features […]

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