Showing posts from February, 2021Show all

8) Write a Windows JDBC program that insert,delete and clear record using GUI form and display all records of Result Set in JTable.

source file name: SwingJdbc.java import java.sql.*; import java.awt.*; import java.awt.event.*; import javax.swing.*; class SwingJdbc extends JFrame implements ActionListener { JTextField t1,t2,t3; public SwingJdbc() { GridLayout gl=new GridLayout(0,2,15,15); setLayout(gl); JLabel l1=new JLabel("Enter Roll : &qu…

Read more

8) Write a program to calculate overtime pay of 03 employees.

Write a program to calculate overtime pay of 10 employees. Overtime is paid at the rate of Rs. 120.00 per hour for every hour worked above 40 hours. Assume that employees do not work for fractional part of an hour. source file name:  empot.C void main() { int twh,oth; int emp; int otamt; clrscr(); emp=1; while(emp&l…

Read more
123...52