Tarun Kumar Dansena

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 15

NETBEANSPROJECT

All India Senior/Junior Secondary Certificate Examination

Submitted in partial fulfillment of the requirements for the award of degree of

CLASS – 11 SECTION - BIOLOGY

Submitted By:

TARUN KUMAR DANSENA

July 2022 – March 2023

DEPARTMENT OF INFORMATION TECHNOLOGY


ST. JOHN’S ENGLISH MEDIUM SCHOOL KHARSIA

GUIDED BY: SUBMITTED BY:


SIR NARENDRA RATHORE TARUN KUMAR DANSENA
(P G T) 24

DECLARATION

1
I hereby declare that the project entitled “PROJECT ON NETBEANS

” submitted for my original work and the project has not formed the

basis for the award of any degree, associateship, fellowship or any

other similar titles.

TARUN KUMAR DANSENA

2
ACKNOWLEDGMENT

I am highly grateful to the Sir Narendra Kumar Rathore HOD of IT,


St. John’s English Medium School Kharsia, Dist – Raigarh
(Chhattisgarh), for providing this opportunity to carry out the Major
Project at “ PROJECT ON NETBEANS”.

I would like to expresses my gratitude to other faculty member’s


name of Computer Science for providing academic inputs, guidance
& encouragement throughout this period.

The author would like to express a deep sense of gratitude and thank
Principal of School, without whose permission, wise counsel and able
guidance, it would have not been possible to carry out my project in
this manner.

The help rendered by Mr. Narendra Kumar Rathore Supervisor Fr.


Suresh Toppo for experimentation is greatly acknowledged.

Finally, I express my indebtedness to all who have directly or


indirectly contributed to the successful completion of my major
project.

TARUN KUMAR DANSENA

11THBIO

3
CERTIFICATE

TO WHOM IT MAY CONCERN

I hereby certify that TARUN KUMAR DANSENA Roll No.24 of St.


John’s English Medium School Kharsia, Dist. Raigarh (Chhattisgarh),
has undergone Major Project from 01.01.2022 to 16.01.2023 at our
organization to fulfill the requirements for the award of degree of
11THBIO.

Heworked on“ PROJECT ON NETBEANS” during this period under


the supervision of Sir Narendra Rathore. During his tenure with us we
found him sincere and hard working. We wish hima great success in
the future.

Date: 16.01.2023 Mr. Narendra Rathore


Internal Examiner

TARUN KUMAR
DANSENA

4
REQUIREMENTS HARDWARE &
SOFTWARE

Hardware: DELL INSPIRON 15 3000


Keyboard : LAPCARE
Mouse : LOGITECH
Ram:8 GB
Hard disk:1 TB
Processor: Intel core i3
Software: MICROSOFT WORD

5
TABLE OF CONTENTS

S.N. Content Page No.

1 BASIC CALCULATOR 7-8

2 PRICE CALCULATOR 9-10

3 DISCOUNT CALCULATOR 11-12

4 SIMPLE INTEREST CALCULATOR 13-14

5 CONCLUSION 15

6
BASIC CALCULATOR

FOR ADDITION :
float a = Float.parseFloat(num1.getText());
float b = Float.parseFloat(num2.getText());
float total = a+b;
result.setText(Float.toString(total));

FOR SUBSTRACTION :
float a = Float.parseFloat(num1.getText());
float b = Float.parseFloat(num2.getText());
float total = a-b;
result.setText(Float.toString(total));

FOR MULTIPLICATION :
float a = Float.parseFloat(num1.getText());
float b = Float.parseFloat(num2.getText());
float total = a-b;
result.setText(Float.toString(total));

FOR DIVISION :
float a = Float.parseFloat(num1.getText());
float b = Float.parseFloat(num2.getText());

7
float total = a/b;
result.setText(Float.toString(total));

FOR RESET
result.setText("");

FOR STOP :
System.exit(0);

CONTROL NAME VARIABLE NAME VALUE

jTextfield1 Num1 Float

jTextfield2 Num2 Float

jButton1 plus Null

jButton2 minus Null

jButton3 multiply Null

jButton4 divide Null

jTextfield3 result float

jButton5 reset Null

jButton6 stop Null

OUTPUT:

PRICE CALCULATOR
8
CODING:
String Price = price.getText();
int p = Integer.parseInt(Price);
String Quantity = quantity.getText();
int q = Integer.parseInt(Quantity);
int total = p*q;
result.setText(Integer.toString(total));

FOR STOP :
System.exit(0);

9
CONTROL NAME VARIABLE NAME VALUE

jButton1 Amount Null

jButton2 Stop Null

jTextfield1 price Float

jTextfield2 Quantity Float

jTextfield3 amount float

OUTPUT:

DISCOUNT CALCULATOR

10
FOR CALCULATING FINAL AMOUNT :
float bill = Float.parseFloat(b.getText());
int index = r.getSelectedIndex();
if(index==0){
result.setText(Float.toString(bill - bill*30/100));
}
else if(index==1){
result.setText(Float.toString(bill - bill*20/100));
}
else if(index==2){
result.setText(Float.toString(bill - bill*10/100));
}
else if(index==3){
result.setText(Float.toString(bill));

FOR RESET
result.setText("");

CONTROL NAME VARIABLE NAME VALUE

jTextfield1 bill float

11
jTextfield2 Customer type float

jTextfield3 amount float

jButton1 Final amount null

jButton2 reset null

jButton3 stop null

OUTPUT:

SIMPLE INTEREST CALCULATOR

12
FOR CALCULATING INTEREST:
float priciple = Float.parseFloat(p.getText());
float rate = Float.parseFloat(r.getText());
float time =Float.parseFloat(t.getText());
float interest = (priciple*rate*time)/100;
result.setText(Float.toString(interest));

FOR RESET
result.setText("");
p.setText("");
r.setText("");
t.setText("");

FOR STOP :
System.exit(0);

CONTROL NAME VARIABLE NAME VALUE

jButton1 Calculate interest Null

13
jButton1 Reset Null

jButton1 Stop Null

jTextfield1 Principal Float

jTextfield1 Rate Float

jTextfield1 Time Float

jTextfield1 Simple interest Float

OUTPUT:

CONCLUSION
14
WE WOULD LIKE TO THANK NARENDRA SIR FOR HIS
GUIDENCE DURING THE COMLETION OF THIS “PROJECT ON
NETBEANS” . IT REALLY HELPED US TO LEARN ABOUT
CODING FUNDAMENTALS AND HOW TO CREATE
CALCULATOR , SIMPLE INTEREST CALCULATOR ,
DISCOUNT CALCULATOR , PRICE CALCULATOR . WE
WOULD BE GRATEFUL IF NARENDRA SIR HELP US IN OUR
NEAR FUTURE .

THANK YOU

TARUN KUMAR DANSENA


11TH BIOLOGY

15

You might also like