<< Prev Showing: 171-175 of 348 Next >>
· 146-150 · 151-155 · 156-160 · 161-165 · 166-170 · 171-175 · 176-180 · 181-185 · 186-190 · 191-195 · 196-200 ·Read this article from the Sun website: http://paul.rutgers.edu/java_tutorial/java/javaOO/subclass.html Concerning classes and inheritance. Why is the super keyword so important? Present examples of how inheritance can be found in real-life situations
Subject:
Computer Science
Topic:
Software Tools and Systems Programming.
Posting ID:
107676
OTA ID:
105277
1. What is the difference between a Java compiler and a Java interpreter? 2. Write a user-defined class called Person. This class should have private instance variables defined as: private int age;private String firstName;private String lastName; In addition, the class should have a constructor defined as: public Person(String _firstName, String _lastName, int _age) that assigns values to the private instance variables. The class should also include the following public methods: public void printName() – prints the person's namepublic void printAge() – prints the person's agepublic void printAgeGroup() – prints the person’s age group (i.e. 20's. 30's, etc.) Only include this... click for more
Subject:
Computer Science
Topic:
Software Tools and Systems Programming.
Posting ID:
107685
OTA ID:
102804
C++ program that uses an array
Write a program that reads a file consisting of students test scores in the range of 0-200. It should then determine the number of students having scores in each of the following ranges: 0-24, 25-49, 50-74, 75-99, 100-124, 125-149, 150-174, and 175-200. Output the score ranges and the number of students. (Run your program with the following input data: 76, 89, 150, 135, 200, 76, 12, 100, 150, 28, 178, 189, 167, 200, 175, 150, 87, 99, 129, 149, 176, 200, 87, 35, 157, 189.)
Subject:
Computer Science
Topic:
Software Tools and Systems Programming.
Posting ID:
107932
OTA ID:
105303
When a child process is fork()ed, a parent may wait for the successful completion of the child via the wait() service (or one of its variants) so that the return result of that application can be read from the process descriptor block. If the parent does not perform a wait() operation on the child process after it terminates, Unix will keep the process descriptor block active for this application in hopes that eventually the parent will wait() or that the parent will itself terminate. If you perform the ps command in this scenario, you may find a number of "zombie" processes - these are processes marked with a Z in the output of ps that are children of a currently running parent that h... click for more
Subject:
Computer Science
Topic:
Software Tools and Systems Programming.
Posting ID:
108022
OTA ID:
102804
List and describe three types of software defects that inspection can detect.
List and describe three types of software defects that inspection can detect.
Subject:
Computer Science
Topic:
Software Tools and Systems Programming.
Posting ID:
108044
OTA ID:
105277
<< Prev Showing: 171-175 of 348 Next >>
· 1-5 · 6-10 · 11-15 · 16-20 · 21-25 · 26-30 · 31-35 · 36-40 · 41-45 · 46-50 · 51-55 · 56-60 · 61-65 · 66-70 · 71-75 · 76-80 · 81-85 · 86-90 · 91-95 · 96-100 · 101-105 · 106-110 · 111-115 · 116-120 · 121-125 · 126-130 · 131-135 · 136-140 · 141-145 · 146-150 · 151-155 · 156-160 · 161-165 · 166-170 · 171-175 · 176-180 · 181-185 · 186-190 · 191-195 · 196-200 · 201-205 · 206-210 · 211-215 · 216-220 · 221-225 · 226-230 · 231-235 · 236-240 · 241-245 · 246-250 · 251-255 · 256-260 · 261-265 · 266-270 · 271-275 · 276-280 · 281-285 · 286-290 · 291-295 · 296-300 · 301-305 · 306-310 · 311-315 · 316-320 · 321-325 · 326-330 · 331-335 · 336-340 · 341-345 · 346-348 ·Page generated in 0.0949 seconds