How does java handle integer overflows and underflows?
What is loose coupling in java?
Explain working of java virtual machine (jvm)?
Why is class forname used in java?
What is the use of lambda functions?
Are the actual permissions for the application defined at run-time or compile-time? : java security
What is mdb in java?
Is java singleton thread safe?
I get an exception if I remove the static modifier from main?
How to reverse the singly linked list(In Node data members are(int data,int pointerTONext))
What services can invoke lambda?
What is hql in java?
there are 67 seats in train . there are only 5 seats in a row and in last row there are only 2 seats. One person can reseve only 5 seat at a time. If person reserving seat , the care is atken that he may get all in row. if seats are not available in row then the arrangement is so that person group get nearby seats. the following class is given public class seat { char name; int seat; boolean isSeatempty } 1.Draw require class digram and object diagram. 2.Write function seatallot(int noofperson) to allocate seat with seat nuber printed for the each name.