NumPy Product

Submitted by moazkhan on

In this tutorial you will learn:

  • What is the product of numbers?
  • Implementation of product using different functions in Python
  • Python Syntax

Product of Number

Product is just another name for the operation of multiplication. It is a very common operation in the world of computation, mathematics and science.

Auto Search Using JavaScript

Submitted by razormist on
In this code we will tackle about Auto Search using JavaScript. The program will enable to automatically search a row data. You are free to modify, and use this code. To learn more about this, just follow the steps below.

Getting started:

First you have to download bootstrap framework, this is the link for the bootstrap that I used for the layout design https://getbootstrap.com/.

The Main Interface

This code contains the interface of the application.

Limit Password Length Using JavaScript

Submitted by razormist on
In this article we will try to do Limit Password Length using JavaScript. The code can restrict the inputted user password. The trick is you need to compare the length of textbox and the possible maximum length in the if statement. To learn more about this, just follow the steps below.

Getting started:

First you have to download bootstrap framework, this is the link for the bootstrap that I used for the layout design https://getbootstrap.com/.

The Main Interface

This code contains the interface of the application.

Submit Multiple Form Using PHP

Submitted by razormist on
In this tutorial we will create a Submit Multiple Form using PHP. The code itself will send a multiple form data to the database server. This is a user-friendly kind of program feel free to modify it. To learn more about this tutorial, just follow the step below.

Getting Started:

First you have to download & install XAMPP or any local server that run PHP scripts.

Student Detail Management System

Submitted by razormist on
Student Detail Management System with Source Code is a C++ program that can calculate and display the average grade of student. This application was created using only C++ language. The system is very easy to operate, the user must enter a password in order to access the system. The user can register new student, update the details, and calculate grades. The system can also provide the overall

NumPy Sum

Submitted by moazkhan on

In this tutorial you will learn:

  • What is difference between summation and addition?
  • Implementation of summation using different functions in Python
  • Python Syntax

Summation

Summation is the sum of all the elements of an array, if we are adding up two arrays it would be the index wise addition of elements which will result in another array having the size equal to the size of arrays being added up. Summation and addition are commonly used in mathematics and sciences to carry out basic tasks.

Bank Management System Using Python

Submitted by razormist on
Bank Management System with Source Code is a Python program that can manage all your banks accounts safely secured. This program was built using Python language. The system is a simple console application, the user can operate the system freely by entering a certain numeric keys. The user can create new bank account, can deposit / withdraw money, and check account balance. The system also have a

NumPy Log

Submitted by moazkhan on

In this tutorial you will learn:

  • What is a logarithm?
  • Implementation of Log with different bases in Python
  • Python Syntax

Logarithm

In order to simplify the calculations, Logarithms were introduced in 1614 by John Napier. Logarithm is inverse to an exponential function. Lets take a number x, its logarithm is the exponent to which another fixed number, the base b must be raised to produce x. The logarithm with base 10 is called as the common logarithm and it has many applications in the domain of engineering and science.

NumPy Rounding Off

Submitted by moazkhan on

In this tutorial you will learn:

  • What is rounding off the decimal?
  • Python functions that could round off the decimals?
  • Python Syntax

Rounding off the decimals

Rounding off is a simple technique for conversion of float numbers to integers, however, the resultant value will be less accurate (as we remove the part after decimal), but easier to use. The data in type of most of the arrays as a programmer we will be encountering while coding in python will be the integers and floats.