Q 1.Wrire a Proram to creat a class that stores the train reservation
details. In addition, define a method that will display the stored details.
public class Reservation {
int ticketID;
String name;
String source;
String destination;
Reservation() {
ticketID = 80;
name ="Harry";
source = "Chicago"
destination = "Dallas";
}
public void showTicket () {
System.out.println("The Ticket ID is "+ ticketID);
System.out.println("The Passenger Name is "+ name);
System.out.println("The Sourse is" + sourse);
System.out.println("The Destination is" + Destination);
System.out.println("\nChoose the option: ");
public static void main(String[] args) {
Reservation g = new Reservation();
g.showTicket();
}
}
Q 2. Write a program to create a class named EmployeeDetails and display a menue similar to the following menu:
--------------Menu--------
1. Enter Data
2. Display Data
3. Exit
Choose the option
Thereafter, invoke the respective method according to the given menu input. The methods will contain appropriate message, such as the displayData()
method will contain the message, displayData method is invoked
public class EmployeeDetails {
public void showMenue () {
int option;
System.out.println("------------Menu--------");
System.out.println("1. Enter Data");
System.out.println("2. Display Data");
System.out.println("3. Exit");
System.out.println("\nChoose the option: ");
Option = 2;
switch (option) {
case 1:
enterData();
break;
case2:
DisplayData();
break;
case3:
exitMenue();
break;
defalt:
System.out.println("Incorrect menu option");
showMenu();
break;
}
}
public void enterData() {
System.out.println("enterData method is invoked");
}
public void enterData() {
System.out.println("displayData method is invoked");
}
public void enterData() {
System.out.println("exitMenu method is invoked");
System.exit(0);
}
public static void main(String[] args) {
EmployeeDetails obj = new EmployeeDetails();
obj.showMenu();
}
}
public class Reservation {
int ticketID;
String name;
String source;
String destination;
Reservation() {
ticketID = 80;
name ="Harry";
source = "Chicago"
destination = "Dallas";
}
public void showTicket () {
System.out.println("The Ticket ID is "+ ticketID);
System.out.println("The Passenger Name is "+ name);
System.out.println("The Sourse is" + sourse);
System.out.println("The Destination is" + Destination);
System.out.println("\nChoose the option: ");
public static void main(String[] args) {
Reservation g = new Reservation();
g.showTicket();
}
}
Q 2. Write a program to create a class named EmployeeDetails and display a menue similar to the following menu:
--------------Menu--------
1. Enter Data
2. Display Data
3. Exit
Choose the option
Thereafter, invoke the respective method according to the given menu input. The methods will contain appropriate message, such as the displayData()
method will contain the message, displayData method is invoked
public class EmployeeDetails {
public void showMenue () {
int option;
System.out.println("------------Menu--------");
System.out.println("1. Enter Data");
System.out.println("2. Display Data");
System.out.println("3. Exit");
System.out.println("\nChoose the option: ");
Option = 2;
switch (option) {
case 1:
enterData();
break;
case2:
DisplayData();
break;
case3:
exitMenue();
break;
defalt:
System.out.println("Incorrect menu option");
showMenu();
break;
}
}
public void enterData() {
System.out.println("enterData method is invoked");
}
public void enterData() {
System.out.println("displayData method is invoked");
}
public void enterData() {
System.out.println("exitMenu method is invoked");
System.exit(0);
}
public static void main(String[] args) {
EmployeeDetails obj = new EmployeeDetails();
obj.showMenu();
}
}
3.Write a program to create a class that stores the grocery details. In addition, define three methods that will add the weight, remove the weight, and display the current weight, respectively..
4.Write a program to create a class that declares a member variable and a member method. The member method will display the value of the member variable.
Ans.Q 4. Write a program that will store the employee records, such as employee ID, employee name, department, designation,
date of joining, date of birth, and marital status, in an array. In addition, the stored record needs to be displayed.
Ans
public class employeerecord
string employeeDetails [] [] = new String [1] [7];
public void storeData() {
employeeDeatils [0] [0] = "A101";
employeeDeatils [0] [1] = "john mathew";
employeeDetails [0] [2] = "admin";
employeeDetails [0] [3] = "manager";
employeeDetails [0] [4] = "05/04/1998";
employeeDetails [0] [5] = "11/09/1997";
employeeDetails [0] [6] = "married";
}
public void displayData() {
system.out.println ("Employee Details:");
for ( int i = 0; i < employeeDetails,length;
for ( int j = 0; j < employeeDetails[i].length; j++ {
system.out.println(employeeDetails[i] [j] );
}
}
}
public static void main (String [] args) {
EmployeeRecord obj = new EmployeeRecord();
obj.storeData();
obj.displayData();
}
}
5.Write a program to identify whether the given character is a vowel or a consonant.
Ans.
6.Write a program to display the following numeric pattern:
12345
1234
123
12
1
Ans
.7.Using the NetBeans IDE, create an Employee class, create a class with a main method to test the Employee class, compile and run your application, and print the results to the command line output.
Ans.
1. start the NetBeans IDE by using the icon from desktop.
2. create a new project employeepractice in the D:\labs\02-review\practices directory with an employeetest main class in the com.example package.
3. Set the source/binary format to JDK 7.
a. right-click the project and select properties.
b. select JDK 7 from the drop-down list for SOurc/binary format.
c. click ok.
4. create another package called com.example.domain.
5. Add a java class called Employee in the com.example.domain package.
6. code the employee class.
a. add the following data fields to the employee class-use your judgment as to what you want to call these fields in the class. Refer to the lesson material for ideas on the fields names and the syntax if you are not sure. Use public as the access modifier.
7. create a no-arg constructor for the employee class.
Netbeans can format your code at any time for you. Right-click in the class and select format, or press the Alt-Shift-F key combination.
8. Add accessor/mutator methods for each of the fields.
9. write code in the employeetest class to test your employee class.
a. construct an instance of employee.
b. use the setter mothods to assign the following values to the instance:
c. in the body of the main methoed, use the system.out.printIn method to write the values of the employee fields to the console output.
d. rsolve any missing import statements.
e. save the employeetest class.
10. run the EmployeePractice project.
11. Add some additional employee instances to your test class.
thanks
ReplyDeleteaur kit hai???
ReplyDeleteAdana
ReplyDeleteElazığ
Kayseri
Şırnak
Antep
VMFK
Erzurum
ReplyDeleteElazığ
Konya
Zonguldak
Eskişehir
3B6Z5
sakarya
ReplyDeleteyalova
elazığ
van
kilis
D8SGJİ
van
ReplyDeletedüzce
mardin
elazığ
sakarya
A4O
Kocaeli Lojistik
ReplyDeleteUşak Lojistik
Osmaniye Lojistik
Çorlu Lojistik
Kocaeli Lojistik
HCYF
uşak evden eve nakliyat
ReplyDeletebalıkesir evden eve nakliyat
tokat evden eve nakliyat
kayseri evden eve nakliyat
denizli evden eve nakliyat
D37
https://istanbulolala.biz/
ReplyDeleteLNLPWR
muş evden eve nakliyat
ReplyDeleteçanakkale evden eve nakliyat
uşak evden eve nakliyat
ardahan evden eve nakliyat
eskişehir evden eve nakliyat
3QREAA
muş evden eve nakliyat
ReplyDeleteçanakkale evden eve nakliyat
uşak evden eve nakliyat
ardahan evden eve nakliyat
eskişehir evden eve nakliyat
GXF6V
hatay evden eve nakliyat
ReplyDeleteısparta evden eve nakliyat
erzincan evden eve nakliyat
muğla evden eve nakliyat
karaman evden eve nakliyat
VVCZU
E5895
ReplyDeleteZonguldak Evden Eve Nakliyat
Kocaeli Evden Eve Nakliyat
Düzce Evden Eve Nakliyat
Referans Kimliği Nedir
Iğdır Evden Eve Nakliyat
3A932
ReplyDeleteArtvin Lojistik
Bartın Şehir İçi Nakliyat
Mefa Coin Hangi Borsada
Ünye Asma Tavan
Ünye Marangoz
Ağrı Parça Eşya Taşıma
Bilecik Şehir İçi Nakliyat
Konya Lojistik
Artvin Parça Eşya Taşıma
5E436
ReplyDeleteSincan Parke Ustası
Ardahan Şehir İçi Nakliyat
Zonguldak Şehir İçi Nakliyat
Muğla Evden Eve Nakliyat
İzmir Şehirler Arası Nakliyat
Tesla Coin Hangi Borsada
Antalya Rent A Car
Azero Coin Hangi Borsada
Clysterum Coin Hangi Borsada
73365
ReplyDeleteMardin Parça Eşya Taşıma
Nevşehir Lojistik
Kocaeli Şehir İçi Nakliyat
Bingöl Şehirler Arası Nakliyat
Kars Evden Eve Nakliyat
Mersin Şehirler Arası Nakliyat
Sweat Coin Hangi Borsada
Rize Şehir İçi Nakliyat
Elazığ Parça Eşya Taşıma
20657
ReplyDeleteAksaray Şehir İçi Nakliyat
Maraş Lojistik
Balıkesir Evden Eve Nakliyat
Trabzon Evden Eve Nakliyat
Bayburt Şehir İçi Nakliyat
Kucoin Güvenilir mi
Yobit Güvenilir mi
İzmir Şehirler Arası Nakliyat
Manisa Şehirler Arası Nakliyat
BE056
ReplyDeleteZonguldak Evden Eve Nakliyat
Cate Coin Hangi Borsada
Çorlu Lojistik
Mersin Lojistik
Bitmart Güvenilir mi
Siirt Parça Eşya Taşıma
Konya Parça Eşya Taşıma
Isparta Şehir İçi Nakliyat
Çerkezköy Fayans Ustası
5215F
ReplyDeleteChat Gpt Coin Hangi Borsada
Mamak Boya Ustası
Gümüşhane Şehirler Arası Nakliyat
Mardin Şehir İçi Nakliyat
Kırklareli Parça Eşya Taşıma
Sincan Parke Ustası
Adana Evden Eve Nakliyat
Aydın Evden Eve Nakliyat
Huobi Güvenilir mi
78E23
ReplyDeleteHakkari Şehir İçi Nakliyat
Çorum Şehirler Arası Nakliyat
Silivri Çatı Ustası
Diyarbakır Evden Eve Nakliyat
Probit Güvenilir mi
Hakkari Lojistik
Bilecik Evden Eve Nakliyat
Silivri Cam Balkon
Cate Coin Hangi Borsada
3A0F2
ReplyDeleteÇanakkale Şehirler Arası Nakliyat
Coinex Güvenilir mi
Çerkezköy Fayans Ustası
AAX Güvenilir mi
Kütahya Evden Eve Nakliyat
Ünye Çekici
Ankara Şehir İçi Nakliyat
Aksaray Evden Eve Nakliyat
Mardin Parça Eşya Taşıma
B53AE
ReplyDeleteSilivri Duşa Kabin Tamiri
Hotbit Güvenilir mi
Ağrı Şehir İçi Nakliyat
Batman Şehirler Arası Nakliyat
Ünye Petek Temizleme
Kayseri Lojistik
Karabük Lojistik
Antep Şehirler Arası Nakliyat
Siirt Şehirler Arası Nakliyat
97C65
ReplyDeleteIğdır Lojistik
Bitranium Coin Hangi Borsada
Fuckelon Coin Hangi Borsada
Silivri Boya Ustası
Balıkesir Şehirler Arası Nakliyat
Maraş Şehirler Arası Nakliyat
Düzce Parça Eşya Taşıma
Ardahan Parça Eşya Taşıma
İzmir Parça Eşya Taşıma
EF946
ReplyDeleteSilivri Evden Eve Nakliyat
Aydın Evden Eve Nakliyat
Referans Kimliği Nedir
Uşak Evden Eve Nakliyat
Binance Referans Kodu
Ordu Evden Eve Nakliyat
Çerkezköy Oto Lastik
Coinex Güvenilir mi
Bitrue Güvenilir mi
58BBD
ReplyDelete%20 indirim kodu
BA0FA
ReplyDeleteKripto Para Nasıl Alınır
Madencilik Nedir
Paribu Borsası Güvenilir mi
Kripto Para Çıkarma Siteleri
Kripto Para Üretme
Paribu Borsası Güvenilir mi
Bitcoin Çıkarma
Btcturk Borsası Güvenilir mi
Coin Kazanma
38526
ReplyDeleteBitcoin Nasıl Üretilir
Bulut Madenciliği Nedir
Coin Kazanma
Bitcoin Nasıl Üretilir
Kripto Para Nasıl Çıkarılır
Bitcoin Çıkarma Siteleri
Yeni Çıkan Coin Nasıl Alınır
Bitcoin Nedir
Kripto Para Üretme
A905B
ReplyDeleteBinance Nasıl Kayıt Olunur
Binance Neden Tercih Edilir
Bulut Madenciliği Nedir
Kripto Para Oynama
Coin Oynama
Bitcoin Giriş Nasıl Yapılır
Kripto Para Nasıl Çıkarılır
Bitcoin Kazanma
Coin Kazanma Siteleri
E7680
ReplyDeleteBinance Kaldıraçlı İşlem Nasıl Yapılır
Kripto Para Nedir
Binance Kimin
Coin Nasıl Alınır
Bitcoin Kazma Siteleri
Kripto Para Kazma Siteleri
Coin Çıkarma Siteleri
Kripto Para Nasıl Çıkarılır
Bitcoin Nasıl Kazanılır
0325C
ReplyDeletehttps://sightcaresite.com/
BE93B
ReplyDeletesatoshi
defillama
arbitrum
sushi
trezor suite
safepal
metamask
zkswap
yearn