Explain the difference between null=True and blank=True in Django Python

By Yashkumar Patel

In this tutorial, I will teach you the difference between null=true and blank=true in Django Python. Many times we have come across these names while declaring models but often don.... Read More

Command Line Arguments

By Arihant Jain

In Java, command line arguments are used to take user input before running the program in a single line. When we run the program in compiler, we write “javac filename.java.... Read More

Convert an XML into a dict in Python

By Yashkumar Patel

In this tutorial, we will learn how to Convert an XML into a dictionary in Python with a simple example. Nowadays, it is essential for a developer to do some tedious and lengthy pr.... Read More

Python Program for Stooge Sort

By Abinash Reddy

In this article, let’s discuss few points about the Stooge sort algorithm and its implementation in Python. Stooge sort is a recursive sorting algorithm. It is exceptional fo.... Read More

Python program to check whether given number is Hoax Number

By Abinash Reddy

In this article, we will learn how to check whether a given number is a Hoax Number in Python. A number is said to Hoax Number only when the sum of digits of its distinct prime fac.... Read More

How to count number of sentences in a text file in Java

By Ishika Koytekar

If you are wondering how many sentences does a .txt file contains? You will get your question answered here! In this tutorial, we are going to study how many sentences are present .... Read More

Adding Authentication (Level 1-2) to your Node.js Web App using Javascript

By LAKSHYA VERMA

We will learn how to add authentication ( level 1 – 2) to the Javascript web app through this tutorial. In many projects, programmers have to provide an authentication featur.... Read More

Print array-items containing all characters of a word in C++

By Manisha Rathore

In this tutorial, we will learn to print array-items containing all characters of a word in the C++ programming language. We have an array and string and we have to print array ite.... Read More