SSD4-Quiz.doc

上传人:hw****26 文档编号:3552880 上传时间:2019-06-04 格式:DOC 页数:13 大小:101KB
下载 相关 举报
SSD4-Quiz.doc_第1页
第1页 / 共13页
SSD4-Quiz.doc_第2页
第2页 / 共13页
SSD4-Quiz.doc_第3页
第3页 / 共13页
SSD4-Quiz.doc_第4页
第4页 / 共13页
SSD4-Quiz.doc_第5页
第5页 / 共13页
点击查看更多>>
资源描述

1、Quiz11. How many chunks of information can working memory hold at one time? (a) Three (b) Five (c) Nine (d) One Correct answer is (a) -2. According to the information processing model of human cognitive activity, which of the following happens to information from the outside world immediately after

2、it is perceived by the perceptual processor? (a) It is deposited into working memory.(b) It is deposited into long-term memory.(c) The motor processor completes an action based on the information.(d) The cognitive processor determines that an action needs to be taken. Correct answer is (a) -3. Which

3、 of the following is a description of Fittss Law? (a) The time it takes to point to a target is a constant: it takes the same amount of time to point to one target as it does to any other target.(b) The time it takes to point to a target is directly related to the distance to that target.(c) When ca

4、lculating the time it takes to point to a target, the size of the target is not important.(d) The action of clicking a button takes 200 msec. Correct answer is (b) -4. Which of the following is an implication that the characteristics of the human fovea have for the design of visual interfaces? (a) T

5、here are no design implications.(b) Be careful when using blinking text or animations because they naturally draw the users attention.(c) It is important to design around the eyes blind spot, which makes it difficult to see parts of the screen.(d) Because the fovea encompasses only 2 degrees of visu

6、al angle, all text should be concentrated in a small area of the screen. Correct answer is (b) -5. Software companies often release so-called “beta“ versions of software. A beta version of a program is usually given away to a selected group of users who agree to test and comment on the program befor

7、e it is released to the wider market. A company that releases beta versions is thus engaging in (a) leverage of affordance. (b) iterative design.(c) word-of-mouth advertising. (d) aggressive marketing. Correct answer is (b) -6. Feedback from users of the software systems we build is useful, and even

8、 necessary. This is because such feedback (a) helps us assign blame among the programmers in our team.(b) is the only way to discover unforeseen shortcomings of our software.(c) helps us select the best of our users.(d) pleases users by showing that we are interested in their opinion. Correct answer

9、 is (b) -7. When, on your computer screen, you drag the image of a folder to a different window, you are directly manipulating the bits of the disk file. manipulating an image that represents the bits of the disk file. generating mouse events that cause the windows interface program to redraw the im

10、age of the folder continuously, in different locations, as it appears to move. (a) II and III only. (b) II only. (c) I only. (d) III only. Correct answer is (a) -8. Your supervisor has requested that you use a toolkit to build a fancy new user interface, and she has given you the following reasons t

11、o do so (besides enticing you with a promise of a pay raise): Toolkits have widgets that allow you to generate prototypes rapidly. If you use the same toolkits, all of the programs you write will have interfaces with a similar look and feel. The Internet requires that we use the prescribed open-stan

12、dard UI toolkits. Which of the reasons are sound? (Again, besides the pay raise!)(a) II only. (b) II and III only. (c) I and II only. (d) I only. Correct answer is (c) -9. The event-redraw loop is (a) a programming construct used in redrawing event objects on the screen (e.g., a meeting in a schedul

13、ing program).(b) a built-in Java method invoked when you throw an exception for a visible icon.(c) the main programming construct of interactive programs.(d) an affordance commonly found in drawing programs. orrect answer is (c) Quiz21. In Visual Basic, which of the following Val function statements

