7 Pages

01.key

Course: ISC 200901, Fall 2009
School: SUNY Oswego
Rating:
 
 
 
 
 

Word Count: 1666

Document Preview

320 ISC Exam 1 Page 1 of 6 Name ____ KEY 96 points _____________ Multiple Choice. Choose the single best answer. 3 points each. 1. In the "waterfall" method of knowledge engineering, which phase would precede the others listed? a) assessment b) build knowledge base A c) design software model d) test and debug the model 2. Which best demonstrates the...

Register Now

Unformatted Document Excerpt

Coursehero >> New York >> SUNY Oswego >> ISC 200901

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
320 ISC Exam 1 Page 1 of 6 Name ____ KEY 96 points _____________ Multiple Choice. Choose the single best answer. 3 points each. 1. In the "waterfall" method of knowledge engineering, which phase would precede the others listed? a) assessment b) build knowledge base A c) design software model d) test and debug the model 2. Which best demonstrates the principle of "a priori knowledge"? a) Alex Rodriguez used steroids during 2001 so he was probably using them the past several years too. b) Researches found that people from a certain region in Italy lived significantly longer than those from other regions. c) The ancient Greek philosopher Heraclitus estimated that the sun was one foot in diameter. d) Wild birds do not become dependent on bird-feeders and C do not die when that source is removed. 3. What distinguishes "procedural" from "declarative" knowledge? a) Procedural describes how to solve a problem, and declarative describes what is known about a problem. b) Procedural knowledge comes only in the form of rules, and all other ways of specifying knowledge is declarative. c) Procedural knowledge is concrete whereas declarative is abstract. A d) Declarative knowledge can not be used to solve problems. 4. How would you characterize this "Knowledge Representation" schema? (chair, color, brown) (chair, fabric, suede) (couch, color, green) (couch, fabric, polyester) a) Frames b) Semantic Networks C c) Object-Attribute-Value triplets d) Rules 5. How would you characterize this "Knowledge Representation" schema? ANIMAL | ^ ^ | | is-a | is-a | | / | | BIRD BEAR_ | / | \ \___has__>FUR--is-a-->COVERING | / has \ | | has v \__ | | | TEETH has is-a | v | | | | WINGS has-prop v v | | CLAWS INSULATOR | v | | SHARPNESS<--has-prop | ----------------------------------------------------- a) Frames b) Semantic Networks B c) Object-Attribute-Value triplets d) Rules 6. Categorize the following as to the type of reasoning involved. There are paw prints leading up to that tree but none leading away, therefore our cat must have been abducted by aliens. A a) deductive b) inductive c) abductive d) analogical ISC 320 Exam 1 Page 2 of 6 Name ____ KEY 96 points _____________ 7. Categorize the following as to the type of reasoning involved. Whenever green men appear, our cat disappears. The cat is gone. So green men must have been here. [Hint: This is of the form: A -> B. B. Therefore A. - which is called the "fallacy of affirming the consequent".] C a) deductive b) inductive c) abductive d) analogical 8. Which best exemplifies the use of meta-knowledge? a) (defrule monitor-1 (temp (val ?t)) (test (> ?t 1000)) => (assert (state (core melt-down)))) b) (defrule controller-1 (temp (val ?t)) (test (> ?t 1000)) => (assert (control (scram on)))) c) (defrule logic-1 (temp (val ?t)) (test (> ?t 1000)) => (focus CONTROL-MODULE)) d) (defrule planner-1 (temp (val ?t)) (test (> ?t 1000)) => C (printout t "memo: create new training manual" crlf)) 9. Which component of an Expert System contains domain knowledge? a) knowledge base b) inference engine A c) working memory d) User interface 10. Categorize the following rule as to type. (defrule analyzer-1 (problem (car wont-start)) => (printout t "first check the electrical system ... " "then the fuel system ... " "then the ignition interlock" crlf)) C a) Relation b) Heuristic c) Strategy d) Directive 11. Categorize the following system, a part of which is shown, as to type. (defrule new-years-1 (date new-years-eve) => (assert (beverage bollinger-brut-champagne))) (defrule red-meat-1 (entree tbone-steak) => (assert (beverage mondavi-pinot-noir))) B a) Prediction b) Prescription c) Diagnosis d) Simulation ISC 320 Exam 1 Page 3 of 6 Name ____ KEY 96 points _____________ 12. Categorize the following system, a part of which is shown, as to type. (defrule otto-1 (state (engine getting-gas)) (not (state (engine turns-over))) => (assert (problem (component battery)))) (defrule otto-2 (state (engine turns-over)) (not (state (lights working)) => (assert (problem (component spark-plugs)))) C a) Prediction b) Prescription c) Diagnosis d) Simulation 13. The inference strategy that begins with known facts and derives new facts using rules whose premises match known facts, continues until a goal state is reached or no new facts can be deduced is called a) backward chaining b) forward chaining B c) analogical reasoning d) heuristic reasoning 14. Backward chaining is superior to a forward chaining system when we a) need to start with data and find the conclusions they imply. b) begin with a hypothesis and then attempt to prove it. c) want the rule with highest priority to fire first. B d) need to model a breadth first search. 15. Which is an appropriate next step in the coding of a system designed using backward chaining, given we've identified the goal "buy my first new car"? a) (defrule A (state purchase car) => (state get money)) b) (defrule A (state get money) => (state purchase car)) c) (defrule A (state get job) => (state get money)) B d) (defrule A (state purchase car) => (state get job)) 16. Which demonstrates how a forward-chaining inference technique provides a considerable amount of information from a small amount of data? Assume the data are: (deffacts input-data (finals may-14)) a) (defrule r-1 (finals may-14) => (pack-bags may-12)) (defrule r-2 (finals may-14) => (cram-books (defrule may-13)) r-3 (finals may-14) => (book-flight may-11)) b) (defrule r-1 (pack-bags may-12) => (finals may-14)) (defrule r-2 (cram-books may-13) => (finals may-14)) (defrule r-3 (book-flight may-11) => (finals may-14)) c) (defrule r-1 (pack-bags may-12) (cram-books may-13) (book-flight may-11) => (finals may-14)) d) all of the above. A e) none of the above 17. Of the systems shown in the previous problem, which demonstrates a system with higher fan-in? B a) b) c) ISC 320 Exam 1 Page 4 of 6 Name ____ KEY 96 points _____________ 18. After the data for a system have been defined, what is the next step in design by forward-chaining? a) define facts b) define data-driven structure B c) expand system d) define goal rules 19. If facts can lead to a large number of different conclusions, but the number of ways to reach the particular conclusion in which you are interested is small, which design technique is indicated? a) forward chaining b) backward chaining B c) bottom-up search d) breadth-first search 20. Given (deftemplate entry (slot word) (slot definition) (slot part-of-speech)) Construct a defrule to print out the definitions of every word whose part of speech is adjective. (defrule print-adjectives (entry (word ?w) (definition ?d) (part-of-speech adjective)) => (printout t "the definition of " ?w " is " ?d crlf)) 21. What term from cognitive psychology is used to describe the relationship between situations and actions? D a) primitive b) and-or tree c) goal agenda d) production 22. Which of the following is true concerning the characteristics of forward and backward chaining? a) backward chaining is goal driven and forward chaining is data driven b) forward chaining facilitates explanation, whereas backward does not c) backward chaining uses the breadth-first search and forward chaining uses depth-first search d) backward chaining resembles a planning type of expert system A and forward chaining resembles a diagnosis type of expert system 23. Each is a property of a rule-based expert system. Which would not be considered advantageous? a) Separation of control from knowledge b) Consistency checking is possible c) Allows modular construction D d) Requires exact matching 24. The header and row "0" of a truth table used by a small-town police department to decide whether to arrest a male demonstrator is shown. Note there are three variables and the last column is the decision reached. Long Hair | Dirty Clothing | Tatoos || Arrest the person ------------|-----------------|-------------||-------------------- No | No | No || No The mayor decides that officers should bring in the suspect if he has any two, or all three of the attributes of a "trouble maker". How many "Yes"es are in the "Arrest the person" column? C a) 1 b) 2 c) 4 d) 6 d) 8 ISC 320 Exam 1 Page 5 of 6 Name ____ KEY 96 points _____________ 25. Which is the in-order traversal of the given tree assuming the ordering among siblings and the parent is alphabetical? ______ G ___ a) A B C F G H K M / / \ \ b) B A C K F H G M M C F B c) B C F G M A K H / \ \ d) G B C F M A H K B K A H 26. For the given graph, what is a possible depth-first traversal ordering? D a) A B E G C D F H / \ b) B A E G C D F H G----C---H c) C D F G H A B E / \ \ d) D G C H B A E F B----A F | B E 27. For the same graph, what is a possible breadth-first traversal ordering? a) A B E G C D F H b) B A E G C D F H c) C D F G H A B E C d)...

Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

