28 Pages

Tutorial.05

Course: CS 112, Fall 2009
School: Western Washington
Rating:
 
 
 
 
 

Word Count: 2642

Document Preview

Tutorial XP 5 Designing a Web Site with Frames Using Frames to Display Multiple Web Pages Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 1 XP Objectives Describe uses of frames in a Web site Layout frames within a browser window Display a document within a frame Format the appearance of frames with margin widths, removing scrollbars, and specifying resize frames Tutorial 5 New...

Register Now

Unformatted Document Excerpt

Coursehero >> Washington >> Western Washington >> CS 112

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.
Tutorial XP 5 Designing a Web Site with Frames Using Frames to Display Multiple Web Pages Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 1 XP Objectives Describe uses of frames in a Web site Layout frames within a browser window Display a document within a frame Format the appearance of frames with margin widths, removing scrollbars, and specifying resize frames Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 2 1 XP Objectives Direct a link target to a specific frame Direct a link target outside of a frame layout Add page content for browsers that do not support frames Incorporate an inline frame in a page Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 3 XP Introducing Frames A frame is a section of the browser window capable of displaying the contents of an entire Web page. For example: the frame on the left may display the contents of a Web page containing a list of hyperlinks the frame on the right may display a Web page with product information Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 4 2 XP Advantages to Using Frames Frames can give more flexibility in designing your Web presentation. You can place information in different Web pages, removing redundancy. Frames can make your site easier to manage. Frames allows you to update only a few files rather than the whole. Web designers advocate creating both framed and nonframed versions for a Web site and giving users the option of which one to use. Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 5 XP Disadvantages to Using Frames The browser has to load multiple HTML files before a user can view the contents of the site increasing the waiting time for potential customers. Some older browsers cannot display frames. Some users simply do not like using frames. Some web authors feel that frames are too constricting, limiting flexibility in designing the layout of a Web page. There is concern that frames can use up valuable screen space. The source code is removed from the user. Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 6 3 XP An Example of Frames A common use of frames: displaying a table of contents in one frame, while showing individual pages from the site on the another. Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 7 Activating a Hyperlink within XP Frames A list of hyperlinks that remain on the screen while the user navigates through the contents of the site. Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 8 4 XP Planning Your Frames Before you start creating your frames, it is a good idea to plan their appearance and how they are to be used. There are several issues to consider: What information will be displayed in each frame? How do you want the frames placed on the Web page? What is the size of each frame? Which frames will be static (always showing the same content)? What Web pages will users first see when they access the site? Should users be permitted to resize the frame to suit their needs? Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 9 XP An Example of a Frame Layout Sketch Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 10 5 XP Creating a frameset A frameset describes how th frames are organized; they are defined by rows or columns, but not both. You must choose to layout your frames in either rows or columns. To create a frame layout, you will use the rows and cols attributes of the <frameset> tag. the rows attribute creates a row of frames the cols attribute creates a column of frames Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 11 XP Creating a Frameset The <frameset> tag is used to store the definitions of the various frames in the file. These definitions will typically: include the size and location of the frame include the Web pages the frames display The <frameset> code does not include an opening and closing <body> tag. the reason for this is that this HTML file displays the contents of other Web pages; technically, it is not a Web page Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 12 6 Frames Defined in either Rows or Columns XP Frames laid out in columns Frames laid out in rows Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 13 XP The Frame Syntax The syntax for creating a row or column frame layout is: <frameset rows=row1,row2,row3, . . .> </frameset> or <frameset cols=column1,column2,column3, . . .> </frameset> Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 14 7 XP Specifying a Frame Source To specify a source for a frame, use the <frame> tag with the syntax: <frame src=url /> The URL is the filename and location of the page that you want to load. You must insert the <frame> tag between the opening and closing <frameset> tags. Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 15 XP Logo and Placement Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 16 8 Inserting a Frame for the Head.htm File Because this is the first <frame> tag, the browser displays head.htm in the first frame row. Note that using the comment tag and indenting the <frame> tag a few spaces helps make your HTML code easier to follow and interpret. XP Frame source Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 17 XP Nesting Framesets Remember that a frameset is defined by rows or columns, but not both. To create frames using both rows and columns, one frameset must be nested inside another. The interpretation of the rows and cols attributes changes slightly. for example, a row height of 25% does not mean 25% of the display area, but rather 25% of the height of the frame into which that row has been inserted (or nested) Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 18 9 XP Creating a Nested Set of Frames in the Second Frame Row two columns of frames nested in the second frame row Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 19 XP Nested Frames Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 20 10 XP Inserting frame columns Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 21 Result of Web Site with Nested Frames XP Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 22 11 XP Formatting a Frames You can control three attributes of a frame: scroll bars the size of the margin between the source document and the frame border whether or not the user is allowed to change the size of the frame Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 23 XP Hiding and Displaying Scroll Bars By default, scroll bars are displayed when the content of the source page cannot fit within the frame. You can override the default setting using the scrolling attribute. The scrolling syntax is: scrolling=type scrolling can either be yes (to always display scroll bars) or no (to never display scroll bars) If you dont specify a setting for the scrolling attribute, the browser displays scroll bars when necessary. Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 24 12 Removing the Scroll Bars from the Logo Frame set the scrolling attribute to no to remove the scroll bars XP Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 25 XP Setting Frame Margins The following should be consider for frame margins: the browser determines the amount of space between the content of the page and the frame border occasionally, the browser sets the margin between the border and the content too large the margin should be big enough to keep the sources text or images from running into the frames borders the margin should not take up too much space, because you typically want to display as much of the source as possible Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 26 13 XP Specifying Margins Syntax The syntax for specifying margins for a frame is: marginheight=value marginwidth=value> marginheight is the amount of space, in pixels, above and below the content of the page in the frame marginwidth is the amount of space to the left and right of the page If you specify only one, the browser assumes that you to want use the same value for both. Setting margin values is a process of trial and error as you determine what combination of margin sizes looks best. Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 27 Specifying the Margin Sizes for the Frames height of the margin text for the logo frame will be 0 pixels XP height of the margin for the home page will be 0 pixels and the width of the margin will be 10 pixels Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 28 14 XP Result of Web Site with Resized Frame Margins Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 29 XP Controlling Frame Resizing By default, users can resize frame borders in the browser by simply dragging a frame border. Some Web designers prefer to freeze, or lock, frames, so that users cannot resize them. this ensures that the Web site displays as the designer intended The syntax for controlling frame resizing is: noresize=noresize The noresize attribute is included within the <frame> tag to prevent users from modifying the size of the frame. Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 30 15 XP Working with Frames and Links By default, clicking a link within a frame opens the linked file inside the same frame. You can display hyperlinks in many ways: in a different frame in a new window in the entire window When you want to control the behavior of links in a framed page, there are two required steps: give each frame on the page a name point each hyperlink to one of the named frames Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 31 Files and links in a Web Site XP Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 32 16 XP Assigning a Name to a Frame To assign a name to a frame, add the name attribute to the frame tag. The syntax for this attribute is: <frame src=url name=name /> case is important in assigning names: information is considered a different name than INFORMATION Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 33 XP Setting the Frame Names the frame name Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 34 17 XP Specifying a Link Target You can use the target attribute to open a page in a specific frame. The syntax for this is: target=name When a page contains dozens of links that should all open in the same frame, HTML provides a way to specify a target frame for all the hyperlinks within a single page. Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 35 XP Specifying a Link Target the Web page will appear in the pages frame Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 36 18 XP Using Reserved Target Names Reserved target names are special names that can be used in place of a frame name as the target. They are useful in situations: where the name of the frame is unavailable when you want the page to appear in a new window when you want the page to replace the current browser window All reserved target names begin with the underscore character ( _ ) to distinguish them from other target names. Reserved target names are case-sensitive, they must be entered in lowercase. Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 37 XP Using Reserved Target Names Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 38 19 XP Using the _self target Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 39 XP Using the <noframes> Tag Use the <noframes> tag to allow your Web site to be viewable using browsers that do or do not support frames. When a browser that supports frames processes this code, it ignores everything within the <noframes> tags and concentrates solely on the code within the <frameset> tags. When a browser that doesnt support frames processes this code, it doesnt know what to do with the <frameset> and <noframes> tags, so it ignores them. When you use the <noframes> tag, you must include <body> tags, this way, both types of browsers are supported within a single HTML file. Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 40 20 XP The <noframes> Syntax The syntax for the <noframes> tag is: <html> <head> <title>title</title> </head> <frameset> frames <noframes> <body> page content </body> </noframes> </frameset> </html> Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 41 XP Frameless Version of a Web Site Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 42 21 XP Inserting the Noframes Code Web site will contain no frames Tutorial 5 New Perspectives on HTML and XHTML, Comprehensive 43 XP Working with Frame Borders There are additional attributes you can apply to the <frame> tag that allow you to change border size and appearance. For example: you can remove borders from your frames to free up more space for t...

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:

Western Washington - CS - 112
XP Tutorial 7Working with Cascading Style SheetsCreating a Style for Online ScrapbooksTutorial 7New Perspectives on HTML and XHTML, Comprehensive1XPObjectives Introducing Cascading Style Sheets Using Inline Styles Using Embedded St
Western Washington - CS - 112
XP Tutorial 3Designing a Web PageWorking with Fonts, Colors, and GraphicsTutorial 3New Perspectives on HTML and XHTML, Comprehensive1XPObjectives Learn how HTML handles color Create foreground and background colors Work with font st
Western Washington - CS - 517
Real-Time Speech-Driven Face Animation With Expressions Using Neural NetworkIEEE Transactions on Neural Networks, VOL. 13, NO. 4, July 2002Authors: Pengyu Hong, Zhen Wen, and Thomas S. HuangPresented by: Johnny Chin-Lin Tien Chin-OutlineIntro
Western Washington - CS - 172
NQC Tutorial IDr. Jianna J. Zhang copyright 2009Department of Computer Science, Western Washington UniversityProgramming EnvironmentRobolab.lnk R b l bl kBricxcc.lnkhttp:/mindstorms.lego.com/ http:/sourceforge.net/projects/bricxcc/ http:/
Western Washington - CS - 172
Academic Honesty DeclarationI declare that the attached assignment is wholly my own work, and that no part of it has been: 1. 2. 3. 4. copied from any work produced by other person(s) provided by other student(s) taken from other person(s) program
Western Washington - CS - 172
Academic Honesty DeclarationI declare that the attached assignment is wholly my own work, and that no part of it has been: 1. 2. 3. 4. copied from any work produced by other person(s) provided by other student(s) taken from other person(s) program
Western Washington - CS - 172
Academic Honesty DeclarationI declare that the attached assignment is wholly my own work, and that no part of it has been: 1. 2. 3. 4. copied from any work produced by other person(s) provided by other student(s) taken from other person(s) program
Western Washington - CS - 517
/ File: Ann_xor.java/ Compiler: Java JDK 1.4/ Author: Chin-Lin Johnny Tien / Course: CS517D Machine Learning Algorithms/ Assignment: #2/ Date: Oct 16th, 2002/ Instructor: Jianna Zhang/ Purpose: to implement a XOR function by the perceptron tr
Western Washington - CS - 402
123. 451. 12. 23. 432. 90887. 10284. 1. 20. 3999. 5. 15. 8.34345. 146767. 2344. 3567. 290. 111. 0. 22. 244. 7743. 5655.
Western Washington - BIOL - 322
RNAi, Penetrance and ExpressivityGenetics 322, Fall 2008INTRODUCTION In 1990, a strange thing happened when Rich Jorgensen and his colleagues tried to produce petunias with dark purple flowers by introducing a purple pigment gene into the flower. T
Western Washington - BIOL - 321
Bio321 S06 Young Exam #2. (150 pts)Name:_1. (18 pts) The following is the classical map of chromosome 1 in Arabidopsis thaliana. Consider HY4 at 10 cM and CP1 at 28 cM.a. (2 pts) what is the percent of observed recombination between these two g
Western Washington - BIOL - 322
Human Mitochondrial DNAIn addition to the 46 chromosomes found in the nucleus of human cells, each mitochondrion in the cell cytoplasm has several copies of its own genome. The mitochondrial (mt) genome contains only 37 genes, which are involved in
Western Washington - BIOL - 322
HFR ClassDatal /rulmr+ce#l +3 f.s/ftt | + s | &quot;ol a I ali'-4*el,voo(lI al,t_.z.zg.o5ut4./mL Il:s/nir'Is6| l:Ilzr&quot;+: I r,t' I p rr-*-]=-rII r,.I oI e,I oI c,l-r.serrc*I fla&quot;qex lc.f,IIIIHfr ClassDatainit
Western Washington - BIOL - 322
Introduction to Bioinformatics NCBI (Entrez)Goal: The efficient use of online databases for genetic data retrieval. Bioinformatics: is the study of biological problems through the coordination of techniques from mathematics, statistics, computer sci
Western Washington - BIOL - 322
Hfr ClassDatainitials t$\) met* cys' Ltq+metcys-met',acys-jr\OnnCVqa9cEt+_!1 ,16q5 t{t,4-tr+1ec)7?t&amp;pJ .d LL L.ametcys-JPaoIadrecom.cell/ml mating mix a.e.l &quot;163 CFu/rnLl.ll4.8 r 1ga artl*Q-, Zf
Western Washington - BIOL - 322
RNAiC. elegans and siRNA Penetrance and ExpressivityCentral Dogma addendumDNAtranscriptionRNAAlt. Splicing Alt. Poly-A, Alt. Translation StartTranscription FactorstranslationProteinCentral Dogma addendaDNATGS transcription TGS: Tran
Western Washington - BIOL - 322
This Week Score Conjugation Plates, Start High Frequency of Recombination (HFR) experiment, Continue Nasonia experiment.High Frequency of Recombination(Hfr).bacteria exhibiting a high frequency of recombination, an alteration DNA sequence su
Western Washington - BIOL - 322
MendelsContribution(s)?MendelsFirstPostulate UnitFactorsinPairs Geneticcharacteristicsarecontrolledbyunitfactorsthat existinpairsinindividualorganisms, eachindividualreceivesoneunitfactorfromeach parent, inamonohybridcross,threecombinationsofuni
Western Washington - BIOL - 206
Mineral Nutrition in Plants IWhen one tugs at a single thing in nature, (s)he finds it attached to the rest of the world.John MuirOplopanax horridusDevils Club Ethnobotany, Medicinal uses, Sacred uses, herbalgram.org Modern uses, Empirica
Western Washington - BIOL - 322
Arabidopsis ExperimentsForward Genetic Screen (Ethylene Insensitive Mutants) Reverse Genetic Screen / PCR Genotyping (H+ ATPase Mutants)Arabidopsis Arabidopsis thaliana is the predominant model organism used by plant biologists today. Considered
Western Washington - BIOL - 206
Plant Responses to Signals IVPhotomorphogenesis Circadian Rhythms Gravitropismhttp:/sunflower.bio.indiana.edu/~rhangart/plantsinmotion.htmlGerminationAction Spectra Action Spectrum,Stem elongation graph of the magnitude of a biological res
Western Washington - BIOL - 321
Genetically Modified PlantsBiotechnology: underlying science Potential Risks vs.(Potential) BenefitsAssigned Reading: Chapter 10.5Genetically Modified OrganismsTypes of GMOs?- artificial selection and traditional breeding, - transgenic organis
Western Washington - BIOL - 322
Introduction to Genetic Screens in Arabidopsis thalianaGoal: To gain experience in the use of mutant screens to identify developmental and conditional mutants. Genetic screens: A genetic screen is a procedure or test used to identify and select indi
Western Washington - BIOL - 322
SEED STERILIZATION70% ETOH/0.1% Triton X 95% ETOH Whatmans filter paper, 6 cm diameter circles * Sterile plastic petri dishes (label bottom of the dish), round 1. Place seeds * in an eppendorf microtube (does not need to be sterile). Add 1ml 70% ETO
Western Washington - BIOL - 322
Biology 322, Fall 2008Part II: Transfer of genetic information in the bacterium Escherichia coli:Assignments: Review bacterial genetics in your textbook. Consider the questions on pg 3. of this handout. You will need to consult online resources to
Western Washington - BIOL - 322
Bioinformatics IIC. elegans Data MiningYou were given the following C. elegans strains. It is your assignment to match phenotype with genotype. In order to do this, you will first need to look up information that will help you to characterize each
Western Washington - BIOL - 322
Introduction to Genetic Screens in Arabidopsis thalianaGoal: To gain experience in the use of mutant screens to identify developmental and conditional mutants. Genetic screens: A genetic screen is a procedure or test used to identify and select indi
Western Washington - BIOL - 322
Introduction to Bioinformatics NCBI (Entrez)Goal: The efficient use of online databases for genetic data retrieval. Bioinformatics: is the study of biological problems through the coordination of techniques from mathematics, statistics, computer sci
Western Washington - BIOL - 322
BIOLOGY 322GENETICS LAB SYLLABUSSPRING 2008Dr. Jeff Young young@biol.wwu.edu Office Hours: BI 412 MWR 10 - 11 am or by appointment Lecture: T 11 11:50 pm in ES410 Lab: WF 1:30 - 4:30 pm in BI454 Course Content: In this course, we will examine
Western Washington - BIOL - 322
Mutagenesis LabBiology 322Spring 2008The Power of Bacterial Genetics lies in the ability to study rare events: An investigation of mutagenesis using the bacterium Escherichia coli.Reading Assignment: Review chapters on mutation and the lac ope
Western Washington - BIOL - 322
BIOLOGY 322GENETICS LAB SYLLABUSSPRING 2008Dr. Jeff Young young@biol.wwu.edu Office Hours: BI 412 MWT 10 - 11 am or by appointment Lecture: T 11 11:50 pm in ES410 Lab: WF 1:30 - 4:30 pm in BI454 Course Content: In this course, we will examine
Western Washington - BIOL - 205
Cellular MembranesLecture Series 4Reading Assignments Read Chapter 11 Membrane Structure Review Chapter 21 pages 709-717 (Animal Cell Adhesion) 709(Animal Review Chapter 12 Membrane Transport Review Chapter 15 regarding Endocytosis and Exocyt
Western Washington - BIOL - 206
Plant Responses to Signals IVPhotomorphogenesis Circadian Rhythms Gravitropismhttp:/sunflower.bio.indiana.edu/~rhangart/plantsinmotion.htmlGerminationAction Spectra Action Spectrum,Stem elongation graph of the magnitude of a biological res
Western Washington - BIOL - 322
Week 7, 322Monday: remove female Nasonia Tuesday: no class Wednesday: mt DNA Friday: Bacteria, ConjugationMonday, Nasonia Gently tap the fly pupae onto a folded piece of paper, Tap adult wasps into the Morgue, Replace the fly pupae in the same
Western Washington - PSY - 515
!&quot; #$&quot;!#&quot;&quot; %$!&amp; ) *+ , &quot;-+ &amp; &amp; ' &amp; ( +, ./&quot; 0 $.12+-3+ 444 .1 44 445 $ ( 5 $ 5 $ ! 5 ) !&quot;$&quot; 6 7#% 5)9 95 * &amp;: : ; !&amp;%'+!! ; !(&amp; !(&amp;'(65 6! ! &amp;!!! ! !8##+ ( &lt;9:&amp;$= 5!!! &gt;&amp;! &gt;&amp;
Western Washington - ENVR - 442
Using Color-Infrared Imagery for Impervious Surface Analysis.Chris Behee City of Bellingham Planning &amp; Community Development NW GIS Users Group - March 18, 2005Outline What is Color Infrared Imagery? Vegetation Indices (NDVI) Building an Imper
Western Washington - ESCI - 101
ESCI 101 Study guide for the first mid-term examUpdated: January 22, 2009Know the following terms: Environment, ecology, biome, goods, marginal value, opportunity cost, demand, supply, luxury goods, inferior goods, welfare economics, sustainable
Western Washington - PSY - 515
HLMPSY515 JimGraham Fall2007FixedEffects Sofar,mostofwehavedealtwithuseswhat arecalledfixedeffects. Afixedvariableisassumedtobemeasured withouterror. Regressionconsidersyashavingerror,butnot thepredictors:=a+b(x) y=a+b(x)+error y=+errorX1
Western Washington - CS - 430
CS 430 Database TheoryWinter 2005 Lecture 14: Additional SQL Topics1Additional Topics Views Programmatic Interface2Views Views are Virtual tables They can be referenced in SELECT statements just like another table They can be refer
Western Washington - CS - 496
CS 496 Senior Project, Winter 2007SyllabusInstructor: Christopher (Chris) Reedy Office CF463 Email mailto:Chris.Reedy@wwu.edu?subject=CS496 Phone 650-4838 To be arranged by teamOffice Hours:DescriptionExecute a software development project, in
Western Washington - CS - 496
CS 496 Senior Project, Fall 2006SyllabusInstructor: Christopher (Chris) Reedy Office CF463 Email mailto:Chris.Reedy@wwu.edu?subject=CS496 Phone 650-4838 To be arranged by teamOffice Hours:DescriptionExecute a software development project, incl
Western Washington - CS - 496
CS 496 Senior Project, Winter 2008SyllabusInstructor: Christopher (Chris) Reedy Office: CF463 Email: mailto:Chris.Reedy@wwu.edu?subject=CS496 Phone: 650-4838 http:/faculty.cs.wwu.edu/reedyc/CS496_Winter_2008/index.html To be arranged by teamWeb S
Western Washington - CS - 496
Presentation and Poster Guidelines (Fall 2008) The demonstrations will be held in December during Finals Week. The department will provide pizza and drinks (non-alcoholic, of course). 1. Your team will have about 30 minutes. In order to avoid impacti
Western Washington - CS - 496
CS 496 Senior Project, Fall 2008SyllabusInstructor: Christopher (Chris) Reedy, Office CF463, Phone 650-4838 Email mailto:Chris.Reedy@wwu.edu?subject=CS496 Course Coordinator: Phil Nelson, Office CF471, Phone 650-3035 Office Hours: To be arranged by
Western Washington - CS - 496
CS 496 Senior Project, Spring 2008SyllabusInstructor: Christopher (Chris) Reedy Office CF463, Phone 650-4838 Email mailto:Chris.Reedy@wwu.edu?subject=CS496 Course Coordinator: David Bover Office Hours: To be arranged by teamCourse OutcomesOn com
Western Washington - CS - 225
Possible Points Presentation Style: Personal appearance (posture, expression); speaking (articulation, projection); energy, interest, audience contact15 Presenter appears professional and lively, articulates and projects well, is interested in th
Western Washington - CS - 225
CS 225 IntroductionChris ReedySyllabus on web site Web Site:http:/faculty.cs.wwu.edu/reedyc/CS225_Summer_2006 Speaking schedule: To Be DeterminedWhy take this class? Other than it is a requirement for your CS degree? Why does ABET want you
Western Washington - CS - 410
1.- languages employ a computational model based on the recursive definition of functions. They take their inspiration from the lambda calculus, a formal computational model developed by Alonzo Church in the 1930s. (a) von Neumann (b) Object-oriented
Western Washington - PVM - 3
PVM: Parallel Virtual MachineScienti c and Engineering ComputationJanusz Kowalik, EditorData-Parallel Programming on MIMD Computersby Philip J. Hatcher and Michael J. Quinn, 1991Unstructured Scienti c Computation on Scalable Multiprocessors
Western Washington - CS - 460
CS460, Introduction to Operating Systems Winter 2005 Final ExamInstructions: Answer all questions on the answer sheet provided by filling in the bubble corresponding to the correct answer. Each correct answer is worth one point. There is only one co
Western Washington - CS - 367
CS367 Winter 2005 Midterm Exam 1. HTTP header information is transmitted as (a) binary data (b) ASCII text (c) hexified ASCII (d) hexified 7-bit binary (e) EBCDIC 2. The original technique employed to provide a mechanism for a web document to cause t
Western Washington - CS - 467
CS467 Spring 2005 Final Exam 1. The ONC RPC mechanism specifies that at most one remote procedure in a remote program can be invoked at a given time. (a) True (b) False 2. IN ONC RPC the procedures inside a remote program (server) all share access to
Western Washington - CS - 513
Western Washington - CS - 460
CS460 Introduction to Operating Systems Spring 2005 Midterm ExamInstructions: Answer all questions on the blue scan document provided by filling in the bubble corresponding to the correct answer. Remember to use only a number 2 pencil or it will not
Western Washington - CS - 512
1. _ languages are sometimes described as computing via side effects. (a) imperative (b) Object-oriented (c) dataflow (d) functional (e) logic or constraint-based 2. _languages employ a computational model based on the recursive definition of functio
Western Washington - CS - 460
CS460, Introduction to Operating Systems Winter 2005 Midterm ExamInstructions: Answer all questions on the blue scan document provided by filling in the bubble corresponding to the correct answer. There is only one correct answer per question. Each
Western Washington - CS - 512
CS 512 Programming Languages Fall 2005 Midterm Exam Instructions: Answer all questions on the scan document provided. There is no penalty for guessing (well technically I guess there is a penalty for guessing incorrectly). You must fill in all name a
Western Washington - CS - 410
Western Washington - CS - 410
1.- languages employ a computational model based on the recursive definition of functions. They take their inspiration from the lambda calculus, a formal computational model developed by Alonzo Church in the 1930s. (a) von Neumann (b) Object-oriented
Western Washington - MODULA - 2
Modula-2 report by Loren Loiseau For CSCI 512, Fall 2005 History Niklaus Wirth designed the Modula language in the mid-1970s as an experiment with concurrency and modularization. Modula was never released and development discontinued after Wirth publ
Western Washington - MODULA - 2
MODULE myhello;IMPORT InOut;PROCEDURE Greeting; VAR name : ARRAY [1 . 80] OF CHAR; PROCEDURE SecretNumber() : INTEGER; BEGIN RETURN 42; END SecretNumber; PROCEDURE GetName; BEGIN InOut.WriteString(&quot;Who are you?&quot;); InOut.Re