
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 34089 Articles for Programming

4K+ Views
Radians and degrees are units of angular measurement used mainly in mathematics, physics, and engineering. Converting radians to degrees is important, as it is a common operation in trigonometry and other mathematical calculations. In this article, we will learn how to convert Radians to Degrees using JavaScript. .tp-container { padding: 2rem; max-width: 400px; max-width: fit-content; margin-left: auto; margin-right: auto; } .input-group { margin-bottom: 1rem; } .tp-input { width: 100%; ... Read More

1K+ Views
JavaScript Object Notation or JSON is recognized widely for data interchange while exporting and importing modular result data is done through CSV (Comma-Separated Values). It is quite common to convert JSON to any other format for reporting purposes or to integrate with different systems. In this article, we will explore different ways to transform JSON data into CSV format in JavaScript, incorporating its code, examples, and clarifications of its principles. Understanding JSON and CSV Formats JSON: JSON represents data as an array of objects, with each object containing key-value pairs. ... Read More

534 Views
Programming languages are used to write code to develop websites and applications. Framework is a platform on which different programming languages can work. Programming languages depend on syntax while frameworks deal with architecture. In this article, we will talk about the difference between Frameworks and Programming Languages. Programming Languages Software developers use different kinds of programming languages to develop an application. They have to use the syntax of a programming language to give instructions. These instructions let the computer know how to execute a code. The processor converts the code into machine language which is understood by computers. The output ... Read More

244 Views
Frontend and backend are the parts of web development. The processes done at the backend are not visible to the users. They only work on the frontend. There are many differences between the frontend and backend languages and development. In this article, we will look into the difference between frontend and backend languages. But before that, we should know in detail about frontend and backend. Frontend The frontend is the visual aspect of a website or a webpage which is also known as the client-side of an application. Users work on the frontend by working on different components like text ... Read More

743 Views
Procedural programming is a type of programming in which different functions or routines are created which consists of a sequence of instructions. Functional programming is used to organize the functions. Each function has to be set in such a way that they can perform the required task. We will discuss the difference between procedural programming languages and functional programming languages. Procedural Programming Languages Procedural programming languages have functions which you have to define. These functions need to have a set of instructions which should be executed when the function is called. You have to think about each instruction that you ... Read More

837 Views
Programming languages can be interpreted or compiled. The compiled languages are not interpreted and there is no need to compile the interpreted languages. In this article, we will discuss the difference between compiled and interpreted languages. Compiled Programming Languages Compiled programming languages are the languages in which the code has to be compiled to convert it into machine language. This helps the processor execute the code and provide the result. C, C++, C#, Java, etc. are some of the languages which have to be compiled and then executed. What is Compile? Compile is a process which is used to convert ... Read More

2K+ Views
What are Outliers? Outliers are the data points or observations which are far from the other points in a dataset. Outliers are caused due to measurement error, data entry error or experimental error etc. Outliers can skew the dataset which effects in statistical analysis and can increase the standard deviation of the dataset further effecting model prediction. An outlier may be a valid data point or can be noise. For a better understanding let us look at an example scenario. Imagine you are collecting data of student's height (age between 9 to 12 years). Most of the students are around ... Read More

3K+ Views
The Python winsound module is a simple way to play audio files on a Windows machine using Python. It has a straightforward interface that allows you to play sound files and MIDI files, and control MIDI devices with just a few lines of code. The winsound module is part of the Python standard library, so you don't need to install it separately. While it has some limitations such as only supporting a limited number of audio file formats, it can be a useful tool for simple audio tasks in Python. In this tutorial, we'll explore the features and ... Read More

645 Views
A choropleth map is a map that displays data on geographic regions using different colors or shades to represent values. The data is usually represented as a color scale, with darker colors indicating higher values and lighter colors indicating lower values. Choropleth maps are useful for visualizing data on a map, such as demographic data, election results, or economic indicators. Plotly is a Python data visualization library that allows users to create interactive plots and charts. It offers a range of features for creating custom visualizations, including line charts, scatterplots, bar charts, and choropleth maps. Plotly is widely used ... Read More

2K+ Views
An important aspect of creating accurate simulations is the ability to choose elements from a list with different probabilities. For example, in a simulation of a crowd, certain actions may be more likely to occur than others, or in a simulation of a physical system, particles may move with different probabilities in different directions Python provides several ways to choose elements from a list with different probabilities. In this tutorial, we'll explore the different techniques for doing so, using the built-in random module and the NumPy module. Choosing Elements from a List with Equal Probability Let's first discuss ... Read More