14、 will return a value equal to or less than 32? I.Val(“32,543,987“) II.Val(“.98“) III.Val(“thirty-seven“) (a) II and III only (b) I, II, and III (c) I and II only (d) II only Correct answer is (b)-2. Valid Visual Basic data types include which of the following? I. Boolean II.String III. VariantType (

15、a) II and III only (b) I, II, and III (c) I only (d) I and II only Correct answer is (b) -3. Which of the following lines contains only valid Visual Basic equation operators? I.- + * / II. Mod III.- + * / (a) I and III only (b) II and III only (c) I, II, and III (d) I and II only Correct answer is (

16、d) -5. In Visual Basic, what types of variables should you use when storing numbers with decimal fractions? I.variant, string, or object II.single, double, or decimal III.integer, long, or Boolean (a) I only (b) II only (c) I and III only (d) III only Correct answer is (b) -6. At run time, you want

17、to change the appearance of a Visual Basic control named “cmdExit“ so that it appears “flat.“ “cmdExit“ belongs to the form named “frmInput.“ Which of the following statements would you use? (a) cmdExit.FlatStyle(“Flat“) (b) cmdExit.FlatStyle = Flat(c) cmdExit.FlatStyle = FlatStyle.Flat (d) cmdExit.

18、FlatStyle.frmInput = FlatStyle.Flat Correct answer is (c) -7. A TOE chart is (a) a technique for planning object-oriented, event-driven applications by creating a table that correlates proposed tasks with corresponding objects and events.(b) the verbal equivalent of a flowchart.(c) a grid used to co

19、rrelate the names of local, form-level, and global variables with their properties.(d) a rough sketch of a planned interface. Correct answer is (a) -8. The Code window of a Visual Basic object can be opened by selecting the object and (a) double-clicking the left mouse button. (b) pressing Ctrl-F1.(

20、c) clicking the right mouse button. (d) pressing F12. Correct answer is (a) -9. An Option Explicit On statement in a forms General Declarations section causes Visual Basic (a) to flag undeclared variables as errors at compile time.(b) to assign a string data type to all undeclared variables.(c) to i

21、nitialize string variables with zero-length strings.(d) to require that Dim and Public statements have As data type clauses. Correct answer is (a) -10. The Visual Basic Properties window allows the developer to change a Visual Basic objects appearance. change a Visual Basic objects behavior. change

22、a Visual Basic objects name.(a) II and III only (b) I, II, and III (c) II only (d) I only Correct answer is (b) -1. With which of the following do developers specify the task or tasks a Visual Basic control is to perform when a user manipulates it? (a) behavior properties (b) code (c) TOE tables (d)

23、 flowcharts Correct answer is (b) Quiz31. While reading email, a user encounters the following message just before his email program crashes: The exception Integer division by zero (0x00000094) occurred in the application at location 0x69591070. Click OK to terminate the application.Which of the fol

24、lowing heuristics are violated by the behavior of this email program?(a) Aesthetics and Minimalist Design (b) Match Between System and the Real World(c) Visibility of System Status (d) Recognition Rather Than Recall Correct answer is (b) -2. Which of the following is a similarity between the heurist

25、ics Consistency and Standards and Match Between the System and the Real World? (a) Both draw upon the users prior knowledge and experience.(b) There is no similarity.(c) Both advocate ignoring the users experiences with other software.(d) Both recognize the tendency of users to make errors. Correct

26、answer is (a) -3. Which of the following describes the most appropriate use of the technique heuristic evaluation? (a) Advising people during a therapy session(b) Evaluating the usability of a design in its final stages(c) Evaluating the usability of a design in its early stages(d) Critiquing the de

27、signer of a system Correct answer is (c) -4. Which of the following are differences between the techniques of heuristic evaluation (HE) and think-aloud usability testing (TA)? A heuristic evaluation can be carried out on a paper prototype, whereas a TA requires a functioning prototype. A heuristic e

