
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

166 Views
In the given problem we have to show the non-central F-distribution with the help of Python and its libraries. So we will explore what non-central F-distribution is and how to show it using Python. Understanding the Non-Central F-Distribution The Non-Central F-Distribution is a probability distribution in statistics which is basically used for analyzing variance in the given data. It uses the central F-distribution by using the non-centrality parameters which are used to make deviation. The non-central F-distribution used to determine the probability of observing a particular statistics. The figure of this distribution is generated using the degrees of freedom with ... Read More

250 Views
Binary Indexed Tree (also Fenwick Tree) is a data structure that efficiently handles range queries and point updates on an array. In this article, we are going to explore two different methods to implement a binary indexed tree in go, here implementation means we are performing main operations of a binary indexed tree that are creating a BIT(initialization), updation and prefix sum query. Explanation Fenwick Tree is a binary tree structure which efficiently maintains cumulative information about an array, specifically prefix sums and allows faster updates and queries on ranges. It has applications in various algorithms and problems like finding ... Read More

354 Views
Persistent data structures, such as a stack, are of pivotal significance to programming for organising and chronologically managing data efficiently. This article showcases different examples to implement a persistent data structure in go, focusing on stack. In the first example we use immutable slices to perform the operation, while the second method employs a linked list, here implementation means we are going to demonstrate the operations like insertion, updation and deletion on a persistent data structure. Explanation A persistent data structure allows preserving previous versions when modifications are to occur. In this context, a stack as a data structure ... Read More

223 Views
Concurrency is crucial to modern programming for enabling efficient use of resources in multi-core systems. Hash tries are associative data structures which provide a scalable and thread-safe handling of large amounts of data concurrently. In this article, we are going to learn to implement a concurrent hash trie in go, implementation here means we are going to demonstrate the operations like insertion, updation and deletion on a hash trie data structure. Explanation A concurrent hash trie as a data structure combines the benefits of hash maps and tries to allow multiple threads simultaneous access and modification rights associated with ... Read More

208 Views
In the given problem statement we are required to show the Non-central Chi-squared distribution with the help of Python. So we will be using Python libraries to show the required result. Understanding the Non-Central Chi-squared Distribution The distribution called non-central chi-squared is a probability distribution in statistics. This distribution is mainly used in power analysis. It is a generalization of chi-squared distribution. It can be obtained by summing up the squares of standard normal random variables. In this the shape of the distribution is defined by the degrees of freedom. It incorporates a non-centrality parameter. This parameter shows the presence ... Read More

630 Views
Concurrent hash maps can be perceived as efficient data structures for ensuring smooth and parallel execution. Designed to handle concurrent read and write operations efficiently, it is a valuable tool for building highly performant multi-threaded applications. In this article, we learn to implement a concurrent hash map in go. Syntax func NewConcurrentMap(size int) *ConcurrentMap The syntax defines a function named NewConcurrentMap defined to create and return an instance of a customized concurrent hash map named ConcurrentMap. Taking a size parameter to determine internal bucket count for data distribution, it encapsulates the initialization process. Algorithm Start by ... Read More

219 Views
In this problem statement we have to show the negative binomial discrete distribution in statistics with the help of Python. So for showing this statistic we will be using the numpy and matplotlib libraries of Python. What is Negative Binomial Discrete Distribution? In statistics, the Negative Binomial distribution represents the number of trials required to get the number of failures. In this the trial can result in success or failure. So we can say that the number of failures occurs before the number of successes is achieved in the trials. It is related to the geometric distribution. The Negative Binomial ... Read More

172 Views
In the given problem statement we have to create an algorithm to show the Nakagami Distribution in Statistics with the help of Python and its libraries. So in this article we will use matplotlib, numpy and scipy libraries of Python to solve the given problem. What is Nakagami Distribution in Statistics? The Nakagami distribution is basically a probability distribution. It consists of parameters, a sample dataset and a model description for probability distribution. This distribution is mainly used in communication to model signals which reach the receiver with the help of several paths. Understanding the Logic for the Problem The ... Read More

134 Views
The problem is to show the moyal distribution in statistics with the help of Python. So we will use numpy and matplotlib libraries of Python to plot the statistics in this article. But first we need to understand what exactly moyal distribution is. What is Moyal Distribution in Statistics? The moyal distribution is a probability distribution, which is basically used in statistics to model the distribution of a set of random variables. Understanding the Logic for the Problem The problem at hand is to create a statistical model for the Moyal distribution with the help of Python libraries. In this ... Read More

162 Views
In this article we will explain how to count the occurrences or repetition of elements in the given list of records using Python. Sometimes we need to make a count for the repeated number of items in the given dataset so this article will be helpful to solve these kinds of problems. Understanding the Problem The problem we have is to count the repeated items in the given list of records using the Python programming language. So basically we have to show the result of counts of the same or identical items in the given list of records. Let us ... Read More