Interpreted language An Interpreted language executes its statements line by line. Languages such as Python, Javascript, R, PHP, and Ruby is a prime examples of Interpreted languages. Programs written in an interpreted language runs directly from …

Last updated 3 years, 4 months ago | 1375 views

Tags:- PHP Python

Windows | Add desktop icon windows 10 1. Right-click on the desktop and click on Personalization   2. Under Personalization > Themes > Related Settings, select Desktop icon settings.   3. Choose the icons you would like to have on your …

Last updated 3 years, 9 months ago | 1588 views

Tags:- Windows

JQuery | Difference between JavaScript and JQuery  Javascript is a client-side scripting language whereas jQuery is a library (or framework) built with JavaScript.     Javascript JQuery  javascript is a dynamic and interpreted client-side scripting language …

Last updated 4 years, 3 months ago | 1695 views

Tags:- JQuery JavaScript

HTML | Basic tags A tag is a string in the language enclosed in angle brackets. An opening tag does not begin with a slash (/). An ending or closing tag is a string that …

Last updated 4 years, 4 months ago | 1903 views

Tags:- HTML

HTML  | What is HTML Elements HTML elements help to create a webpage. It consists of a start tag, some content, and an end tag.   Everything from the start tag to the end tag …

Last updated 4 years, 4 months ago | 1788 views

Tags:- HTML

Django rest framework  authentication error “ TypeError: 'type' object is not iterable ” This error comes because "authentication_classes" expecting an iterable(list/tuple) but somehow it is getting something else. So it needs to check a few …

Last updated 4 years, 5 months ago | 5781 views

Tags:- Python Django django-rest-framework

Django I Migrate Error: TypeError expected string or bytes-like object "TypeError: expected string or bytes-like object", says the value we have provided for updating the field for the model is not supported. So to resolve this issue …

Last updated 4 years, 5 months ago | 7126 views

Tags:- Django

Python | Bubble sort program Bubble Sort is the simplest sorting algorithm that works by repeatedly swapping the adjacent elements if they are not in the right order. This is an example for bubble sort …

Last updated 4 years, 5 months ago | 1763 views

Tags:- Python

Python | Program to find factorial of a number using recursive function This is an example of how to find the factorial of a number in python using a recursive function. The factorial of a …

Last updated 4 years, 5 months ago | 1920 views

Tags:- Python

Python | Program to find factorial of a number This is an example of how to find the factorial of a number in python. The factorial of a number is a product of all the positive …

Last updated 4 years, 5 months ago | 1999 views

Tags:- Python

Python | Create an empty class In python, it required adding a pass statement to define an empty class. The pass is a special statement in python that does nothing. It just works as a dummy statement.   …

Last updated 4 years, 5 months ago | 3342 views

Tags:- Python

Python | Check whether the given value is palindrome or not This is an example of how to check whether the given value is palindrome or not. It takes input from the user to check …

Last updated 4 years, 5 months ago | 2188 views

Tags:- Python

Python | Check whether the given number is a prime number or not This is an example of how to check whether the given number is a prime number or not. It takes an input …

Last updated 4 years, 5 months ago | 2038 views

Tags:- Python

Python | Print  Triangle pyramid pattern This is an example of how to print the Triangle pyramid pattern. It takes an input number from the user to print the number of rows for the pattern.  n …

Last updated 4 years, 5 months ago | 2274 views

Tags:- Python

Python | Fibonacci series This is an example of how to print the Fibonacci series. It takes an input number from the user to print the Fibonacci series. The Fibonacci series is a sequence of …

Last updated 4 years, 5 months ago | 1934 views

Tags:- Python