subject

Create a "record" structure called "Employee" for this data:string-5 IDName EmpName (Name is a type with three fields (First (string-32), Middle(string-1), Last(string-32)int Dept_numberOffice office (Office is a datatype with two fields, Building (string-32) and Room (int)in these languages: COBOL, Java, Ada. In COBOL, the fields will be in a hierarchical relationship but must preserve the field names and sub-records. In Java, Employee, Name and Office are classes. In Ada, they will be record types. In Ada, multiple type are permitted in a single package. Put all three types in a single package. Assume int means 4 bytes int Java and Ada and 4 BCDs in COBOL.

ansver
Answers: 2

Another question on Computers and Technology

question
Computers and Technology, 21.06.2019 18:00
Assume that you have an array of integers named a. which of these code segments print the same results? int i = 1; while(i < a.length) { system.out.println(a[i]); i++; } int i; for (i = 0; i < a.length; i++) { system.out.println(a[i]); } for (int i : a) { system.out.println(i); } i and ii only ii and iii only i and iii only all three print the same results. all three print different results.
Answers: 3
question
Computers and Technology, 23.06.2019 01:20
Me with this program in c++ ! computers represent color by combining sub-colors red, green, and blue (rgb). each sub-color's value can range from 0 to 255. thus (255, 0, 0) is bright red. (130, 0, 130) is a medium purple. (0, 0, 0) is black, (255, 255, 255) is white, and (40, 40, 40) is a dark gray. (130, 50, 130) is a faded purple, due to the (50, 50, 50) gray part. (in other word, equal amounts of red, green, blue yield gray).given values for red, green, and blue, remove the gray part. ex: if the input is 130 50 130, the output is: 80 0 80. thus, find the smallest value, and then subtract it from all three values, thus removing the gray.
Answers: 3
question
Computers and Technology, 23.06.2019 06:00
How can a user delete a drawing object
Answers: 1
question
Computers and Technology, 23.06.2019 13:50
Explain how email technologies enable the exchange of messages between users. find out the typical parts of an email address and explain each part.
Answers: 1
You know the right answer?
Create a "record" structure called "Employee" for this data:string-5 IDName EmpName (Name is a type...
Questions
question
Mathematics, 12.02.2020 00:51
Questions on the website: 13722360