Programming
-
How to use Lodash in Browser with HTML and Javascript
Lodash is a javascript library that provides a very useful and cool handy function that helps to automate your web development process. It is a widely used javascript library out…
Read More » -
C Program to Calculate the Percentiles
In this article, we will learn how to calculate the percentiles and implement it into C programming. Percentile is a mathematical study in statistics. It indicates the average value for…
Read More » -
C Program to Calculate the Deciles
In this article, we will learn how to calculate the deciles and implement it into C programming. Decile is a mathematical study in statistics. Where it indicates the measure of…
Read More » -
C Program to Calculate the Quartiles
In this article, we will learn how to calculate the quartiles and implement it into C programming. Finding quartiles is a statistical study, where quartiles indicate the measures of central…
Read More » -
C Program to Read String and Print It
In this tutorial, we will learn how to read string from the user and displaying in the console using C Program. So let’s write a C program to Read String…
Read More » -
C Program to Find Largest Number Among Three Numbers
In this tutorial, we will learn How to find largest number among the three numbers. This problem consists of, when the program is run, it will ask three space-separated numbers…
Read More » -
C program to find the area and perimeter of a rectangle
In high school mathematics, the most common formulas of a rectangle are perimeter, area, diagonal, etc. In this tutorial, we will learn how to implement those formulae in the C…
Read More » -
C program to print name, birthday and city
In this tutorial, we will learn how to format and display personal information inside the console using C programming. To solve this problem we will use the printf function to…
Read More » -
Javascript Functions
What is Javascript Function Javascript functions are building block of code that is only executed when it is called or invoked. Function plays a very important role in building very…
Read More » -
Ruby gcdlcm() Method
Ruby gcdlcm() method takes two integer numbers (one as an object and another as a parameter) and returns an array of the GCD and LCM of that two numbers gradually.…
Read More » -
Ruby integer? Method
Ruby integer? method determines whether a specified number is an integer or not. If the specified number is integer returns true otherwise false. This method can check between two data…
Read More » -
Ruby lcm() Method
Ruby lcm() method calculates the LCM of two specified numbers. In mathematic LCM stands for least common multiple which means the lowest multiple divisible by both numbers. This method is only…
Read More » -
Ruby odd? Method
Ruby odd? method is an integer class function that is used to check the specified number whether it is odd or not. Applying this odd method to other data types…
Read More » -
Ruby magnitude Method
Ruby magnitude method is an integer class function that is used to find the absolute value of a specified integer. This function is the same as the Ruby abs() method.…
Read More » -
Ruby even? Method
Ruby even? method is an integer class function that is used to check if an integer number is even or not. Applying this method to any other data type including…
Read More »