Case-Based Critical Thinking Questions
?
Case 1: BrainPower Tutoring
?
The owner of BrainPower Tutoring needs an application that clients can use to request an appointment. The application should allow users to enter their name, subject, preferred appointment time, and phone number, and submit their request. It should also allow them to print their appointment request, clear the screen, and exit the application. The tutoring center has some clients with visual impairments, so the application should be easy for them to use.
Which of the following statements is true about the user interface?

A. The interface should be designed using black text on a white background.
B. The interface should include a text-to-speech reader.
C. The interface should use plenty of colors to appeal to young clients.
D. The interface should use a different font for each field to keep users from being confused.


Answer: A

Computer Science & Information Technology

You might also like to view...

Structure variable declarations can be incorporated into a structure definition by placing a comma- separated list of variable names:

a. After struct StructureName and before the left brace. b. After the left brace and before the member declarations. c. After the member declarations and before the right brace. d. After the right brace and before the semicolon.

Computer Science & Information Technology

The tail of a list

A) is an instance of a class that implements the ListTail interface B) is what you get when take a list and remove its head C) is a synchronized subclass of the LinkedList class D) None of the above

Computer Science & Information Technology

Which of the following commands provides the NetBIOS name of the computer?

a. net view /domain b. net view \system_name c. ping computer_name d. ping –A IP address

Computer Science & Information Technology

Consider the following class definitions:class bClass{public:void setX(int a);//Postcondition: x = a;void print() const;private:int x;};class dClass: public bClass{public:void setXY(int a, int b);//Postcondition: x = a; y = b;void print() const;private:int y;};Which of the following correctly sets the values of x and y?

A. void dClass::setXY(int a, int b) { bClass::setX(a); y = b; } B. void dClass::setXY(int a, int b) { x = a; y = b; } C. void dClass::setXY(int a, int b) { x = bClass::setX(a); y = bClass::setY(b); } D. void dClass::setXY(int a, int b) { x = bClass.setX(a); b = y; }

Computer Science & Information Technology