28、valuation can be conducted by an expert analyst working alone, whereas a TA requires the participation of people who are like the applications intended users. TAs require the developer to think like a user, whereas HEs do not. (a) I and III (b) II (c) I, II, and III (d) I only Correct answer is (b)

29、-5. By which of the following criteria should we select the participants in a think-aloud usability test? (a) Availability at the time of the test (to avoid stress in the participants).(b) Experience with the system being tested.(c) Experience with the development process.(d) Similarity in experienc

30、e to the people who are expected to use the final version of the system. Correct answer is (d) -6. Which of the following, if any, accurately describe the relationship between the evidence and explanation sections of a usability aspect report? Explanation is the authors interpretation of objective e

31、vidence. Explanation explains a solution to the problem that the evidence section describes. Explanation links the problem described in the evidence section to instances of the problem discovered in the past. (a) I, II, and III. (b) I and II only. (c) I only. (d) III only. Correct answer is (c) -7.

32、Which of the following are reasons why it is necessary that usability aspect reports be clear and complete? The usability problem may need to be described to other members of the development team who did not see the problem first-hand. The author of the reports needs to be able to understand them lo

33、ng after they are written. The participants in a user study need to be able to read accounts of their sessions written in lay terms. (a) II and III (b) I only (c) I and II (d) III only Correct answer is (c) -8. In the context of writing a usability aspect report, what is meant by the statement: “Alw

34、ays step back and try to see the bigger picture.“ (a) A usability aspect report should be no longer than one page.(b) Usability aspect reports should be grouped by where they were found in the program.(c) Looking for patterns in usability problems is an important step in the analysis process.(d) It

35、is important not to waste time on insignificant usability problems. Correct answer is (c) -9. Which section of a usability aspect report (UAR) can serve as the UARs “name“? (a) Succinct description of the usability aspect (b) UAR Identifier(c) Evidence for the aspect (d) Explanation of the aspect Co

36、rrect answer is (a) Quiz41. Which Visual Basic control propertys value is used as the identifier for the control in the code? (a) Appearance (b) Caption (c) (Name) (d) BackStyle Correct answer is (c) -2. Which of the following common intuitions can fruitfully be applied in user interfaces? If B imme

37、diately follows A in time, B is caused by A. If B is bigger than A, B is more important than A. If B is near A, B is somehow related to A. (a) I only (b) I, II, and III (c) III only (d) II and III only Correct answer is (b) -3. Which of the following approaches to user interface design follow the he

38、uristic match between the system and the real world? Use the same vocabulary the user would use to describe things. Find a metaphor that describes aptly a useful portion of the computers behavior. Dont clutter the screen with blinking animations. (a) I only (b) II only (c) I, II, and III (d) I and I

39、I only Correct answer is (d) -4. Which of the following situations violates the heuristic visibility of system status? (a) The MS Windows taskbar showing the applications that are running(b) A computer system that appears to have crashed.(c) The full Recycle Bin icon showing that the bin has files i

40、n it(d) A progress indicator showing how much of a file is left to download Correct answer is (b) -5. In Visual Basic, what types of variables should you use when storing numbers with decimal fractions? I.variant, string, or object II. single, double, or decimal III. integer, long, or Boolean (a) III only (b) I only (c) I and III only (d) II only Correct answer is (d) -6. Which of the following are valid Visual Basic variable names? curAccounts Receivable 3ndPlaceEntrystr Month_To_Datedbl (a) I and III only (b) I only (c) III only (d) I, II, and III Correct answer is (c) -

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 教育教学资料库 > 精品笔记

Copyright © 2018-2021 Wenke99.com All rights reserved

工信部备案号浙ICP备20026746号-2  

公安局备案号:浙公网安备33038302330469号

本站为C2C交文档易平台,即用户上传的文档直接卖给下载用户,本站只是网络服务中间平台,所有原创文档下载所得归上传人所有,若您发现上传作品侵犯了您的权利,请立刻联系网站客服并提供证据,平台将在3个工作日内予以改正。