A Project Report On: Calculator Using Javascript Css
A Project Report On: Calculator Using Javascript Css
A PROJECT REPORT ON
2021-2022
Page | 1
OSY (22516)
Submitted to
CSMSS COLLEGE OF POLYTECHNIC, AURANGABAD.
BY
Research Students
AURANGABAD
CERTIFICATE
This is to certify that ANAND THITE , VINAYAK MADILWAR ,and
SAVITA SHAHARAO of Third semester of Diploma in Computer Engineering of
PRINCIPAL
OSY (22516)
Acknowledgement
We would like to express our thanks to the people who have helped us most
throughout our project. We would like to express our sincere thanks to the
principal of CSMSS College of Polytechnic Prof. Dongre. G.B. for being always
with us as a motivator. We are thankful to the H.O.D. of Computer Department
Mr. S.U. Kakde sir for his kind support. We are grateful to our Project Director
Ms. S.A.SAMRAT for nonstop support and continuous motivation for the project.
Her help made us possible to complete our project with all accurate information. A
special thanks of our goes to our friends who helped us in completing the project,
where they all exchanged their own interesting ideas. We wish to thanks our
parents for their personal support or attention who inspired us to go our own way.
Finally we would like to thank God who made all things possible for us till the
end.
Index
Sr. PARTICULAR PAGE NO.
1. Abstract 6
2. Introduction 7-17
3. Conclusion 18
4. References 19
OSY (22516)
Abstract
In this project we have studied different types of operators in
calculator using javascript.
We have listed and have given information on the important
functions of the javascript commands.
We have understood importance of functions in javascript in client
side scripting.
Functions helps us to execute different-different types of
javascript commands.
We have also learned introduction of javascript in client side
scripting..
OSY (22516)
Introduction.
What is Linux?
An Open-Source operating system and community developed operating system for
computers, servers, mainframes, mobile devices and embedded devices.
Linux
provides a powerful command-line interface compared to other operating systems such
as Windows
and MacOS. We can do basic work and advanced work through its terminal. We can do
some basic tasks such as creating a file, deleting a file, moving a file, and more. In
addition, we can also perform advanced tasks such as administrative tasks (including
package installation, user management), networking tasks (ssh connection), security
tasks, and many more.
In this topic, we will discuss the top 50 most frequently used Linux commands with their
examples. These commands are very useful for a beginner and professional both. We
have divided these commands into following sections so that you can easily identify
their usage:
540
The pwd command is used to display the location of the current working dir
Syntax: pwd
Output:
2. mkdir Command
Syntax:
1.mkdir <directory name>
Output:
3. rmdir Command
Syntax:
mkdir <directory name>
Output:
OSY (22516)
4. ls Command
Syntax:
ls
Output:
5. cd Command
Syntax:
cd <directory name>
Output:
The touch command is used to create empty files. We can create multiple empty files by executing it
once.
OSY (22516)
Syntax:
1. touch <file name>
2. touch <file1> <file2> ....
Output:
7. cat Command
The cat command is a multi-purpose utility in the Linux system. It can be used to create a file, display
content of the file, copy the content of one file to another file, and more.
Syntax:
cat [OPTION]... [FILE]..
1.cat > <file name>
2.// Enter file content
Press "CTRL+ D" keys to save the file. To display the content of the file, execute it as follows:
1.cat <file name>
Output:
8. rm Command
Syntax:
rm <file name>
OSY (22516)
Output:
9. cp Command
Syntax:
1.cp <existing file name> <new file name>
Output:
10. mv Command
The mv command is used to move a file or a directory form one location to another location.
Syntax:
1.mv <file name> <directory path>
Output:
The rename command is used to rename files. It is useful for renaming a large group of files.
Syntax:
1. rename 's/old-name/new-name/' files
OSY (22516)
For example, to convert all the text files into pdf files, execute the below command:
2. rename 's/\.txt$/\.pdf/' *.txt
Output:
head Command The head command is used to display the content of a file. It displays the first 10 lines
of a file.
Syntax:
1. head <file name>
Output:
The tail command is similar to the head command. The difference between both commands is that it
displays the last ten lines of the file content. It is useful for reading the error message.
Syntax:
tail <file name>
OSY (22516)
Output:
The tac command is the reverse of cat command, as its name specified. It displays the file content in
reverse order (from the last line).
Syntax:
tac <file name>
Output:
The more command is quite similar to the cat command, as it is used to display the file content in the
same way that the cat command does. The only difference between both commands is that, in case of
larger files, the more command displays screenful output at a time.
In more command, the following keys are used to scroll the page:
Syntax:
more <file name>
Output:
The less command is similar to the more command. It also includes some extra features such as
'adjustment in width and height of the terminal.' Comparatively, the more command cuts the output in
the width of the terminal.
Syntax:
less <file name>
Output:
OSY (22516)
The su command provides administrative access to another user. In other words, it allows access of the
Linux shell to another user.
Syntax:
su <user name>
Output:
18. id Command
The id command is used to display the user ID (UID) and group ID (GID).
Syntax:
id
Output:
OSY (22516)
Syntax:
useradd username
Output:
Syntax:
groupadd <group name>
Output:
OSY (22516)
Conclusion
References
1. https://www.programmingworld.com
And our Subject teacher also helps us for completion of our “Micro-
Project”