WAP in Java Using all the concepts of OOP, Exception handling and Packages -II

Aim:To make a simple java project for shoe shop using all the concept of OPPS,Exception handling and packages Background:HI-TECH SHOE SHOP is a project made to help people buy shoes. This project was done to enhance my java programming skills and develop further knownledge on the concepts of OOPS,Exception...

Write a program to do the following task:
A. Asks a student if he/she is full-time or part-time.
B. If the student is full-time, the program will ask for the student's major and print the input for major followed by "is a good major" to the screen. If the student is not full-time, the program will ask the student how many credits he/she is taking. If the student is taking more than 6 credits, the program will print "That is a lot for a part-time student" to the screen. If the student is taking 6 or less credits, the program will print "That is nice" to the screen.

&nb...

Structure in C-1

Question: Write a program in C using struct for displaying results in order for 3 students.The program used include name,marks in 6 subjects,total and average. it should print result in table form #include <stdio.h> #include <stdlib.h> struct { char fn[12],ln[8]; int sn,cpl,che,mat,egp,phy,acs,t; ...
Posted in

WAP in Java Using all the concepts of OOP,Exception handling and Packages -I

(adsbygoogle = window.adsbygoogle || []).push({}); Aim: To create a program to allow people to register for credit management system and print their information and prompt user to register for the program. Background: Credit management system program is made to help people register...

Teachers Day card in java

"As each child grows older, he/she needs to learn in order to survive; teachers are the ones to instill knowledge (DeRoy)." Therefore i have made a simple java program using Swings to wish all the teachers a very happy teachers Day. Code Explaination In this code there are 3 classes: 1.teacher class...

Why We Should Let Youths Use Social Media

Social media is a very vital thing in this 21st century for many people. Facebook, WhatsApp, Messenger, WeChat, and Instagram are just some of the common social networking sites used by many people. Although some people say that social media is a boon in this digital era, still few consider...

Make Registration form using only AWT

Java AWT (Abstract Window Toolkit) is an API to develop GUI in java. it has many components like button, label, checkbox, etc. used as objects inside a Java Program.Java AWT components are platform-dependent which implies that they are displayed according to the view of the operating system. It is also...