Advertisement
Guest User

Untitled

a guest
Apr 27th, 2018
1,834
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.25 KB | None | 0 0
  1. Question 1
  2. 0.5 out of 0.5 points
  3.  
  4. In a dictionary, a pair such such as dog : rover is called a(n) __________
  5. Selected Answer:
  6. Correct item
  7. Answers:
  8. couple
  9. Correct item
  10. key
  11. pair
  12. Question 2
  13. 0.5 out of 0.5 points
  14.  
  15. The default mode for opening a file is
  16. Selected Answer:
  17. Correct reading
  18. Answers:
  19. Correct reading
  20. appending
  21. writing
  22. deleting
  23. Question 3
  24. 0.5 out of 0.5 points
  25.  
  26. The statement set1.difference(set2) is:
  27. Selected Answer:
  28. Correct the set containing the elements that are in set1 with the elements of set2 removed
  29. Answers:
  30. the set containing the elements that are in both set1 and set2
  31. the set containing the elements that are in set2 with the elements of in set1 removed
  32. Correct the set containing the elements that are in set1 with the elements of set2 removed
  33. the set containing the elements that are in either set1 and set2 without duplicates
  34. Question 4
  35. 0 out of 0.5 points
  36.  
  37. The statement set1.intersection(set2) is:
  38. Selected Answer:
  39. Incorrect the set containing the elements that are in both set1 and set2
  40. Answers:
  41. Correct the set containing the elements that are in either set1 and set2 without duplicates
  42. the set containing the elements that are in both set1 and set2
  43. the set containing the elements that are in set1 with the elements of set2 removed
  44. the set containing the elements that are in set2 with the elements of in set1 removed
  45. Question 5
  46. 0.5 out of 0.5 points
  47.  
  48. If a file that already exists is opened for writing:
  49. Selected Answer:
  50. Correct the contents of the file will be erased
  51. Answers:
  52. the user will be prompted for the action they wish to take
  53. a Throwback error will occur
  54. the new data to be written will be appended to the end of the rile
  55. Correct the contents of the file will be erased
  56. Question 6
  57. 0.5 out of 0.5 points
  58.  
  59. A(n) __________ is an unordered collection of items with no duplicates
  60. Selected Answer:
  61. Correct set
  62. Answers:
  63. tuple
  64. file
  65. dictionary
  66. Correct set
  67. Question 7
  68. 0.5 out of 0.5 points
  69.  
  70. After all the lines of a file have been read, the readline method returns __________
  71. Selected Answer:
  72. Correct an empty string
  73. Answers:
  74. the empty tuple
  75. Correct an empty string
  76. the value None
  77. a Throwback error
  78. Question 8
  79. 0.5 out of 0.5 points
  80.  
  81. What is the output of the following Python statement?
  82.  
  83. print (set ( bookkeeper ) )
  84.  
  85. Selected Answer:
  86. Correct
  87. {'b', 'o', 'k', 'e', 'p', 'r'}
  88.  
  89. Answers:
  90. Correct
  91. {'b', 'o', 'k', 'e', 'p', 'r'}
  92.  
  93. {'b', 'o', 'o', 'k', 'k', 'e', 'e', 'p', 'e', 'r'}
  94.  
  95. {'o', 'k', 'e'}
  96.  
  97. {'b', 'p', 'r'}
  98.  
  99. Question 9
  100. 0.5 out of 0.5 points
  101.  
  102. Python uses a(n) __________ as a temporary holding place for data to be written to disk
  103. Selected Answer:
  104. Correct buffer
  105. Answers:
  106. Correct buffer
  107. temp space
  108. special memory location
  109. list
  110. Question 10
  111. 0 out of 0.5 points
  112.  
  113. An attempt to open a nonexistent file for input:
  114. Selected Answer:
  115. Incorrect none of the above
  116. Answers:
  117. creates an empty input file
  118. Correct generates a runtime error
  119. generates a syntax error
  120. none of the above
  121. Question 11
  122. 0.5 out of 0.5 points
  123.  
  124. Each piece of data in a CSV file record is referred to as a(n) __________
  125. Selected Answer:
  126. Correct field
  127. Answers:
  128. line
  129. record
  130. Correct field
  131. tupule
  132. Question 12
  133. 0.5 out of 0.5 points
  134.  
  135. Elements of a set are delimited with __________
  136. Selected Answer:
  137. Correct { }
  138. Answers:
  139. Correct { }
  140. [ ]
  141. ( )
  142. < >
  143. Question 13
  144. 0.5 out of 0.5 points
  145.  
  146. What function do you use to terminate a connection to a file?
  147. Selected Answer:
  148. Correct close
  149. Answers:
  150. stop
  151. terminate
  152. Correct close
  153. disconnect
  154. Question 14
  155. 0.5 out of 0.5 points
  156.  
  157. The statement set1.union(set2) is:
  158. Selected Answer:
  159. Correct the set containing the elements that are in either set1 and set2 without duplicates
  160. Answers:
  161. the set containing the elements that are in both set1 and set2
  162. Correct the set containing the elements that are in either set1 and set2 without duplicates
  163. the set containing the elements that are in set1 with the elements of set2 removed
  164. the set containing the elements that are in set2 with the elements of in set1 removed
  165. Question 15
  166. 0 out of 0.5 points
  167.  
  168. To avoid a potential runtime error when opening files for reading or writing:
  169. Selected Answer:
  170. Incorrect use the Boolean value try to check if the file exists
  171. Answers:
  172. use the Boolean value try to check if the file exists
  173. prompt the user for the action to take if the file does not exist
  174. Correct use the os.path.isfile function
  175. use the os.path.file.exists function
  176. Question 16
  177. 0 out of 0.5 points
  178.  
  179. In order for Python to use functions to work with binary files, you must first import which standard library module?
  180. Selected Answer:
  181. Incorrect osfile
  182. Answers:
  183. Correct pickle
  184. osfile
  185. os
  186. binaries
  187. Question 17
  188. 0.5 out of 0.5 points
  189.  
  190. When reading data from a file, the open function returns a(n) __________
  191. Selected Answer:
  192. Correct file object
  193. Answers:
  194. Correct file object
  195. file name
  196. file handle
  197. file tuple
  198. Question 18
  199. 0.5 out of 0.5 points
  200.  
  201. Which standard library module do you need to import in order to use the remove and rename functions for files?
  202. Selected Answer:
  203. Correct os
  204. Answers:
  205. Correct os
  206. file
  207. path
  208. pickle
  209. Question 19
  210. 0 out of 0.5 points
  211.  
  212. When are the contents of the buffer written to disk?
  213. Selected Answer:
  214. Incorrect When the buffer is full
  215. Answers:
  216. When the buffer is full
  217. When the file is closed
  218. Correct Both a & b
  219. None of the above
  220. Question 20
  221. 0.5 out of 0.5 points
  222.  
  223. Which file format stores data as a sequence of types that can only be access by special readers?
  224. Selected Answer:
  225. Correct binary
  226. Answers:
  227. CSV- formatted
  228. Correct binary
  229. text
  230. all of the above
  231. Question 21
  232. 0.5 out of 0.5 points
  233.  
  234. Dictionaries cannot be created with comprehension
  235. Selected Answer:
  236. Correct False
  237. Answers:
  238. True
  239. Correct False
  240. Question 22
  241. 0.5 out of 0.5 points
  242.  
  243. Elements of a set have no order
  244. Selected Answer:
  245. Correct True
  246. Answers:
  247. Correct True
  248. False
  249. Question 23
  250. 0.5 out of 0.5 points
  251.  
  252. It is common to create dictionaries from text files
  253. Selected Answer:
  254. Correct True
  255. Answers:
  256. Correct True
  257. False
  258. Question 24
  259. 0.5 out of 0.5 points
  260.  
  261. infile is a descriptive name bot not mandatory for file input usage
  262. Selected Answer:
  263. Correct True
  264. Answers:
  265. Correct True
  266. False
  267. Question 25
  268. 0.5 out of 0.5 points
  269.  
  270. Elements of a set may be duplicated
  271. Selected Answer:
  272. Correct False
  273. Answers:
  274. True
  275. Correct False
  276. Question 26
  277. 0.5 out of 0.5 points
  278.  
  279. Dictionaries cannot have other dictionaries as values
  280. Selected Answer:
  281. Correct False
  282. Answers:
  283. True
  284. Correct False
  285. Question 27
  286. 0.5 out of 0.5 points
  287.  
  288. After all the lines of a file have been read, the readline method returns the value None
  289. Selected Answer:
  290. Correct False
  291. Answers:
  292. True
  293. Correct False
  294. Question 28
  295. 0.5 out of 0.5 points
  296.  
  297. You must close a file in order to guarantee that all data has been physically written to the disk
  298. Selected Answer:
  299. Correct True
  300. Answers:
  301. Correct True
  302. False
  303. Question 29
  304. 0 out of 0.5 points
  305.  
  306. An attempt to open a nonexistent file for input generates a syntax error
  307. Selected Answer:
  308. Incorrect True
  309. Answers:
  310. True
  311. Correct False
  312. Question 30
  313. 0.5 out of 0.5 points
  314.  
  315. The remove and rename functions cannot be used with open files
  316. Selected Answer:
  317. Correct True
  318. Answers:
  319. Correct True
  320. False
  321. Question 1
  322. 0.5 out of 0.5 points
  323.  
  324. In Turtle graphics, the turtle is initially facing __________
  325. Selected Answer:
  326. Correct east
  327. Answers:
  328. north
  329. south
  330. Correct east
  331. west
  332. Question 2
  333. 0.5 out of 0.5 points
  334.  
  335. Which exception flags an error when the value of a variable cannot be found
  336. Selected Answer:
  337. Correct NameError
  338. Answers:
  339. ValueError
  340. Correct NameError
  341. VariableError
  342. AttributeError
  343. Question 3
  344. 0.5 out of 0.5 points
  345.  
  346. When does recursion end?
  347. Selected Answer:
  348. Correct When a base case is reached
  349. Answers:
  350. When the looping mechanism completes
  351. Correct When a base case is reached
  352. When another recursive call is made
  353. When computation becomes too complex to handle
  354. Question 4
  355. 0.5 out of 0.5 points
  356.  
  357. _________ is a mechanism in Python that allows the programmer to recover from errors that occur while a program is still running
  358. Selected Answer:
  359. Correct exception handling
  360. Answers:
  361. error catching
  362. Correct exception handling
  363. dynamic programming
  364. error reporting
  365. Question 5
  366. 0.5 out of 0.5 points
  367.  
  368. In Turtle graphics, the write method displays a string with the __________ corner of the string approximately at the current position of the pen
  369. Selected Answer:
  370. Correct bottom-left
  371. Answers:
  372. top-left
  373. bottom-center
  374. top-center
  375. Correct bottom-left
  376. Question 6
  377. 0.5 out of 0.5 points
  378.  
  379. In Turtle graphics, points on a canvas are called __________
  380. Selected Answer:
  381. Correct pixels
  382. Answers:
  383. Correct pixels
  384. turtles
  385. chevrons
  386. dots
  387. Question 7
  388. 0.5 out of 0.5 points
  389.  
  390. In Turtle graphics, the white region inside the Window is called the __________
  391. Selected Answer:
  392. Correct canvas
  393. Answers:
  394. turtle board
  395. turtle
  396. chevron
  397. Correct canvas
  398. Question 8
  399. 0.5 out of 0.5 points
  400.  
  401. Which one of the following is a reserved word?
  402. Selected Answer:
  403. Correct all of the above
  404. Answers:
  405. try
  406. except
  407. finally
  408. Correct all of the above
  409. Question 9
  410. 0.5 out of 0.5 points
  411.  
  412. In Turtle graphics, the turtles tail is initially located __________
  413. Selected Answer:
  414. Correct at the origin of the coordinate system
  415. Answers:
  416. Correct at the origin of the coordinate system
  417. at the bottom middle of the canvas
  418. at a random location on the canvas
  419. at the top left corner of the canvas
  420. Question 10
  421. 0.5 out of 0.5 points
  422.  
  423. Which exception flags an error from unavailable functionality that is requested for an object?
  424. Selected Answer:
  425. Correct AttributeError
  426. Answers:
  427. IndexError
  428. ValueError
  429. Correct AttributeError
  430. FunctionalityError
  431. Question 11
  432. 0.5 out of 0.5 points
  433.  
  434. A robust way to explicitly handle exceptions is to protect code with a(n) __________ statement
  435. Selected Answer:
  436. Correct try
  437. Answers:
  438. exception
  439. Correct try
  440. protection
  441. handler
  442. Question 12
  443. 0.5 out of 0.5 points
  444.  
  445. __________ recursion results when two procedures call each other
  446. Selected Answer:
  447. Correct indirect
  448. Answers:
  449. infinite
  450. Correct indirect
  451. illegal
  452. inconclusive
  453. Question 13
  454. 0.5 out of 0.5 points
  455.  
  456. A program is said to be __________ if it performs well under atypical situations
  457. Selected Answer:
  458. Correct robust
  459. Answers:
  460. correct
  461. Correct robust
  462. high-performance
  463. well-behaved
  464. Question 14
  465. 0 out of 0.5 points
  466.  
  467. What do you call runtime errors that usually occur due to circumstances beyond the programmer's control?
  468.  
  469. Selected Answer:
  470. Incorrect
  471. user errors
  472.  
  473. Answers:
  474. syntax errors
  475.  
  476. random
  477.  
  478. Correct
  479. exceptions
  480.  
  481. user errors
  482.  
  483. Question 15
  484. 0.5 out of 0.5 points
  485.  
  486. In Python, the numbers generated by the random module are said to be __________
  487. Selected Answer:
  488. Correct pseudorandom
  489. Answers:
  490. truly random
  491. partially random
  492. artificially random
  493. Correct pseudorandom
  494. Question 16
  495. 0.5 out of 0.5 points
  496.  
  497. Which of the following is an example of a runtime error?
  498. Selected Answer:
  499. Correct both a & b
  500. Answers:
  501. invalid input data
  502. file cannot be accessed
  503. Correct both a & b
  504. none of the above
  505. Question 17
  506. 0.5 out of 0.5 points
  507.  
  508. In Turtle graphics, the tail of the turtle is initially __________
  509. Selected Answer:
  510. Correct down
  511. Answers:
  512. Correct down
  513. neither up or down
  514. non-existent
  515. up
  516. Question 18
  517. 0.5 out of 0.5 points
  518.  
  519. Which exception flags an error when the function or operator receives the wrong type of argument?
  520. Selected Answer:
  521. Correct TypeError
  522. Answers:
  523. AttributeError
  524. Correct TypeError
  525. ArgumentError
  526. ValueError
  527. Question 19
  528. 0.5 out of 0.5 points
  529.  
  530. Which standard library module are turtle graphics object and methods imported from?
  531. Selected Answer:
  532. Correct turtle
  533. Answers:
  534. pickle
  535. Correct turtle
  536. random
  537. graphics
  538. Question 20
  539. 0.5 out of 0.5 points
  540.  
  541. What happens when a runtime error occurs that the programmer has not explicitly addressed with exception handling code?
  542. Selected Answer:
  543. Correct Both a & b
  544. Answers:
  545. The program terminates
  546. A Traceback error message is displayed
  547. Correct Both a & b
  548. None of the above
  549. Question 21
  550. 0 out of 0.5 points
  551.  
  552. In Turtle graphics, what does the statement t
  553. Selected Answer:
  554. Incorrect resets the original position and orientation of the turtle
  555. Answers:
  556. resets the original position and orientation of the turtle
  557. makes all of the pixels on the canvas invisible
  558. Correct makes the chevron invisible
  559. resets the standard colors for the canvas
  560. Question 22
  561. 0.5 out of 0.5 points
  562.  
  563. A function that calls itself is called __________
  564. Selected Answer:
  565. Correct recursive
  566. Answers:
  567. a palindrome
  568. repetitive
  569. inclusive
  570. Correct recursive
  571. Question 23
  572. 0 out of 0.5 points
  573.  
  574. Recursive solutions often require less code than iterative solutions
  575. Selected Answer:
  576. Incorrect True
  577. Answers:
  578. True
  579. Correct False
  580. Question 24
  581. 0.5 out of 0.5 points
  582.  
  583. When a runtime error occurs, it is the responsibility of the user to correct it
  584. Selected Answer:
  585. Correct False
  586. Answers:
  587. True
  588. Correct False
  589. Question 25
  590. 0 out of 0.5 points
  591.  
  592. A try statement must contain either an except clause or a finally clause
  593. Selected Answer:
  594. Incorrect True
  595. Answers:
  596. True
  597. Correct False
  598. Question 26
  599. 0 out of 0.5 points
  600.  
  601. Iterative solutions usually execute slower than recursive solutions
  602. Selected Answer:
  603. Incorrect True
  604. Answers:
  605. True
  606. Correct False
  607. Question 27
  608. 0 out of 0.5 points
  609.  
  610. Any problem that can be solved with recursion can be solved with iteration
  611. Selected Answer:
  612. Incorrect True
  613. Answers:
  614. True
  615. Correct False
  616. Question 28
  617. 0.5 out of 0.5 points
  618.  
  619. A try statement cannot end with a finally clause
  620. Selected Answer:
  621. Correct False
  622. Answers:
  623. True
  624. Correct False
  625. Question 29
  626. 0 out of 0.5 points
  627.  
  628. A try statement can include more than one else clause that follows the except clauses
  629. Selected Answer:
  630. Incorrect True
  631. Answers:
  632. True
  633. Correct False
  634. Question 30
  635. 0.5 out of 0.5 points
  636.  
  637. A single except clause may not refer to more than one type of error
  638. Selected Answer:
  639. Correct False
  640. Answers:
  641. True
  642. Correct False
  643. Question 1
  644. 0.5 out of 0.5 points
  645.  
  646. In the Listbox widget, which attribute specifies the number of characters that can appear on each line?
  647. Selected Answer:
  648. Correct width
  649. Answers:
  650. height
  651. pixels
  652. size
  653. Correct width
  654. Question 2
  655. 0.5 out of 0.5 points
  656.  
  657. Classes for widgets are defined in which module?
  658. Selected Answer:
  659. Correct tkinter
  660. Answers:
  661. guibldr
  662. Correct tkinter
  663. widget
  664. widgetbldr
  665. Question 3
  666. 0.5 out of 0.5 points
  667.  
  668. A(n) __________ is an imaginary rectangle containing horizontal and vertical lines that subdivide in into rectangles
  669. Selected Answer:
  670. Correct grid
  671. Answers:
  672. cell
  673. Correct grid
  674. layout
  675. window
  676. Question 4
  677. 0.5 out of 0.5 points
  678.  
  679. Which geometry manager provides complete control in the positioning of widgets?
  680. Selected Answer:
  681. Correct place
  682. Answers:
  683. cell
  684. grid
  685. pack
  686. Correct place
  687. Question 5
  688. 0 out of 0.5 points
  689.  
  690. To move through a list box, use the __________
  691. Selected Answer:
  692. Incorrect Down Arrow key
  693. Answers:
  694. Page Down key
  695. Page Up key
  696. Down Arrow key
  697. Correct all of the above
  698. Question 6
  699. 0 out of 0.5 points
  700.  
  701. Which geometry manager is the easiest to learn?
  702. Selected Answer:
  703. Incorrect pack
  704. Answers:
  705. cell
  706. Correct grid
  707. pack
  708. place
  709. Question 7
  710. 0.5 out of 0.5 points
  711.  
  712. Which attribute is used to change the placement of a widget inside a cell in the grid geometry manager?
  713. Selected Answer:
  714. Correct sticky
  715. Answers:
  716. center
  717. move
  718. pad
  719. Correct sticky
  720. Question 8
  721. 0 out of 0.5 points
  722.  
  723. What is the default color of the Label widget?
  724. Selected Answer:
  725. Incorrect grey
  726. Answers:
  727. black
  728. blue
  729. grey
  730. Correct the background color of the window
  731. Question 9
  732. 0.5 out of 0.5 points
  733.  
  734. In the Listbox widget, which attribute specifies the number of lines that can appear in the list box at one time?
  735. Selected Answer:
  736. Correct height
  737. Answers:
  738. Correct height
  739. lines
  740. size
  741. width
  742. Question 10
  743. 0 out of 0.5 points
  744.  
  745. What happens when a user enters more characters in an Entry box than was specified in the creation of the widget?
  746. Selected Answer:
  747. Incorrect text scrolls to the right
  748. Answers:
  749. text scrolls down
  750. text scrolls to the right
  751. Correct text scrolls to the left
  752. the widget will not accept more characters than specified
  753. Question 11
  754. 0.5 out of 0.5 points
  755.  
  756. What is the Entry widget used for?
  757. Selected Answer:
  758. Correct both a & b
  759. Answers:
  760. obtain input from the user
  761. display output to the user
  762. Correct both a & b
  763. none of the above
  764. Question 12
  765. 0.5 out of 0.5 points
  766.  
  767. A grid consists of rectangles called __________
  768. Selected Answer:
  769. Correct cells
  770. Answers:
  771. Correct cells
  772. windows
  773. widgets
  774. squares
  775. Question 13
  776. 0 out of 0.5 points
  777.  
  778. What happens to empty rows in a List Box?
  779. Selected Answer:
  780. Incorrect they make a blank space
  781. Answers:
  782. it is illegal to have an empty row in a List Box
  783. they are highlighted in grey
  784. they make a blank space
  785. Correct they are discarded
  786. Question 14
  787. 0.5 out of 0.5 points
  788.  
  789. Which attribute is used to enlarge a widget so that it fills an entire cell in the geometry manager?
  790. Selected Answer:
  791. Correct sticky
  792. Answers:
  793. center
  794. fill
  795. Correct sticky
  796. pad
  797. Question 15
  798. 0.5 out of 0.5 points
  799.  
  800. __________ are the components of a graphical user interface
  801. Selected Answer:
  802. Correct widgets
  803. Answers:
  804. list
  805. objects
  806. tkinters
  807. Correct widgets
  808. Question 16
  809. 0.5 out of 0.5 points
  810.  
  811. Text that is displayed to the left of a box is contained in a(n) __________ widget
  812. Selected Answer:
  813. Correct label
  814. Answers:
  815. Correct label
  816. entry
  817. text
  818. all of the above
  819. Question 17
  820. 0.5 out of 0.5 points
  821.  
  822. What is the ReadOnly Entry widget used for?
  823. Selected Answer:
  824. Correct to display output
  825. Answers:
  826. Correct to display output
  827. to display input
  828. to display input that cannot be changed once typed in
  829. all of the above
  830. Question 18
  831. 0.5 out of 0.5 points
  832.  
  833. The first row of cells is referred to as row __________
  834. Selected Answer:
  835. Correct 0
  836. Answers:
  837. Correct 0
  838. x
  839. start
  840. 1
  841. Question 19
  842. 0.5 out of 0.5 points
  843.  
  844. Which geometry manager produces the nicest layouts?
  845. Selected Answer:
  846. Correct grid
  847. Answers:
  848. cell
  849. Correct grid
  850. pack
  851. place
  852. Question 20
  853. 0 out of 0.5 points
  854.  
  855. How many items does a List Box hold by default?
  856. Selected Answer:
  857. Incorrect none, you must specify the number of items
  858. Answers:
  859. 1
  860. Correct 10
  861. 5
  862. none, you must specify the number of items
  863. Question 21
  864. 0.5 out of 0.5 points
  865.  
  866. Boxes that appear in the GUI window are called __________ widgets
  867. Selected Answer:
  868. Correct entry
  869. Answers:
  870. button
  871. Correct entry
  872. label
  873. output
  874. Question 22
  875. 0.5 out of 0.5 points
  876.  
  877. A widget can respond to
  878. Selected Answer:
  879. Correct all of the above
  880. Answers:
  881. mouse movements
  882. key presses
  883. mouse clicks
  884. Correct all of the above
  885. Question 23
  886. 0 out of 0.5 points
  887.  
  888. When attaching scroll bars to list boxes, you must declare the list box before the scroll bar
  889. Selected Answer:
  890. Incorrect True
  891. Answers:
  892. True
  893. Correct False
  894. Question 24
  895. 0.5 out of 0.5 points
  896.  
  897. The text in a Label widget cannot consist of more than one line
  898. Selected Answer:
  899. Correct False
  900. Answers:
  901. True
  902. Correct False
  903. Question 25
  904. 0 out of 0.5 points
  905.  
  906. Entry widgets do not have a command argument that binds it to a callback function when an event is triggered
  907. Selected Answer:
  908. Incorrect False
  909. Answers:
  910. Correct True
  911. False
  912. Question 26
  913. 0.5 out of 0.5 points
  914.  
  915. Every TUI program can be converted to a GUI program
  916. Selected Answer:
  917. Correct True
  918. Answers:
  919. Correct True
  920. False
  921. Question 27
  922. 0 out of 0.5 points
  923.  
  924. Events are central to text-based interfaces
  925. Selected Answer:
  926. Incorrect True
  927. Answers:
  928. True
  929. Correct False
  930. Question 28
  931. 0.5 out of 0.5 points
  932.  
  933. Vertical scroll bars can be connected to List Boxes
  934. Selected Answer:
  935. Correct True
  936. Answers:
  937. Correct True
  938. False
  939. Question 29
  940. 0.5 out of 0.5 points
  941.  
  942. GUI programs are event driven
  943. Selected Answer:
  944. Correct True
  945. Answers:
  946. Correct True
  947. False
  948. Question 30
  949. 0.5 out of 0.5 points
  950.  
  951. Button widgets do not have a command argument that binds it to a callback function when an event is triggered
  952. Selected Answer:
  953. Correct False
  954. Answers:
  955. True
  956. Correct False
  957. Monday, April 9, 2018 8:26:01 PM EDT
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement