
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

195 Views
Introduction Let us see how to create a C# program to create a string from the contents of a file. The string is an integral part of file handling. A string in C# is a series of letters. Like, "TutorialsPoint" is a string containing 't' 'u' 't' 'o' 'r' 'i' 'a' 'l' 's' 'p' 'o' 'i' 'n' 't' as characters. We use the string keyword to create a string. File handling or file management in layman's terms the various processes such as making the file, reading from it, writing to it, appending it, and so on. The viewing and writing ... Read More

463 Views
Introduction C# is a high-level language that caters to the large needs of programmers. It can also help in copying a file. So, in this article, we will learn a C# Program to Copy a File. As we know file copying falls in the category of file handling. So, before we proceed further let us recap the definition of file handling. File handling or file management in layman’s terms the various processes such as making the file, reading from it, writing to it, appending it, and so on. The reading and writing of files are the two most ... Read More

5K+ Views
Introduction Let us learn how to write C# program to check if a path is a directory or a file. A directory, also known as a folder, is a place on your computer where you can save files. A directory holds other directories or shortcuts in addition to files. A file is a collection of data on a drive that has a unique identifier and a directory path. When a file is opened for viewing or writing, it is transformed into a stream. The stream is simply a sequence of bytes traversing the communication route. Files vs Directory ... Read More

8K+ Views
Python is a high-level programming language. It is known for its optimization. It removes unnecessary aspects in programming and makes code effective. It is simple and easy to learn. Python allows to break the code into simpler parts so that it is easy to understand the code. It also allows us to reuse the code again hence reducing the number of lines of code. These are done using modules and functions. All the classes, variables and functions that are important are collected and placed in a module so that they can be used at anytime and anywhere in programs. Modules ... Read More

3K+ Views
A pivot table is a powerful data analysis tool that allows you to summarize and aggregate data based on different dimensions. In Python, you can create pivot tables using the pandas library, which provides flexible and efficient tools for data manipulation and analysis. To create a pivot table in pandas, you first need to have a dataset in a pandas DataFrame. You can load data into a DataFrame from various sources such as CSV files, Excel spreadsheets, SQL databases, and more. Once you have your data in a DataFrame, you can use the pandas pivot_table() function to create ... Read More

3K+ Views
Zoom is a video conferencing platform that has become increasingly popular for remote meetings and webinars. Zoom provides an API that allows developers to programmatically interact with Zoom's features and functionality, including creating and managing meetings. In this context, Python provides a simple and efficient way to create meetings through Zoom's API. By using Python, you can automate the process of creating Zoom meetings and integrate it with other workflows or applications. In this guide, we will explore how to create a meeting with the Zoom API in Python using the requests library and the Zoom API's authentication mechanisms. ... Read More

9K+ Views
In Python, you can create a matrix of random integers using the NumPy library. NumPy is a powerful library for scientific computing in Python that provides support for multidimensional arrays, among other things. To create a matrix of random integers using NumPy, you can use the numpy.random.randint() function. This function generates random integers between a specified range and returns a NumPy array of the specified shape. The range of integers to be generated is specified using the low and high arguments of the function. To specify the shape of the matrix, you can use the size argument of ... Read More

10K+ Views
A histogram is a graphical representation of the distribution of a dataset. It is a powerful tool for visualizing the shape, spread, and central tendency of a dataset. Histograms are commonly used in data analysis, statistics, and machine learning to identify patterns, anomalies, and trends in data. Pandas is a popular data manipulation and analysis library in Python. It provides a variety of functions and tools to work with structured data, including reading, writing, filtering, cleaning, and transforming data. Pandas also integrates well with other data visualization libraries such as Matplotlib, Seaborn, and Plotly. To create a histogram from ... Read More

2K+ Views
A cumulative histogram is a type of histogram that shows the cumulative distribution function (CDF) of a dataset. The CDF represents the probability that a random observation from the dataset will be less than or equal to a certain value. Cumulative histograms are useful when you want to compare the distribution of two or more datasets or when you want to visualize the proportion of data points that fall below a certain threshold. Plotly is a Python library for creating interactive and publication-quality visualizations. It is built on top of the D3.js visualization library and provides a wide range ... Read More

2K+ Views
Correlation analysis is a crucial technique in data analysis, helping to identify relationships between variables in a dataset. A correlation matrix is a table showing the correlation coefficients between variables in a dataset. It is a powerful tool that provides valuable insights into the underlying patterns in the data and is widely used in many fields, including finance, economics, social sciences, and engineering. In this tutorial, we will explore how to create a correlation matrix using Pandas, a popular data manipulation library in Python. To generate a correlation matrix with pandas, the following steps must be followed − ... Read More