Posts

WT

https://limewire.com/d/Mm5Q5#jg1Y1LEYYE

1. 2271 5843 6. 5364 76662. 0117 3807 7. 3265 96063. 2947 1279 8. 5817 73544. 1841 5955 9. 0344 08135. 2950 9401 10. 8071 1384

1. 2271 5843 6. 5364 7666 2. 0117 3807 7. 3265 9606 3. 2947 1279 8. 5817 7354 4. 1841 5955 9. 0344 0813 5. 2950 9401 10. 8071 1384

employee

import java.util.*; class Employee { String empName; String empId; int Salary;   Scanner sc=new Scanner(System.in); void setempName(String n) { empName=n; } void setempId(String Id) { empId=Id; } void setSalary(int s) { Salary=s; } String getempName() { return empName; } int getSalary() { return Salary; } String getempId() { return empId; } void incrementSalary() { Salary=(int)Salary+(int)(Salary*0.2); } } class emp { public static void main(String agrs[]) { Employee e=new Employee(); e.setempName("Sanket Koshti"); e.setempId("1234abcd"); e.setSalary(20000); System.out.println("Name :"+e.getempName()); System.out.println("Employee ID :"+e.getempId()); System.out.println("EMployee Salary :"+e.getSalary()); System.out.println("After incrementing the salary :"); e.incrementSalary(); System.out.println("Name :"+e.getempName()); System.out.println(...

calendar

public class Date {     public static boolean isLeapYear(int year) {         return (year % 4 == 0 && year % 100 != 0) || (year % 400 == 0);     }     public static boolean isValidDate(int date, int month, int year) {         if (year < 1) {             return false;         }         if (month < 1 || month > 12) {             return false;         }         int[] daysInMonth = {31, isLeapYear(year) ? 29 : 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};         return date > 0 && date <= daysInMonth[month - 1];     }     public static String getDayOfWeek(int date, int month, int year) {         if (month == 1 || month == 2) {             month += 12;    ...

Inter-VLAN Routing using Layer 3 Switches

Image

router on stick

Image