diff --git a/Calculators/Basic-Calculator-2.0/README.md b/Calculators/Basic-Calculator-2.0/README.md
new file mode 100644
index 000000000..923e06d3b
--- /dev/null
+++ b/Calculators/Basic-Calculator-2.0/README.md
@@ -0,0 +1,18 @@
+## Description :-
+Added additional functionalities in the basic calculator for the point "."
+
+## Tech Stacks :-
+
+- HTML
+- CSS
+- JavaScript
+
+## Screenshots :-
+If point is at the zero index 0 will be displayed before . (point) so the resultant innerText of the result will become 0.
+![image](/./CalcDiverse/Calculators/Basic-Calculator-2.0/image/Screenshot1.jpg)
+
+If the first element inside the opening parenthesis is . then zero 0 will be displayed before the point.
+![image](/./CalcDiverse/Calculators/Basic-Calculator-2.0/image/Screenshot2.jpg)
+
+If the first element after any operator is . then zero 0 will be displayed before the point.
+![image](/./CalcDiverse/Calculators/Basic-Calculator-2.0/image/Screenshot3.jpg)
\ No newline at end of file
diff --git a/Calculators/Basic-Calculator-2.0/image/Screenshot1.jpg b/Calculators/Basic-Calculator-2.0/image/Screenshot1.jpg
new file mode 100644
index 000000000..cc82a3487
Binary files /dev/null and b/Calculators/Basic-Calculator-2.0/image/Screenshot1.jpg differ
diff --git a/Calculators/Basic-Calculator-2.0/image/Screenshot2.jpg b/Calculators/Basic-Calculator-2.0/image/Screenshot2.jpg
new file mode 100644
index 000000000..7919ca60e
Binary files /dev/null and b/Calculators/Basic-Calculator-2.0/image/Screenshot2.jpg differ
diff --git a/Calculators/Basic-Calculator-2.0/image/Screenshot3.jpg b/Calculators/Basic-Calculator-2.0/image/Screenshot3.jpg
new file mode 100644
index 000000000..a3ff00180
Binary files /dev/null and b/Calculators/Basic-Calculator-2.0/image/Screenshot3.jpg differ
diff --git a/Calculators/Basic-Calculator-2.0/index.html b/Calculators/Basic-Calculator-2.0/index.html
new file mode 100644
index 000000000..6e41f824b
--- /dev/null
+++ b/Calculators/Basic-Calculator-2.0/index.html
@@ -0,0 +1,55 @@
+
+
+
+
+
+
+
+
+ Basic Calculator
+
+
+
+
+ 🌞 🌙
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Calculators/Basic-Calculator-2.0/script.js b/Calculators/Basic-Calculator-2.0/script.js
new file mode 100644
index 000000000..aef51368a
--- /dev/null
+++ b/Calculators/Basic-Calculator-2.0/script.js
@@ -0,0 +1,78 @@
+let body = document.querySelector("body");
+let btn = document.querySelector(".btn");
+let calc = document.forms["calc"];
+let txt = calc.elements["txt"];
+let math = window.math;
+let display = document.getElementById("display");
+// let zero = document.getElementById("display");
+
+
+document.addEventListener("keydown", function (event) {
+ const validKeys = /^[0-9.\+\-\*\/\(\)\^\%\{\}\[\]&]$/;
+ if (validKeys.test(event.key)) {
+ document.getElementById("display").value += event.key;
+ } else if (event.key === "Enter") {
+ event.preventDefault();
+ calculate();
+ } else if (event.key === "Backspace") {
+ removeFromDisplay();
+ }
+});
+
+function removeFromDisplay() {
+ let value = display.value;
+ value = value.substring(0, value.length - 1);
+ display.value = value;
+}
+
+function clearDisplay() {
+ display.value = "";
+}
+
+function calculate() {
+ try {
+ const result = eval(display.value);
+ display.value = result;
+ } catch (error) {
+ display.value = "Error";
+ }
+}
+
+btn.onclick = function () {
+ body.classList.toggle("light");
+};
+
+calc.onsubmit = calculate(e);
+
+function clearOne() {
+ let currentValue = calc.txt.value;
+ calc.txt.value = currentValue.slice(0, -1);
+}
+
+function point() {
+ let currentValue = calc.txt.value;
+ if (currentValue == "") {
+ calc.txt.value = '0' + '.';
+ }
+ else {
+
+ if (currentValue.charAt(currentValue.length - 1) == "." || currentValue.charAt(currentValue.length - 1) == "(") {
+ calc.txt.value = calc.txt.value + '0' + '.';
+ return;
+ }
+ if (currentValue.charAt(currentValue.length - 1) == "+" ||
+ currentValue.charAt(currentValue.length - 1) == "*" ||
+ currentValue.charAt(currentValue.length - 1) == "-" ||
+ currentValue.charAt(currentValue.length - 1) == "/" ||
+ currentValue.charAt(currentValue.length - 1) == "%" ||
+ currentValue.charAt(currentValue.length - 1) == "√" ||
+ currentValue.charAt(currentValue.length - 1) == "^") {
+ calc.txt.value = calc.txt.value + '0' + '.';
+ return;
+ }
+ else {
+ calc.txt.value = calc.txt.value + ".";
+ return;
+ }
+ }
+};
diff --git a/Calculators/Basic-Calculator-2.0/style.css b/Calculators/Basic-Calculator-2.0/style.css
new file mode 100644
index 000000000..c5c06c29f
--- /dev/null
+++ b/Calculators/Basic-Calculator-2.0/style.css
@@ -0,0 +1,192 @@
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ font-family: consolas;
+}
+
+body {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ min-height: 100vh;
+ background: #333;
+}
+
+body.light {
+ background: #f8f8f8;
+}
+
+.container {
+ position: relative;
+ min-width: 300px;
+ min-height: 400px;
+ background: #333;
+ padding: 40px 30px 30px;
+ border-radius: 20px;
+ box-shadow: 25px 25px 75px rgba(0, 0, 0, 0.25),
+ 10px 10px 75px rgba(0, 0, 0, 0.25), inset -5px -5px 15px rgba(0, 0, 0, 0.5),
+ inset 5px 5px 15px rgba(0, 0, 0, 0.5);
+}
+
+body.light .container {
+ background: #fafafa;
+ box-shadow: 25px 25px 75px rgba(0, 0, 0, 0.15),
+ 10px 10px 75px rgba(0, 0, 0, 0.15), inset -5px -5px 15px rgba(0, 0, 0, 0.15),
+ inset 5px 5px 15px rgba(0, 0, 0, 0.05);
+}
+
+.calculator {
+ position: relative;
+ display: grid;
+ grid-template-columns: repeat(6, 1fr);
+}
+
+.calculator .value {
+ position: relative;
+ grid-column: span 6;
+ height: 100px;
+ left: 10px;
+ width: calc(100% - 20px);
+ border: none;
+ outline: none;
+ background: #a7af7c;
+ margin-bottom: 10px;
+ border-radius: 10px;
+ box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.75);
+ text-align: right;
+ padding: 10px;
+ font-size: 2em;
+}
+
+.calculator span {
+ position: relative;
+ display: grid;
+ place-items: center;
+ width: 80px;
+ height: 80px;
+ margin: 8px;
+ background: linear-gradient(180deg, #2f2f2f, #3f3f3f);
+ box-shadow: inset -8px 0 8px rgba(0, 0, 0, 0.15),
+ inset 0 -8px 8px rgba(0, 0, 0, 0.25), 0 0 0 2px rgba(0, 0, 0, 0.75),
+ 10px 20px 25px rgba(0, 0, 0, 0.4);
+ color: #fff;
+ user-select: none;
+ cursor: pointer;
+ font-weight: 400;
+ border-radius: 10px;
+}
+
+body.light .calculator span::before {
+ background: linear-gradient(90deg, #e6e6e6, #efefef);
+ box-shadow: -10px -10px 10px rgba(255, 255, 255, 0.25),
+ 10px 5px 10px rgba(0, 0, 0, 0.15);
+ border-left: 1px solid #fff4;
+ border-bottom: 1px solid #fff4;
+ border-top: 1px solid #fff9;
+}
+
+.calculator span:active {
+ filter: brightness(1.5);
+}
+
+body.light .calculator span:active {
+ filter: brightness(0.9);
+}
+
+.calculator span i {
+ position: relative;
+ font-style: normal;
+ font-size: 1.5em;
+ text-transform: uppercase;
+}
+
+body.light .calculator span i {
+ color: #fff;
+}
+
+body.light .calculator span.clear i,
+body.light .calculator span.result-give i {
+ color: #fff;
+}
+
+body.light .calculator .clear,
+.calculator .clear {
+ grid-column: span 2;
+ width: 180px;
+ background: #f00;
+}
+
+body.light .calculator .clear-one,
+.calculator .clear-one {
+ background: #2196f3;
+}
+
+body.light .calculator .clear::before,
+.calculator .clear::before {
+ background: linear-gradient(90deg, #d20030, #ffffff5c);
+ border-left: 1px solid #fff4;
+ border-bottom: 1px solid #fff4;
+ border-top: 1px solid #fff4;
+}
+
+.calculator .equal {
+ grid-row: span 2;
+ height: 180px;
+}
+
+body.light .calculator .result-give,
+.calculator .result-give {
+ background: #2196f3;
+}
+
+body.light .calculator .result-give::before,
+.calculator .result-give::before {
+ background: linear-gradient(90deg, #1479c9, #ffffff5c);
+ border-left: 1px solid #fff4;
+ border-bottom: 1px solid #fff4;
+ border-top: 1px solid #fff4;
+}
+
+.btn {
+ position: absolute;
+ border: rgba(0, 0, 0, 0.1) solid;
+ border-radius: 10px;
+ top: 20px;
+ right: 20px;
+ width: 60px;
+ height: 60px;
+ background: #333;
+ font-size: 1.5em;
+ box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.25), 5px 5px 30px rgba(0, 0, 0, 0.25),
+ inset -2px -2px -5px rgba(0, 0, 0, 0.25),
+ inset 2px 2px 5px rgba(0, 0, 0, 0.25);
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ cursor: pointer;
+}
+
+body.light .btn {
+ background: #000;
+ box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1), 5px 5px 30px rgba(0, 0, 0, 0.05),
+ inset -2px -2px -5px rgba(0, 0, 0, 0.1),
+ inset 2px 2px 5px rgba(0, 0, 0, 0.05);
+}
+
+.btn strong {
+ display: none;
+ color: yellow;
+}
+
+.btn strong:nth-child(1) {
+ display: block;
+}
+
+body.light .btn strong:nth-child(1) {
+ display: none;
+}
+
+body.light .btn strong:nth-child(2) {
+ display: block;
+}
\ No newline at end of file
diff --git a/index.html b/index.html
index aab0626e6..2a520396e 100644
--- a/index.html
+++ b/index.html
@@ -36,19 +36,24 @@
Home
- About
+ About
- Calculators
+
+ Calculators
- Contributors
+ Contributors
- FAQ
+ FAQ
- Contact
+ Contact
@@ -86,7 +91,8 @@ All calculators, spot in a single place!!
@@ -98,8 +104,9 @@ Calculates the distance between two points on a 2D plane.
Try Now
-
-
+
+
@@ -112,7 +119,8 @@ Calculates the area and perimeter of different useful 2D shapes.
Try Now
-
+
@@ -126,7 +134,8 @@ Calculates the volume of different important and useful 3D shapes.
Try Now
-
+
@@ -140,7 +149,8 @@ Calculate the theoretical resistance of a 4-band resistor.
Try Now
-
+
@@ -154,7 +164,8 @@ Calculates the person's age by taking in the date of birth as input.
Try Now
-
+
@@ -168,7 +179,8 @@ Calculates the antilog of the any given number taken over any base.
Try Now
-
+
@@ -182,7 +194,8 @@ Calculates nth Term and sum of n Terms present in an Arithmetic Sequence.
Try Now
-
+
@@ -196,7 +209,8 @@ Computes all the Armstrong Numbers for the specified Number of digits.
Try Now
-
+
@@ -210,7 +224,8 @@ Calculates the aspect ratio of the specified height and width.
Try Now
-
+
@@ -221,15 +236,33 @@ Calculates the aspect ratio of the specified height and width.
Basic Calculator
Basic old school calculator for simple calculations
+
+
+
+
Basic Calculator-2.0
+ Interconverts color codes among RGB, RGBA, HEX (Hexadecimal), HSL, HSV and CMYK
+
+
+
+
Bayes Theorem Calculator
@@ -238,7 +271,8 @@
Calculates the probability of an event A given that event B has occurred.
Try Now
-
+
@@ -252,7 +286,8 @@
Effortlessly split bills with our calculator. Simplify expense sharing now!<
Try Now
-
+
@@ -266,7 +301,8 @@ Calculates results of different bitwise operations based on inputs.
Try Now
-
+
@@ -280,7 +316,8 @@ Calculates the Body Mass Index of a person using Height & Weight.
Try Now
-
+
@@ -294,7 +331,8 @@ Calculates the time required to finish reading a book.
Try Now
-
+
@@ -308,7 +346,8 @@ Check the number is bouncy or not and finds bouncy numbers in a range.
Try Now
-
+
@@ -322,7 +361,8 @@ Calculates the amount of calories burnt from particular exercise.
Try Now
-
+
@@ -336,7 +376,8 @@ Calculates daily calorie intake based on given inputs.
Try Now
-
+
@@ -345,12 +386,14 @@ Calculates daily calorie intake based on given inputs.
Carbon Footprint Calculator
-
Calculates an individual's carbon footprint based on the miles driven per year, per month, and per week.
+
Calculates an individual's carbon footprint based on the miles driven per year, per month, and per
+ week.
@@ -364,7 +407,8 @@
Calculates Centripetal force and acceleration.
Try Now
-
+
@@ -378,7 +422,8 @@
Converts CGPA to percentage and vice-versa.
Try Now
-
+
@@ -392,7 +437,8 @@ Checks if a number is circular prime and finds circular prime numbers in a r
Try Now
-
+
@@ -406,7 +452,8 @@ Calculates the angle between the hour and minute hands for a specified time.
Try Now
-
+
@@ -415,12 +462,14 @@ Calculates the angle between the hour and minute hands for a specified time.
Clothing Size Calculator
-
Inter-converts clothing sizes from one country to another, the international size, and the exact measurements for each size.
+
Inter-converts clothing sizes from one country to another, the international size, and the exact
+ measurements for each size.
@@ -434,7 +483,8 @@
Interconverts color codes among RGB, RGBA, HEX (Hexadecimal), HSL, HSV and C
Try Now
-
+
@@ -448,7 +498,8 @@
Perfoms mathematical operations on complex numbers.
Try Now
-
+
@@ -462,7 +513,8 @@ Takes Principal amount, time in years, interest rate and Gives compound inte
Try Now
-
+
@@ -476,7 +528,8 @@ Calculates the Conductivity & Resistivity.
Try Now
-
+
@@ -490,7 +543,8 @@ Calculates the time in which you can payoff your Credits.
Try Now
-
+
@@ -504,7 +558,8 @@ Calculates various cricket related terms.
Try Now
-
+
@@ -518,7 +573,8 @@ Converts various css units.
Try Now
-
+
@@ -532,7 +588,8 @@ Checks if a number is cuban prime or not and finds cuban prime numbers in a
Try Now
-
+
@@ -546,7 +603,8 @@ Calculates cube root of any number.
Try Now
-
+
@@ -560,7 +618,8 @@ solves cubic equations, providing real or complex solutions
Try Now
-
+
@@ -574,7 +633,8 @@ Converts the value of one Currency unit into another Currency unit.
Try Now
-
+
@@ -588,7 +648,8 @@ Converts input data size to other data sizes instantly.
Try Now
-
+
@@ -602,7 +663,8 @@ Calculates Date & Time of the specific period.
Try Now
-
+
@@ -616,7 +678,8 @@ Calculates the day for the specified date.
Try Now
-
+
@@ -630,7 +693,8 @@ Evaluates integral of mathematical functions with definite limits.
Try Now
-
+
@@ -644,7 +708,8 @@ Converts the Degree into Radian and vice-versa.
Try Now
-
+
@@ -658,7 +723,8 @@ Evaluates derivatives and mathematical functions.
Try Now
-
+
@@ -672,7 +738,8 @@ Checks the number is disarium or not and finds disarium numbers in a range.<
Try Now
-
+
@@ -686,7 +753,8 @@ Unlock Savings with Precision: Your Ultimate Discount Calculator.
Try Now
-
+
@@ -700,8 +768,9 @@ Calculates the required time for downloading as per different system configu
Try Now
-
-
+
+
@@ -714,8 +783,9 @@ Calculates electricity costs based on user-supplied units, time, and cost pa
Try Now
-
-
+
+
@@ -728,7 +798,8 @@ Calculates Area and Perimeter for Ellipse and Hyperbola.
Try Now
-
+
@@ -742,7 +813,8 @@ Calculates The EMI based on loan amount, interest rate and tenure.
Try Now
-
+
@@ -756,8 +828,9 @@ Estimates the annual energy and water consumption.
Try Now
-
-
+
+
@@ -770,7 +843,8 @@ Calculates the Equivalent Resistance of the Series and Parallel Configuratio
Try Now
-
+
@@ -784,7 +858,8 @@ Calculates the Savings from your income and expenditure.
Try Now
-
+
@@ -798,7 +873,8 @@ Takes two numbers X and Y and then calculate XY .
Try Now
-
+
@@ -812,7 +888,8 @@ Calculates the factorial of any large number instantly.
Try Now
-
+
@@ -826,7 +903,8 @@ Calculates the Nth number from Fibonacci Sequence.
Try Now
-
+
@@ -840,7 +918,8 @@ Calculates the cost of fuel based on fuel efficiency and distance travelled.
Try Now
-
+
@@ -854,7 +933,8 @@ Calculates the efficiency of a vehicle.
Try Now
-
+
@@ -868,7 +948,8 @@ Calculates Greatest Common Divisor of Two values or multiple values.
Try Now
-
+
@@ -882,7 +963,8 @@ Calculates the nth root of a given number upto n precision.
Try Now
-
+
@@ -896,7 +978,8 @@ Calculates nth Term and sum of n Terms present in an Geometric Sequence.
Try Now
-
+
@@ -910,7 +993,8 @@ Calculates SGPA and CGPA on the basis of credits and grades.
Try Now
-
+
@@ -924,7 +1008,8 @@ Calculates the grade based on marks entered.
Try Now
-
+
@@ -938,7 +1023,8 @@ Calculator which includes a graphical display to visualize functions.
Try Now
-
+
@@ -952,7 +1038,8 @@ Calculates the Goods and Service tax of any product in rupees and dollars.
Try Now
-
+
@@ -966,7 +1053,8 @@ Check if a number is Happy or not and finds happy number in a range.
Try Now
-
+
@@ -980,7 +1068,8 @@ Calculates the nth term of Harmonic Progression series.
Try Now
-
+
@@ -994,7 +1083,8 @@ Calculates the heart rate monitors.
Try Now
-
+
@@ -1008,7 +1098,8 @@ Calculates total budget for home renovation.
Try Now
-
+
@@ -1022,7 +1113,8 @@ Calculates tax liability based on user input annual income.
Try Now
-
+
@@ -1036,7 +1128,8 @@ Converts between infix, prefix and postfix expressions.
Try Now
-
+
@@ -1044,13 +1137,14 @@ Converts between infix, prefix and postfix expressions.
-
Intelligence Calculator
+
Intelligence Calculator
Shows the intelligence using his/her IQ.
@@ -1064,7 +1158,8 @@
Calculates the risk in Investment on the basis of some input parameters.
Try Now
-
+
@@ -1078,7 +1173,8 @@
Calculates LCM of multiple numbers.
Try Now
-
+
@@ -1092,7 +1188,8 @@ Calculates the length conversion between two specified units.
Try Now
-
+
@@ -1106,7 +1203,8 @@ Calculates values of variables from linear equation in two variables.
Try Now
-
+
@@ -1120,8 +1218,9 @@ Calculates the due date of the ongoing loan.
Try Now
-
-
+
+
@@ -1134,7 +1233,8 @@ Calculates the log of the given number to any base.
Try Now
-
+
@@ -1143,12 +1243,14 @@ Calculates the log of the given number to any base.
Love Calculator
-
Calculates a percentage score of love compatibility based on names or birthdates (mostly for fun).
+
Calculates a percentage score of love compatibility based on names or birthdates (mostly for fun).
+
@@ -1162,7 +1264,8 @@
Calculates the Mass conversion between two specified units.
Try Now
-
+
@@ -1176,7 +1279,8 @@
Your key to matrix operations!
Try Now
-
+
@@ -1190,7 +1294,8 @@ Computes the total atomic weights of elements in a given chemical formula
Try Now
-
+
@@ -1204,7 +1309,8 @@ It allows users to compare old and new loan terms by inputting relevant info
Try Now
-
+
@@ -1218,7 +1324,8 @@ Calculates the multiplication table of any number.
Try Now
-
+
@@ -1232,7 +1339,8 @@ Checks the number is neon or not and finds neon numbers in a range.
Try Now
-
+
@@ -1246,7 +1354,8 @@ Calculates the actual take-home pay from your Cost to Company (CTC).
Try Now
-
+
@@ -1260,7 +1369,8 @@ Calculates the days remaining until the next birthday.
Try Now
-
+
@@ -1274,7 +1384,8 @@ Calculates the number of days between two specified dates.
Try Now
-
+
@@ -1288,7 +1399,8 @@ Converts binary to decimal, octal, hexadecimal and vice versa.
Try Now
-
+
@@ -1302,7 +1414,8 @@ Checks if an entered number or string is Palindrome or not.
Try Now
-
+
@@ -1316,7 +1429,8 @@ Calculates the value percentage of any given number.
Try Now
-
+
@@ -1330,7 +1444,8 @@ Converts given Percentage to Fraction and vice-versa with detailed solution.
Try Now
-
+
@@ -1344,7 +1459,8 @@ Calculates nPr and nCr after taking inputs as n and r.
Try Now
-
+
@@ -1358,7 +1474,8 @@ Calculates power between different units.
Try Now
-
+
@@ -1367,12 +1484,14 @@ Calculates power between different units.
Pregnancy Due Date Calculator
-
Designed to estimate the due date for a pregnant woman based on the first day of her last menstrual period.
+
Designed to estimate the due date for a pregnant woman based on the first day of her last menstrual
+ period.
@@ -1386,7 +1505,8 @@
Calculates the Pressure conversion between two specified units.
Try Now
-
+
@@ -1400,7 +1520,8 @@
Calculates the prime factors of the given number.
Try Now
-
+
@@ -1414,7 +1535,8 @@ Calculates the Probability of different events.
Try Now
-
+
@@ -1428,7 +1550,8 @@ Calculates Max Height, Range, Time Of Flight of Projectile.
Try Now
-
+
@@ -1442,7 +1565,8 @@ Checks if a number is pronic and finds pronic numbers in a range.
Try Now
-
+
@@ -1456,7 +1580,8 @@ Input three values to compute the fourth, showcasing proportionality..
Try Now
-
+
@@ -1470,7 +1595,8 @@ Which takes two sides of right-angled triangle and gives third side.
Try Now
-
+
@@ -1484,7 +1610,8 @@ Generates the QR Code according to the given input.
Try Now
-
+
@@ -1498,7 +1625,8 @@ Calculates the roots of a quadratic equation.
Try Now
-
+
@@ -1512,7 +1640,8 @@ Calculates the Quotient and Remainder.
Try Now
-
+
@@ -1526,7 +1655,8 @@ Which takes two numbers X and Y and then calculate X / Y.
Try Now
-
+
@@ -1535,12 +1665,14 @@ Which takes two numbers X and Y and then calculate X / Y.
Real Estate Calculator
-
This tool allows users to input property details and obtain essential information for financial planning.
+
This tool allows users to input property details and obtain essential information for financial
+ planning.
@@ -1554,7 +1686,8 @@
Converts Rectangular form into Polar form and vice versa.
Try Now
-
+
@@ -1568,7 +1701,8 @@
Calculates the Short URL from Long URL.
Try Now
-
+
@@ -1582,7 +1716,8 @@ Calculates the simple interest.
Try Now
-
+
@@ -1596,7 +1731,8 @@ Calculates the amount of sleep required based on age and activity level.
Try Now
-
+
@@ -1610,7 +1746,8 @@ Calculator that determines whether a given number is a Smith number or not.<
Try Now
-
+
@@ -1624,7 +1761,8 @@ This tool allows users to convert speeds between different units.
Try Now
-
+
@@ -1638,7 +1776,8 @@ Calculates square and cube of a number.
Try Now
-
+
@@ -1652,7 +1791,8 @@ Calculates the square root of a number instantly.
Try Now
-
+
@@ -1666,7 +1806,8 @@ Calculates Maximum, minimum, mean, median, mode, etc.
Try Now
-
+
@@ -1680,7 +1821,8 @@ Computes stress and strain using force, area, and length inputs.
Try Now
-
+
@@ -1689,12 +1831,14 @@ Computes stress and strain using force, area, and length inputs.
Sunrise Sunset Calculator
-
Calculates approximate about when the sun will rise and set at that particular point on the Earth's surface.
+
Calculates approximate about when the sun will rise and set at that particular point on the Earth's
+ surface.
@@ -1708,7 +1852,8 @@
Calculator that gives an idea of the returns on their mutual fund investment
Try Now
-
+
@@ -1722,8 +1867,9 @@
Calculates the cost of taxi ride based on distance, base fare and time.
Try Now
-
-
+
+
@@ -1736,7 +1882,8 @@ Calculates the Taylor Series expansion of a mathematical function.
Try Now
-
+
@@ -1750,7 +1897,8 @@ Calculates the Temperature conversion between two specified units.
Try Now
-
+
@@ -1764,7 +1912,8 @@ Whatever number you give it will return 7.
Try Now
-
+
@@ -1778,7 +1927,8 @@ Calculates Hours, Minutes, Seconds for any entered time.
Try Now
-
+
@@ -1792,7 +1942,8 @@ Instantly find the time difference anywhere in the world.
Try Now
-
+
@@ -1806,7 +1957,8 @@ Calculates the different results of a triangle based on input sides.
Try Now
-
+
@@ -1820,7 +1972,8 @@ Calculates trigonometric functions and inverses.
Try Now
-
+
@@ -1834,7 +1987,8 @@ Provides the graph as per the given function like sin, cos, tan, etc.
Try Now
-
+
@@ -1848,7 +2002,8 @@ Calculates the typing speed in two different units.
Try Now
-
+
@@ -1862,7 +2017,8 @@ Calculates the resultant vector, dot product and angle between 2 vectors.
Try Now
-
+
@@ -1876,7 +2032,8 @@ Calculates number of vowels and consonants in a given paragraph.
Try Now
-
+
@@ -1890,7 +2047,8 @@ Calculate daily water intake based on weight, activity, and weather.
Try Now
-
+
@@ -1904,7 +2062,8 @@ Calculates the bandwidth of a website based on some factors.
Try Now
-
+
@@ -1918,7 +2077,8 @@ Calculates weight from kgs to pounds and vice-versa.
Try Now
-
+
@@ -1932,7 +2092,8 @@ Counts the Total Words, Unique words, Average word length and Exports the da
Try Now
-
+
@@ -1946,12 +2107,13 @@ Calculates the linear density of the yarn from unit system to another.
Try Now
-
+
-
+
@@ -1968,9 +2130,12 @@ Calculates the linear density of the yarn from unit system to another.