Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Blog Directory  >  Blogging Blogs  >  Post Network blogging Blog  >

Post Network Blog


1
Tags:
Howdy, Post Network | Logout? Join the network www.postnetwork.co of bloggers, digital marketers, developers, students, trainers, and researchers, it is free. Sell and buy e-books, courses, and software packages. Promote your business and website by listing URLs. You can make friends, groups, forums to spread your ideas and promote your websites or businesses. Post questions and get answers. Write articles for fun or to promote your website or business. Read articles to grow your knowledge. Search and post jobs. All you need to connect your social media or email account to www.postnetwork.co, it’s easy and secure. To Know more visit the link, how to use www.postnetwork.co.
Exponential Distribution Formula A random variable X is said to follow Exponential distribution if it has the following probability density function the value f(x) is zero when x The post E… Read More
Before understanding Binomial distribution you have to understand Bernoulli trial. What is Bernoulli trial? A Bernoulli trial is a random experiment in which  there are two possible out… Read More
Variance and Standard Deviation are both essential concepts in statistics and finance. Let’s explore the differences between them: Variance: Definition: Variance is a numerical value t… Read More
  Suppose you want to solve an equation x2+1=0  then you will get x=√-1    which does not belongs to real number system. Leonhard Euler proposed to write √-1… Read More
Servo Motor Servo motors is a  special type of motor which can not move 360 degrees, however, it can move 180 degrees. Furthermore, it can be used for making smart dustbin project, … Read More
Arduino microcontroller is a very popular open source project which can be used to make prototype for electronics, robotics and IoT projects. In this post, I will explain how to on and off L… Read More
In real life, we often come across collection of objects viz. #Cricket Team #Pack of Cards #Members of a Club In mathematics, we also come across collections, examples are. #Odd natural numb… Read More
In this post you will see that how to make a program in Python which calculates factorial of a natural number, and how it works. You will see that how program is made line by line. First you… Read More
Write a program which finds sum of natural numbers in Python. To understand sum of natural numbers in Python, first understand natural numbers. Set of natural numbers are denoted by N and it… Read More
In this post,  I will explain how to make a Python program which will revere a number i.e. when input number is  325 the output would be 525. If you see the above code first line&n… Read More
Understand Decision Tree Learning Decision tree learning is a supervised learning algorithm, which can be used for classification as well […] The post Decision Tree Learning appeared… Read More
Arduino Projects  The post ATL appeared first on PostNetwork Academy Read More
A  function is called quadratic, if its domain and range is set of real numbers i.e f: R–>R  and it […] The post Quadratic Function in Mathematics appeared first on… Read More
A function is called identity function if its domain and range  is set of real numbers i.e f:R–>R  and is […] The post Identity Function in Mathematics appeared fir… Read More
a is refering to 5 which means wherever a is used its value would be 5 b is refering to […] The post Addition of Two Numbers in Python appeared first on PostNetwork Academy Read More
Adding two numbers in Python is very easy to understand, if you want to learn Python it is your starting […] The post Add Two Numbers in Python appeared first on PostNetwork Academy… Read More
Covariance and Correlation- Covariance and correlation both measure linear relationship between two variables.  However, they differ at some points. In […] The post Covariance an… Read More
Group in Algebra Let G be a non-empty set and * (multiplication) be a binary operation defined on G. Then […] The post Group in Algebra appeared first on Hub and Network of Posts… Read More
Mathematical or Classical Probability- If a random experiment is conducted which results in n exhaustive, mutually exclusive, and equally likely […] The post Definition of Probability… Read More
Entropy of a random  variable measures uncertainty  inherent to possible outcomes of the variable. H(X)= -Σi=1n    pilog2pi Where pi ... The post Entropy: A Me… Read More
In this post, I am going to explain how to attach a Servo motor with Arduino. I will explain about... The post Servo Motor with Arduino appeared first on Hub and Network of Posts. See Als… Read More
Python Programming Python is very popular Python character set These are character set The post Python table of contents appeared first on Hub and Network of Posts. See Also:Create Table… Read More
The post Python Quiz test appeared first on Hub and Network of Posts. See Also:Graphical User Interface (GUI) Programs in Python using tkinter Package Develop a Simple WordPress Plugin… Read More
In Python you can create an abstract class using library, but by default   there are not any mechanisms to provide […] The post Abstract Class and Method in Python appeared… Read More
R programming language is very popular for data science, machine learning and statistical computing. Furthermore, the syntax of R is […] The post Addition in R programming language ap… Read More
An array in Java is a collection of values having contiguous memory locations and share a common name. Suppose you […] The post Array in Java appeared first on Hub and Network of Pos… Read More
Generators in Python are like ordinary function the difference that it contains yield statement instead of return.  Furthermore, when a […] The post Generators in Python appeared… Read More
Suppose that in Python you want to   expand  an expression (x+y)2  to  x2 + y2 + 2 xy, this can […] The post sympy Library in Python appeared first on Hub an… Read More
Microsoft Excel is a very popular spreadsheet program which is easy to use and it has a lot formulas which are related to finance, statistics, logical and arithmetic etc.. Furthermore, this… Read More
If value of a parameter is already known then you can assign default values to a Python function’s parameter. Further, the default values can be specified in the function header. For e… Read More
Array in PHP- In PHP, there are three types of arrays , and array()  function is used to create an array in PHP. 1- Indexed or Numeric Array- In a numeric or an indexed array... The pos… Read More
ORDER BY Keyword is used to sort record in ascending or decending order. If you want to learn how to create a table, insert data into it and select record from table see my previous... The p… Read More
Dictionary in Python is a very important data-structure which can have elements in the form of of key value pairs key:value. Moreover, dictionary also provides different methods to manipulat… Read More
A list in Python is collection of values of any type such as integer, float, string or a complex number in a square bracket separated by comma. For example If you can create a list... The po… Read More
Set is a fundamental concept in mathematics and each object of interest in mathematics is set of some type. Set theory was developed by German mathematician George Cantor, who defined set as… Read More
List comprehension in Python refers to the shortcut and concise way to create a  list using for loop  or creating a Python list in Pythonic way. If you want to create a list l1 in… Read More
  Operators in python play very important role to compute mathematical, relational or logical expression. Operators in Python are tokens  and when they apply on variables they prov… Read More
Online Python Interpreters with Their Links : Google Collab                     https://co… Read More
During lockdown a number of webinars are conducted by several experts. Some are giving session on Yoga some are on parental care of kids during lockdown many more. I have also attended a web… Read More
https://studio.youtube.com/channel/UCUg_JZLYbz3b3cqsLk4-xtw/livestreaming/dashboard?v=resNkSSWHyohttps://studio.youtube.com/channel/UCUg_JZLYbz3b3cqsLk4-xtw/livestreaming/dashboard?v=resNkSS… Read More
File Handling in Python What happens when you run a program and input some data to be processed. You get result and if you again run your program your previous data are lost. Since Random… Read More
In Python, lambda keyword is used to create anonymous function in Python. User defined functions in Python are defined using def keyword. However, anonymous functions in Python are defined u… Read More
Chi Square Distribution Chi square variate is a square of a normal variate having 1 degree of freedom and  chi square distribution is a special case of Gamma distribution. If X is follo… Read More

Share the post

Post Network

×