
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 33676 Articles for Programming

1K+ Views
In this tutorial we will write a go language code to check whether an alphabet is vowel or consonant. Difference between Vowel and Consonant A character is called vowel if it is in any one of the following list of characters {a, e, I, o, u}. All the remaining characters are called consonants. In English language there are 5 vowels and 21 consonants. Here we are going to use following 2 methods − Method 1: Using if/else statement In this method we will use the conditional statements to check if a character is a vowel or consonant. Method 2: Using ... Read More

496 Views
In this article, we will explain which language is better (PHP or python) and discuss the reasons briefly. Python Python is a high−level, object-oriented, dynamic, and multipurpose programming language. Python's syntax, dynamic typing, and interpreted nature make it an excellent scripting language. It supports a variety of programming paradigms, including object-oriented, functional, and procedural styles. Additionally, because it is an interpreted language, it cannot be converted to computer-readable code before running at runtime. Another distinct property of Python is that it is an interpreted language, which means that Python code is not translated to machine−readable at runtime. Despite the fact ... Read More

284 Views
In this article, we will discuss frameworks used to make applications in Python. Python is experiencing an amazing growth trend. And there is no indication of a slowing in the near future. Artificial intelligence, smartphones, supercomputers, and other similar technology are forever changing our world. We can build a variety of mobile apps and programs in the languages that such technology supports. Python is one of the most widely used programming languages. According to Stack Overflow's developer review, Python was the most popular language in 2018, beating C# and PHP. Python's growth implies that it has evolved into a high-level ... Read More

589 Views
Yes, Python is an easy language to learn and we are going to find out the reason behind it with this article. What is Python? Python is a high-level, object-oriented, dynamic, and multipurpose programming language. Python's syntax, dynamic typing, and interpreted nature make it an excellent scripting language. It supports a variety of programming paradigms, including object-oriented, functional, and procedural styles. Additionally, because it is an interpreted language, it cannot be converted to computer-readable code before running at runtime. Python is an open-source high-level programming language. Guido van Rossum initially released it in 1991. Another distinct property of Python is ... Read More

10K+ Views
In this article, we will discuss how to use Python to make websites. Python is a 1991 programming language that has increased in popularity over the last decade. Python coders are in high demand in the computer industry nowadays. Python is a general-purpose programming language, which means it can be used to develop practically any kind of computer program, including websites. It's a programming language that benefits any developer because it's very simple to learn while still being powerful enough for some of the most complex applications available. If you want to learn how to design a website with Python, ... Read More

17K+ Views
Yes, we can make an Android App with Python, let’s understand how with the following article. Why Use Python for Android App Development? Python has recently emerged as one of the most popular programming languages. Some of the benefits of using the Python framework for Android app development include: Faster Programming Performance Python programs, unlike other programming languages, are immediately executed by the interpreter, i.e., without a compiler, making it an ideal language for programming because it takes less time to execute and has a more basic technique for catching errors. Test-Driven Development Compatibility Python makes it simple to create ... Read More

515 Views
This tutorial will discuss how to write swift program to print numeric hourglass pattern. Numeric pattern is a sequence of numbers which is used to develop different patterns or shapes like pyramid, rectangle, cross, etc. These numeric patterns are generally used to understand or practice the program flow controls, also they are good for logical thinking. To create a numeric hourglass star pattern we can use any of the following methods − Using nested for loop Using init() Function Using stride Function Here we divide the numeric hourglass pattern in two portions upper half portion and ... Read More

386 Views
This tutorial will discuss how to write swift program to print half diamond numeric pattern. Numeric pattern is a sequence of numbers which is used to develop different patterns or shapes like pyramid, rectangle, cross, etc. These numeric patterns are generally used to understand or practice the program flow controls, also they are good for logical thinking. To create a half diamond numeric pattern, we can use any of the following methods − Using nested for loop Using init() Function Using stride Function Method 1 - Using Nested For Loop We can create a half diamond ... Read More

873 Views
This tutorial will discuss how to write swift program to print sandglass star pattern. Star pattern is a sequence of “*” which is used to develop different patterns or shapes like pyramid, rectangle, cross, etc. These star patterns are generally used to understand or practice the program flow controls, also they are good for logical thinking. To create a sandglass star pattern, we can use any of the following methods − Using nested for loop Using init() Function Using stride Function Here we divide the sandglass pattern in two portions upper half portion and lower half ... Read More

841 Views
This tutorial will discuss how to write swift program to print diamond star pattern. Star pattern is a sequence of “*” which is used to develop different patterns or shapes like pyramid, rectangle, cross, etc. These star patterns are generally used to understand or practice the program flow controls, also they are good for logical thinking. To create a diamond star pattern, we can use any of the following methods − Using nested for loop Using init() Function Using stride Function Here we divide the diamond in two portions upper half pyramid and lower half pyramid ... Read More