Home
Jobs
Tools
Coding Ground
Current Affairs
UPSC Notes
Online Tutors
Whiteboard
Net Meeting
Tutorix
Categories
Java
JSP
iOS
HTML
Android
Python
C Programming
C++ Programming
C#
PHP
CSS
Javascript
jQuery
SAP
SAP HANA
Data Structure
RDBMS
MySQL
Mathematics
8085 Microprocessor
Operating System
Digital Electronics
Analysis of Algorithms
Mobile Development
Front End
Web Development
Selenium
MongoDB
Computer Network
General Topics
Library
Videos
Q/A
eBooks
Library
Videos
eBooks
Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
Android
Python
C Programming
C++
C#
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
Ayush Gupta
has Published
237
Answers
C++ Program to implement t-test
C++
Server Side Programming
Programming
Ayush Gupta
Published on 03-Dec-2019 10:57:34
In this tutorial, we will be discussing a program to implement t-test.The t-test of the student’s T test is used to compare two means and tell if both of them are similar or different. Along with this, t-test also helps to determine how large the differences are to know the ...
Read More
C++ Program to implement standard error of mean
C++
Server Side Programming
Programming
Ayush Gupta
Published on 03-Dec-2019 10:51:09
In this tutorial, we will be discussing a program to implement standard error of mean.Standard error of mean is the estimation of sample mean dispersion from population mean. Then it is used to estimate the approximate confidence intervals for the mean.Example#include <bits/stdc++.h> using namespace std; //calculating sample mean float calc_mean(float ...
Read More
C++ program to implement Run Length Encoding using Linked Lists
C++
Server Side Programming
Programming
Ayush Gupta
Published on 03-Dec-2019 10:38:20
In this tutorial, we will be discussing a program to implement Run Length Encoding using Linked Lists.For this we will be given with a linked list. OUr task is too encode the elements of the Linked List using Run Length Encoding.For example, if the elements of the linked list are ...
Read More
C++ program to implement standard deviation of grouped data
C++
Server Side Programming
Programming
Ayush Gupta
Published on 03-Dec-2019 10:35:06
In this tutorial, we will be discussing a program to implement standard deviation of grouped data.For this we will be given with class interval and frequency of the class. Our task is to find the standard deviation of the grouped data.Example#include <bits/stdc++.h> using namespace std; //finding mean of grouped data ...
Read More
C++ program to implement Simpson’s 3/8 rule
C++
Server Side Programming
Programming
Ayush Gupta
Published on 03-Dec-2019 10:32:48
In this tutorial, we will be discussing a program to implement SImpson’s ⅜ rule.Simpson’s ⅜ rule is used for doing numerical integrations. The most common use case of this method is in performing numerical approximations of definite integrals.In this, the parabolas on the graph are used for performing the approximations.Example#include<iostream> ...
Read More
C++ Program to implement Linear Extrapolation
C++
Server Side Programming
Programming
Ayush Gupta
Published on 03-Dec-2019 10:30:02
In this tutorial, we will be discussing a program to implement Linear Extrapolation.Extrapolation is defined as a process in which the required value for a certain function is beyond the lower or the upper limits of the function definition.In the case of Linear Extrapolation, the value beyond the scope is ...
Read More
C++ program to implement Inverse Interpolation using Lagrange Formula
C++
Server Side Programming
Programming
Ayush Gupta
Published on 03-Dec-2019 10:27:03
In this tutorial, we will be discussing a program to implement Inverse Interpolation using Lagrange formula.Inverse Interpolation is defined as the method of finding the value of an independent variable from the given value of dependent value lying between two tabulated set of values for an unknown function.Example#include <bits/stdc++.h> using ...
Read More
C++ program to implement ASCII lookup table
C++
Server Side Programming
Programming
Ayush Gupta
Published on 03-Dec-2019 10:25:02
In this tutorial, we will be discussing a program to implement ASCII lookup table.ASCII lookup table is a tabular representation that provides with the octal, hexadecimal, decimal and HTML values of a given character.The character for the ASCII lookup table includes alphabets, digits, separators and special symbols.Example#include <iostream> #include <string> ...
Read More
C++ program to implement Collatz Conjecture
C++
Server Side Programming
Programming
Ayush Gupta
Published on 03-Dec-2019 10:22:03
In this tutorial, we will be discussing a program to implement Collatz Conjecture.For this, we will be given with a number n and we have to find out whether it can be converted to 1 using two operations −If n is even, n is converted to n/2.If n is odd, ...
Read More
C++ program to get the Sum of series: 1 – x^2/2! + x^4/4! -…. upto nth term
C++
Server Side Programming
Programming
Ayush Gupta
Published on 03-Dec-2019 10:19:02
In this tutorial, we will be discussing a program to get the sum of series 1 – x^2/2! + x^4/4! … upto nth term.For this we will be given with the values of x and n. Our task will be to calculate the sum of the given series upto the ...
Read More
1
2
3
4
5
6
7
...
24
Next
Advertisements