Which uppercase letter has a hexadecimal value 41?

a. “A”
b. “C”
c. “G”
d. “Z”


ANSWER: a

Computer Science & Information Technology

You might also like to view...

Now create the Room, Booking, and Guest tables using the integrity enhancement features of SQL with the following constraints:

(a) Type must be one of Single, Double, or Family. (b) Price must be between £10 and £100. (c) roomNo must be between 1 and 100. (d) dateFrom and dateTo must be greater than today’s date. (e) The same room cannot be double booked. (f) The same guest cannot have overlapping bookings.

Computer Science & Information Technology

What will the following code output?

``` int number = 22; int *var = &number; cout << *var << endl; ``` a. the address of number b. 22 c. an asterisk followed by 22 d. an asterisk followed by the address of number

Computer Science & Information Technology

Write a Java class that represents a Student with instance variables name, id, and gpa. Include constructors, accessor, mutator and any facilitator methods you may need.

What will be an ideal response?

Computer Science & Information Technology

Create an applet ScoreKeeper that keeps track of the score in a football game. To display the scores, the applet will have four labels in the north area. Two of the labels will display the name of the team. The other two labels will display the current score of the teams. In the center of the application will be a number of buttons: one for each team, one for each of the three basic ways to score—touchdown, field goal, and safety—and three buttons for the events that can happen after a touchdown— one-point conversion, two-point conversion, and failed to convert. Initially, there will just be two text areas and an Accept Names button in the south area of the applet. The text areas will be used to enter the names of the two teams. When the button is clicked, the team names will appear in the

This application looks at how we can change the appearance by making components visible or invisible. The solution uses a number of methods whose job is just to set the visibility of the components. This abstraction helps simplify the actionPerformed method. The solution also uses getSource() to check which component generated the event as it simplifies the code a bit for the buttons that get labeled with the team names. It is relatively easy to change it so that it checks for the string instead.

Computer Science & Information Technology