0% found this document useful (0 votes)
3K views20 pages

A Project Report On: Calculator Using Javascript Css

The document is a project report submitted by three students for their course on "Calculator Using JavaScript CSS". It includes the title page with their names and enrollment numbers, a table of contents, and an introduction section describing the aims and features of the project.

Uploaded by

Anand thite
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3K views20 pages

A Project Report On: Calculator Using Javascript Css

The document is a project report submitted by three students for their course on "Calculator Using JavaScript CSS". It includes the title page with their names and enrollment numbers, a table of contents, and an introduction section describing the aims and features of the project.

Uploaded by

Anand thite
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 20

OSY (22516)

A PROJECT REPORT ON

" CALCULATOR USING JAVASCRIPT CSS”


SUBMITTED BY

1] ANAND THITE [1911520093]


2] VINAYAK MADILWAR [1911520066]
3] SAVITA SHAHARAO [1911520040]

UNDER THE GUIDANCE OF


Mrs. S. A. SAMRAT

DEPARTMENT OF COMPUTER ENGINEERING

CSMSS COLLEGE OF POLYTECHNIC, AURANGABAD

MAHARASTRA STATE, INDIA

2021-2022

Page | 1
OSY (22516)

Submission of Micro Project Entitled

“ CALCULATOR USING JAVASCRIPT


CSS”

Submitted to
CSMSS COLLEGE OF POLYTECHNIC, AURANGABAD.
BY
Research Students

1] ANAND THITE [1911520093]


2] VINAYAK MADILWAR [1911520066]
3] SAVITA SHAHARAO [1911520040]

Under the Supervision of


Miss. S.A.SAMRAT
Project Director
Dept. of Computer
OSY (22516)

CSMSS COLLEGE OF POLYTECHNIC, AURANGABAD,


Aurangabad. 431001(M.S.)
OSY (22516)

CSMSS COLLEGE OF POLYTECHNIC

AURANGABAD

CERTIFICATE
This is to certify that ANAND THITE , VINAYAK MADILWAR ,and
SAVITA SHAHARAO of Third semester of Diploma in Computer Engineering of

Institute CSMSS College of Polytechnic (code:1152) have completed the Micro


Project satisfactorily in subject CLIENT SIDE SCRIPTING (22516) for the
academic year 2021-2022 as prescribed in the curriculum.

Place: ………. Enrollment no.: 1911520093 Exam seat no.:………….

Enrollment no.: 1911520066 Exam seat no.:………….

Date: ………….. Enrollment no.: 1911520040 Exam seat no.:………….

PROJECT DIRECTOR HEAD OF THE DEPARTMENT

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.

STUDENT NAME ENROLL NO. SIGN


1] ANAND THITE [1911520093]

2] VINAYAK MADILWAR [1911520066]

3] SAVITA SHAHARAO [1911520040]


OSY (22516)

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.

Introduction and features of Linux Operating System


Linux Operating System is a open-source operating systems like Unix. It was initially
developed by Linus Torvalds on September 17, 1991and features are free and open-source
operating system and the source code can be modified and distributed to anyone
commercially or noncommercially under the GNU General Public License.  

Agenda of Linux Operating System


 5W’s 1H ◦ Introduction to Operating Systems
 Linux Introduction (5w’s h

What is Linux?
 An Open-Source operating system and community developed operating system for
computers, servers, mainframes, mobile devices and embedded devices.

 OS such as Ubuntu, Debian, Fedora, OpenSUSE, Redhat, Android etc.


OSY (22516)

Linux Commands with Examples


The Linux command is a utility of the Linux operating system. All basic and advanced
tasks can be done by executing commands. The commands are executed on the Linux
terminal. The terminal is a command-line interface to interact with the system, which is
similar to the command prompt in the Windows OS. Commands in Linux are case-
sensitive

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.

Linux terminal is a user-friendly terminal as it provides various support options. To open


the Linux terminal, press "CTRL + ALT + T" keys together, and execute a command by
pressing the 'ENTER' key.

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

 Linux Directory Command


 Linux File Command
 Linux Filter Command
 Linux Utility Command
 Linux Networking Command
OSY (22516)

Linux Top 20 Commands


The following are the top 20 Linux commands:

Linux Directory Commands


1.Pwd Command

The pwd command is used to display the location of the current working dir

Syntax: pwd 

Output:

2. mkdir Command

The mkdir command is used to create a new directory under any directory.

Syntax:

1.mkdir <directory name>  

Output:

3. rmdir Command

The rmdir command is used to delete a directory.

Syntax:

mkdir <directory name>   

Output:
OSY (22516)

4. ls Command

The Is command is used to display a list of content of a directory.

Syntax:

ls  

Output:

5. cd Command

The cd command is used to change the current directory.

Syntax:

cd <directory name>  

Output:

Linux File commands


6. touch Command

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]..  

To create a file, execute it as follows:

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

The rm command is used to remove a file.

Syntax:

rm <file name>
OSY (22516)

Output:

9. cp Command

The cp command is used to copy a file or directory.

Syntax:

To copy in the same directory:

1.cp <existing file name> <new file name>  

To copy in a different directory:

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:

11. rename Command

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:

Linux File Content Commands


12. head command

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:

13. tail Command

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:

14. tac Command

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:

15. more command

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:

ENTER key: To scroll down page by line.

Space bar: To move to the next page.


OSY (22516)

b key: To move to the previous page.

/ key: To search the string.

Syntax:

more <file name>  

Output:

16. less Command

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)

Linux User Commands


17. su Command

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)

19. useradd Command

The useradd command is used to add or remove a user on a Linux server.

Syntax:

useradd  username  

Output:

20. groupadd Command

The groupadd command is used to create a user group.

Syntax:

groupadd <group name>  

Output:
OSY (22516)

Conclusion

We have learnt about “linux commands”, In this our present micro


project we have learn “Commands of linux in operating system”, We
used different functions for executing this commands on computer
system. Now we can easily execute this all commands. In this work
our present Micro Project our subject teacher helps us a lot.
OSY (22516)

References
1. https://www.programmingworld.com

2. Linux Commands - javatpoint

3. w3schools linux commands - Bing

And our Subject teacher also helps us for completion of our “Micro-
Project”

You might also like