Oregon State - ECE - 499
Practice Problems for Wavelets:1) Work out (convince yourselves) of the example on DWT on the ppt slide. Calculate the distortion (summation of of the square differences between the true and reconstructed values of f(x). 2) Do the problem 3 in chap
SUNY Oswego - ISC - 200901
ISC 320 Exam 2 Page 1 of 8 Name _ 78 points _Multiple Choice/Short Answer. Choose the single best answer. 3 points each. 1. In an AND-OR tree, if the branches from a node are joined with an arc, then the parent is assigned a tr
Oregon State - ECE - 499
Lecture 11: Context CodingThinh Nguyen Oregon State UniversityOutlinePPM JBIG Burrows-Wheeler Transform (bzip2) Move-To-FrontContext CodingH(X)H(X|Y)H(Y)H(X|Y) &lt;= H(X)H(X|Y) takes fewer bits to code than H(X)Context CodingThe dist
Oregon State - ECE - 499
Lecture 7: Run-Length, Golomb, and Tunstall CodesThinh Nguyen Oregon State UniversityOutlineRun-Length Coding Golomb Coding Tunstall CodingLossless coding: Run-Length encoding (RLE)Redundancy is removed by not transmitting consecutive identic
Oregon State - ECE - 499
Lecture 13: Vector QuantizationThinh Nguyen Oregon State UniversityVector QuantizationVectorVector Quantization FactsExamplesScalar vs. Vector QuantizationPixels within a block are correlated.This tends to minimize the number of codewor
Oregon State - ECE - 499
Wavelets and Multiresolution ProcessingThinh NguyenMultiresolution Analysis (MRA)A scaling function is used to create a series of approximations of a function or image, each differing by a factor of 2 from its neighboring approximations. Additio
SUNY Oswego - ISC - 200901
Script started on Mon Feb 16 18:17:50 2009 moxie &gt; cat watch-it.clp; file: watch-it.clp; author: J. Random Expert; due date: done in class on Feb 19, 2008; Synopsis: Expert system to recommend a movie rental based on; a person'
SUNY Oswego - ISC - 320
CLIPS&gt; (clear)CLIPS&gt;(defclass DUCK (is-a USER)(role concrete)(pattern-match reactive) (multislot sound (create-accessor read-write) (default quack quack)CLIPS&gt; (make-instance [Dorky_Duck] of DUCK)[Dorky_Duck]CLIPS&gt; (make-instanc
University of Hawaii - Hilo - ACM - 220
MayaShading Networks loading Mental Ray global illumination ambient occlusion sampling12Homework 2 animation of hologram appearing white room with ambient occlusion 10 seconds 640x480 Quicktime H.2643
SUNY Oswego - ISC - 320
;=; Circuit Input/Output Simplification Expert System;; This program simplifies the boolean decision ; table for a circuit consisting of inputs (SOURCES) ; and outputs (LEDs). ;; The simplification procedure works as follows:
SUNY Oswego - ISC - 320
;=; Example Circuit #1;; An example circuit to be loaded for use with; the &quot;electronic.clp&quot; example program. Note; that OR gate #1 receives both inputs from the; same source with one of the inputs negated.; Therefore, the
University of Hawaii - Hilo - ACM - 220
Increasing RealismPhotorealistic Rendering 1flat shading lambert shading phong/blinn shading texture/bump maps ray tracing shaders global illumination caustics2Interiors need global illumination lots of bouncing light multiple ligh
University of Hawaii - Hilo - ACM - 220
Game HardwareLighting for Games resolution color depth 3D lighting vertex colors textures programmable shaders12Baking Lighting want to transfer scene illumination to target hardware assuming target hardware cannot do complex lighting
Santa Clara - ELEN - 226
FPGA ArchitectureFPGA Architecture OverviewDr Chris Dick DSP Chief Scientist Advanced Systems Technology Group (ASTG) DSP DivisionFPGA Architecture (1) Generic FPGA architecture consistsof an array of logic tiles Tile typically consists of
Santa Clara - ELEN - 226
FPGA Signal Processing Dr Chris Dick Santa Clara University ELEN 226 Assignment 1:The purpose of this assignment is to check your understanding of basic LUT-based FPGA architecture and how logic and arithmetic functions are implemented in these dev
Santa Clara - ELEN - 226
ELEN 2226: FPGA Signal Processing Dr Chris Dick Santa Clara University Assignment 2: FPGA FIR FiltersThis assignment will contribute towards you final grade for the course. This assignment will be graded out of 10 marks. In this assignment you will
Santa Clara - ELEN - 226
Short description of design filesThe files below are supplied to help you with assignment 2.FltrDsgn.mThis Matlab m-file generates the filter coefficients that satisfy the requirements defined in assignment 2.The script generates the coefficie
Santa Clara - ELEN - 226
ELEN 226: FPGA Signal Processing Dr Chris Dick Santa Clara University LabThis assignment will contribute towards you final grade for the course. The objective of this lab is to provide you with practical experience designing, implementing and verif
Santa Clara - ELEN - 226
IEEE TRANSACTIONS ON ACOUSTICS, SPEECH, AND SIGNAL PROCESSING, VOL. ASSP-29, NO. 2, APRIL 1981155An Economical Class of Digital Filters for Decimation and InterpolationAbstruct-A class of digital h e a r phase fiiite impulse response (FIR) limi
Santa Clara - ELEN - 226
CIC FiltersDr Chris Dick DSP Chief Scientist Advanced Systems Technology Group DSP DivisionCascaded Integrator-Comb (CIC) Filters CIC filters are efficient architectures for efficiently implementing large sample rate changes interpolation deci
Allan Hancock College - COMM - 11008
#?D#Getting Started.doc#]{p#e8y #lpq#1 #ll#8gw{wYayI#uJL+#8r##u#U%u#x\Ru}=d#.|O=w{F^ #X}2#Bq1#U* Z LD{Esuw&gt;S#Y#a#[#X0\{#/Jyd0MLO{#C ou#1#?\;\fY.#z#*t=-#Gx'! Xr(#v~5#!r*VpuhU3_@ts_A.+[e|eH#USy? &lt;g3L23&lt;/#{X/#h6_G#6# WY-BB^# #P #g;RR##R/ki#&lt; (#0,hD
Allan Hancock College - COMM - 11008
COMMUNICATION AND CRITICAL THINKING COMM11008 TERM 2 2006Exercise Two(Worth up to 10 marks)1. ExpositionA. Choose one of the following to compare and contrast: * friends and relations *any two codes of football (e.g. rugby union and soccer) * c
Allan Hancock College - COMM - 11008
COMMUNICATION AND CRITICAL THINKING COMM11008 TERM1 2006Exercise One(Worth up to 5 marks) PART A This requires you to compare your own thoughts about study at university with what is said in the textbook and course materials. You must use your res
Allan Hancock College - COMM - 11008
COMMUNICATION AND CRITICAL THINKINGCOMM 11008STUDY MODULEWEEK ONEIntroduction: University, this course, and you Textbook Readingfor this week.Chapters 1 and 3 (excluding pp. 30-32) for next week.Chapter 3 (pp. 30-32) and Chapter 11First th
Allan Hancock College - COMM - 11008
COMMUNICATION AND CRITICAL THINKINGCOMM 11008STUDY MODULEWEEK THREEFinding SourcesTextbook readingfor this week . . . . . . . Chapter 11 for next week. . . . . . . Chapter 6, pp. 79-84Getting ideas and information from other sourcesResea
Allan Hancock College - COMM - 11008
COMMUNICATION AND CRITICAL THINKINGCOMM 11008STUDY MODULEWEEK FOURTools for Dealing with Ideas: ExpositionTextbook Readingfor this week.Chapter 6, pp. 79-84 for next week. Chapter 6, pp. 84-90.Dealing with IdeasWriting well is important
Allan Hancock College - COMM - 11008
COMMUNICATION AND CRITICAL THINKINGCOMM 11008STUDY MODULEWEEK FIVEExposition continuedTextbook Readingfor this week. Chapter 6, pp. 84-90. for next week. Chapter 4This week we continue with the techniques of Exposition. These notes are br
Allan Hancock College - COMM - 11008
COMMUNICATION AND CRITICAL THINKINGCOMM 11008STUDY MODULEWEEK EIGHTReading StrategiesTextbook Readingfor this week. Chapter 7 for next week.Chapter 12This week . . . The module is short but there is a whole textbook chapter to read.Read
Allan Hancock College - COMM - 11008
COMMUNICATION AND CRITICAL THINKINGCOMM 11008STUDY MODULEWEEK NINEUsing Sources: note-taking and referencingTextbook Readingthis weekChapter 12 (see also p. 159) for next weekChapter 13We start this week with a bit more on finding sources
Allan Hancock College - COMM - 11008
COMMUNICATION AND CRITICAL THINKINGCOMM 11008STUDY MODULEWEEK TENWriting: some fundamentalsTextbook Readingfor this weekChapter 13 for next week. Chapter 13; pp. 145- 146 This weeks module deals with some aspects of writing in general. Most
Allan Hancock College - COMM - 11008
COMMUNICATION AND CRITICAL THINKINGCOMM 11008STUDY MODULEWEEK TWELVEImproving Your Written WorkTextbook Readingthis week. Ch. 14; pp 196-204After giving you suggestions about how to turn in an essay you can really be proud of, this module
Allan Hancock College - COMM - 11008
COMM 11008 Communication and Critical ThinkingTerm 1, 2006Portfolio ActivitiesThe portfolio comprises 30% of the overall assessment in this coursePurposeThe activities you complete for the Portfolio are designed to Give you credit for your r
Washington - ATMOS - 581
r 8 vuuuts3i|i8}gd r t d f fr f p f a p Y}3xvhaG8%av3%ia31vn#v3vvdvaAvat%d&amp;cGx|&amp;rBA1vnechdx|Rm d c a d g a c c c c a m a c c an } u r XYwRhp e t3 c va3vXhedt%cvaxa%cxa%xxnkAvh3AcqtXvva3qvnad3R4ti3&amp;gWthxYc18x da w
Allan Hancock College - COMM - 11008
COMMUNICATION AND CRITICAL THINKING COMM11008 TERM 2 2006Exercise ThreeWorth up to 15 marksSOURCE MATERIALRead this carefully before you proceed to answer the questions. Imagine the government is considering new legislation. Under the proposed
Allan Hancock College - INFS - 1200
INFS1200/7900 Introduction to Information SystemsS1, 2009Assignment Marking (30%)Student No. _ Student Name: _ Group Members (if any): Student No. _ Student Name: _ Student No. _ Student Name: _ 1. Design (15%)ER 8% All required entities, attrib
Allan Hancock College - INFS - 1200
INFS1200 / INFS7900S1, 2009Extra SQL Executrices for INFS1200/INFS7900 1. TABLE SCHEMAGiven the schema and the tuples: STUDY STUDENT_ID SUBJECT_NO 2011234501 INFS3143 2011234501 INFS3143 2011234501 INFS3144 2011234502 INFS3143 2011234502 INFS31
Allan Hancock College - INFS - 1200
DoB Password Lastname Name Firstname Hobby User M Contact M Contact N Locations 1RegisterCountry Login 1 N Own Join M M Community 1 M M-id ContentLanguageUser NSendMessage M For M Date1ReceiveRating LongitudeLocation LatitudeTime
Allan Hancock College - INFS - 1200
Addendum of Slide 7-7824. Find the total number of employees who earn more than 40000, in departments with more than 5 employees.SELECT D_No, Count(*) FROM EMPLOYEE WHERE salary &gt;40000 and D_No IN (SELECT D_No FROM EMPLOYEE GROUP BY D_No HAVING cou
Université du Québec à Montréal - K - 7635
INTERNATIONAL COURT O F JUSTICEREPORTS O F JUDGMENTS, ADVISORY OPINIONS AND ORDERSCASE CONCERNING THE GABCIKOVO-NAGYMAROS PROJECT(HUNGARYISLOVAKIA)JUDCMENT OF 25 SEPTEMBER 1997COUR INTERNATIONALE DE JUSTICERECUEIL DES ARRTS, AVIS C:ONSULTAT
Allan Hancock College - INFS - 1200
Tutorial 3 Solutions - Relational ModelReview Questions: Elmasri &amp; Navathe: Chapter 5: Questions 5.1, 5.2 and 5.4 Exercise: Elmasri &amp; Navathe: Chapter 5: Exercise 5.10 Solution: (refer to Figure 5.6 and Figure 5.7. (a) Insert &lt; 'Robert', 'F', 'Scott
Université du Québec à Montréal - K - 7635
COUR INTERNATIONALE DE JUSTICERECUEIL DES ARRETS, AVIS CONSULTATIFS E T ORDONNANCESRPARATION D E S DOMMAGESSUBIS AU S E R V I C E D E S NATIONS UNIESAVIS CONSULTATIF DU 11 AVRIL 1949INTERNATIONAL COURT OF JUSTICEREPORTS O F JUDGMENTS, ADVI
Allan Hancock College - INFS - 1200
Tutorial 4 Solutions - Entity Relationship to Relational MappingExercise: Elmasri &amp; Navathe: Chapter 7: Exercise 7.5 Solution:Additional Exercise Map the following ER schema into a relational schema, and specify all primary keys and referential in
Allan Hancock College - INFS - 1200
INFS1200/7900 Semester 1 2007 Tutorial 5 Functional DependenciesQuestion: Find all candidate keys for the given relations and functional dependencies1. R (A, B, C, D, E) {A} {B,C} {C,D} {E} {A,C} {E} {B} {D} {E} {A,B} Candidate keys are: BC,
Allan Hancock College - INFS - 1200
INFS1200/7900 Semester 1 2007 Tutorial 6 NormalisationQuestion 1: Chapter 10 / Exercises 10.26 (3rd Edition: 14.26)What is the key for R? Decompose R into 2NF and 3NF Relations 1. R (A, B, C, D, E, F, G, H, I, J) {A, B} {C} {A} {D, E} {B} {F} {
Allan Hancock College - INFS - 1200
INFS1200/7900 Semester 1 2007 Tutorial 7 Basic SQLQuestion 1: Chapter 8 / Exercise 8.10 Write Appropriate SQL DDL Statements for declaring the LIBRARY relational database schema.One possible set of CREATE TABLE statements is given below: CREATE T
Allan Hancock College - INFS - 1200
INFS1200 / INFS7900 Tutorial AnswersTutorial 8 Solutions - SQLQuestion 1 Exercise: Elmasri &amp; Navathe: Chapter 8: Exercise 8.13 Solution: We will give one or more possible specifications for each query. (a) Retrieve the names of employees in depart
Texas Tech - PSY - 3400
Texas Tech - PSY - 3400
Texas Tech - PSY - 3400
Texas Tech - PSY - 3400
Texas Tech - PSY - 3400
Texas Tech - PSY - 3400
Texas Tech - PSY - 3400
Texas Tech - PSY - 3400
Texas Tech - PSY - 3400
Texas Tech - PSY - 3400
Texas Tech - PSY - 3400
Texas Tech - PSY - 3400
Texas Tech - PSY - 3400
Texas Tech - PSY - 3400