
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

289 Views
In this article, we will discuss the fastest way to learn Python with real-time examples. Python may be learned fast. How quickly you learn depends on what you want to do with it and how much time you have available to study and practice Python on a regular basis. Below are the tips to learn python fastly. Learn the Following Python Fundamentals At the very least, you must cover the fundamentals. You will struggle to work with difficult challenges, projects, or use cases if you do not understand them. Python fundamentals include − Variables and types Basic operators Lists, ... Read More

409 Views
Django is considered the best Python web framework for building database-driven websites. Django is an open-source full-stack web framework with an MVT (Model View Template) design. It is made up of a set of components and modules that aid in speedier development and is utilized by some of the world's most prominent firms, including Instagram, Mozilla, Spotify, Quora, YouTube, Reddit, Pinterest, Dropbox, bitly, Google, Disqus, and others. In this article, we will look at why Django is the most popular, preferred, and regarded as the greatest framework for web development. We'll go over its features one by one to see ... Read More

3K+ Views
In this article, we will discuss whether Python is good or suitable for making apps. The answer is YES, python is better for making apps. There are numerous top programming languages available for app development. However, there are no specific rules for determining which language is better for app development. There are numerous apps available, including food delivery, gaming, grocery delivery, social media apps, and so on. Each app has its own set of requirements and features. As a result, it is critical to understand each programming language separately. Also, understand which languages are suitable for mobile app development. Python, ... Read More

202 Views
In this article, we will discuss whether Is Python better for certain programming needs? like Competitive Coding. The answer is YES; python is better for coding. It makes code in fewer lines within a short period of time. Product-based companies require good coders, and one must pass the Competitive Coding round in order to advance to the interview rounds. Competitive coding is one such platform that will put your mental abilities as well as your speed to the test. Speed is an area in which python is second to none. In contrast to conventional programming languages such as C, C++, ... Read More

38K+ Views
In this article, we will discuss whether Can we code a website from Python and a step-by-step process to code a website in Python Can we code a website from python? Yes, you can build a website with Python - pretty easily, in fact. Although Python is a general-purpose programming language, it easily adapts itself to web development. Python web development is feasible due to "frameworks, " which are pre-built packages of Python code that serve as the foundation, or structure, for your website. Why should we create a website with Python? Generally, web development falls under the domain of ... Read More

663 Views
In this tutorial, we discuss writing a program to sort elements in lexicographical order in the Haskell programming language. Haskell is a Declarative, Strongly Typed, and Functional programming language. The computations in Haskell are mathematical functions. The lexicographical order is a dictionary order or in the order of the ASCII values of a character. In this tutorial, we see two different ways to implement a program to sort elements in lexicographical order in Haskell. Program to sort elements in lexicographical order using built-in function sort. Program to sort elements in lexicographical order using custom sorting functions. Algorithm steps ... Read More

884 Views
In this tutorial, we discuss writing a program to print ASCII values in the Haskell programming language. Haskell is a Declarative, Strongly Typed, and Functional programming language. The computations in Haskell are mathematical functions. ASCII stands for American Standard Code for Information Interchange, used in electronic data transfer and communication. These ASCII values represent characters in electronic devices. These values are used to describe characters and data in digital devices. ASCII is a 7-bit number representing a character. Example: 7-bit binary “1100001” represents character ‘a’ whose ASCII value is 97. In this tutorial, we see two different ways to print ... Read More

393 Views
In this tutorial, we discuss writing a program to generate a multiplication table in the Haskell programming language. ExampleMultiplication table of 12 up to 10 is 12 * 1 = 12 12 * 2 = 24 12 * 3 = 36 12 * 4 = 48 12 * 5 = 60 12 * 6 = 72 12 * 7 = 84 12 * 8 = 96 12 * 9 = 108 12 * 10 = 120 In this tutorial, we see Program to generate a multiplication table of a number up to the constant range of 10. (Tail ... Read More

1K+ Views
In this tutorial, we discuss writing a program to find the largest among the three numbers Haskell programming language We are going to learn three different ways to implement programs to find the largest among three numbers in Haskell. Program to find the largest among three numbers using if-else. Program to find the largest among three numbers using function max. Program to find the largest among three numbers using function maximum. Syntax variables in functions returning IO actions can be declared and initialized instantaneously using the “let” keyword. let num=100 The above line loads an Integer value ... Read More

975 Views
In this tutorial, we discuss writing a program to find the largest among the three numbers Haskell programming language. A quadratic equation is a second-degree algebraic equation. Example − a quadratic equation is of the form ax^2 + bx + c, where a, b, and c are constants and x is variable. A quadratic equation has two roots. Algorithm steps Take a quadratic equation as input. Implement the programming logic to compute the roots. Display the roots. Algorithm Logic Take input or initialize values for a, b, and c. As the quadratic expression can be constructed with ... Read More