Practical 18 : Prepare a use case diagram and sequence diagram for a computer email system Get link Facebook X Pinterest Email Other Apps October 16, 2018 Solution: Get link Facebook X Pinterest Email Other Apps Comments
Practical 9 : Write an interactive program to print a string entered in a pyramid form. For instance, the string “stream” has to be displayed as follows: October 16, 2018 s s t s t r s t r e s t r e a s t r e a m Program: public class practical9 { public static void main(String[] args) { int i, j, k; String str = "Stream"; for (i = 0; i < str.length(); i++) { for (j = (str.length() / 2) + 1; j >= i; j--) ... Read more
Practical 15: Prepare a class diagram for given group of classes using multiplicity, generalization, association concepts. And add at least 5-7 attributes and 3-5 operations for particular class. City, Airport, Airline, Pilot, Flight, Plane, Seat, Passenger October 16, 2018 Solution: Read more
Comments
Post a Comment