29 Pages

Example Final - 2005 A

Course: ECSE 361, Winter 2010
School: McGill
Rating:
 
 
 
 
 

Word Count: 4243

Document Preview

University Faculty McGill of Engineering FINAL EXAMINATION FALL 2006 (DECEMBER 2005) VERSION A COMPUTER ENGINEERING ECSE-322A 6 December 2005, 0900 - 1200 Examiner: Professor D.A.Lowther Co-Examiner: Professor T.Arbel Signature: Signature: STUDENT NAME AND SIGNATURE MCGILL I.D. NUMBER INSTRUCTIONS: This is a CLOSED BOOK examination. Only one (1) hand-written (not photo-copied) double sided CRIB SHEET on...

Register Now

Unformatted Document Excerpt

Coursehero >> Canada >> McGill >> ECSE 361

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.
University Faculty McGill of Engineering FINAL EXAMINATION FALL 2006 (DECEMBER 2005) VERSION A COMPUTER ENGINEERING ECSE-322A 6 December 2005, 0900 - 1200 Examiner: Professor D.A.Lowther Co-Examiner: Professor T.Arbel Signature: Signature: STUDENT NAME AND SIGNATURE MCGILL I.D. NUMBER INSTRUCTIONS: This is a CLOSED BOOK examination. Only one (1) hand-written (not photo-copied) double sided CRIB SHEET on letter size (8.5 by 11 inch) paper permitted. This is a MULTIPLE CHOICE examination. It will be subject to the Harp Hogan Program. This is a program that will be run by the Computing Centre to check for the possibility of cheating. MARK YOUR ANSWERS TO THE MULTIPLE CHOICE QUESTIONS ON THE ENCLOSED COMPUTER SHEET USING PENCIL ONLY. Each question is worth 1 mark, a wrong answer will receive 0. Space is provided on the exam in which to answer the short answer questions (46 to 49). DO NOT USE ANY OTHER EXAM BOOKS FOR ANSWERS TO BE MARKED. You are permitted REGULAR AND TRANSLATION dictionaries. FACULTY STANDARD CALCULATOR permitted ONLY. Student answers in the multiple choice section will be subject to analysis by the McGill Exam Security Computer Monitoring Program in order to identify unusually similar answer patterns. This examination consists of two parts; part 1 consists of 45 multiple choice questions, part 2 consists of a set of 4 short answer questions OF WHICH YOU SHOULD ATTEMPT ONLY 3. The examination consists of a total of __ pages including this cover page. Please ensure that you have a complete examination paper BEFORE starting. Please sign this paper at the top of this page, write your name legibly, and read the instructions above. Initial each page of the exam paper in case the sheets should get separated. THIS EXAMINATION PAPER MUST BE RETURNED. LIST QUESTIONS ATTEMPTED IN PART 2 HERE: Exam 2006A- 1 ECSE-322A Final Examination Version A Initials ________ TEST QUESTIONS PART 1 - This part consists of 45 multiple choice questions. Indicate the correct answer to each question on the computer readable sheets provided. 1. In a particular sorting process the first iteration places 1 data item in the correct position; the second places a further 2; by the fourth pass 15 items are correctly placed. The time complexity of this process is (a) O (constant) (b) O (log2N) (c) O(N) (d) O (Nlog2 N) (e) O(N2) 2. In a tree data structure a leaf of the tree is identified by (a) it is the only node containing data (b) it does not have two children (c) all the children are nulls (d) some of the children are nulls (e) none of the above 3. An inorder traversal of a binary tree structure visits the nodes in the sequence (a) root, left, right (b) root, right, left (c) right root, left (d) left, root, right (e) left. right, root 4. In a hashed data structure of size M and a data set of size N (N<m) the maximum number of collisions that could occur is (a) O(M) (b) O(M2) (c) O(MN) (d) O(N) (e) O(N2). Exam 2006A- 2 ECSE-322A Final Examination Version A Initials ________ 5. Vectoring is often used in multi-dimensional arrays because (a) It provides a way to save memory (b) It reduces the time needed to access an array element (c) It removes the need to perform an address calculation (d) It simplifies the calculation of a vector-vector product (e) It is never used. 6. A queue is often referred to as a (a) Last in first out structure (b) First in last out structure (c) First in first out structure (d) Last in mort important out structure (e) Single in multiple out structure. 7. The effect of limiting the number of bits used to represent the exponent of a floating point number is to (a) limit the resolution with which numbers can be represented (b) limit the dynamic range over which numbers can be represented (c) remove the ability to represent negative exponents (d) remove the ability to represent negative number (e) allow the use of hidden bit normalization. 8. The effect of limiting the number of bits used to represent the mantissa of a floating point number is to (a) limit the resolution with which numbers can be represented (b) limit the dynamic range over which numbers can be represented (c) remove the ability to represent negative exponents (d) remove the ability to represent negative number (e) allow the use of hidden bit normalization. 9. Which of the following does NOT need to be represented by a dynamic data structure? (a) a library (b) a book (c) a bus line up (d) a pile of dishes (e) a list of the students in ECE at McGill. Exam 2006A- 3 ECSE-322A Final Examination Version A Initials ________ 10. The Read Only Memory in the printer discussed in class is used to (a) (b) (c) (d) (e) Store characters to be printed as they are received Convert characters to ASCII codes Convert ASCII Codes to control signals for the printer Remove the need for hardwired logic in the printer Handle the serial line communications protocol. 11. The Address Decoder on an interface is used to (a) (b) (c) (d) (e) convert the address on the bus to a location in memory store the address in memory for a DMA transfer provide a clock signal for incrementing the byte count in a DMA transfer provide a load signal for the Device Data Register provide control information to the device. 12. An Interrupt Service Routine is BEST described as (a) (b) (c) (d) An additional control line on the bus to allow an interface to signal to the CPU A piece of software stored at a specific location in the memory of a processor A subroutine accessed at the end of a fetch and execute cycle in the CPU A subroutine which controls the movement of data to and from an interface and is initiated by a signal on the bus. (e) A routine in the operating system designed to move data to and from an interface. 13. The XON/XOFF protocol was developed to (a) (b) (c) (d) (e) Provide synchronization between two ends of a serial line communication system Prevent buffer overflow happening in a peripheral device Maximize the speed at which a graphics device can operate Reduce the overhead in serial line data transmission Minimize the number of connections needed for an RS-232 communication system. 14. The serial line character display discussed in class is faster than a bit mapped raster display because (a) It only displays characters (b) It does not need to use a raster display system Exam 2006A- 4 ECSE-322A Final Examination Version A Initials ________ (c) It uses hardwired digital logic (d) It is not directly connected to the computer bus (e) It uses a dedicated CPU. 15. Which of the following devices provides an absolute position? (a) (b) (c) (d) (e) Glide pad Track ball Joystick Pen They all do 16. The main reason for implementing DMA in a computer system is (a) (b) (c) (d) (e) To free off the CPU to do other work To simplify the writing of interrupt service routines To remove the need for a buffer on the device interface To reduce the number of logic circuits needed in the interface. To speed up the transfer of data between an interface and the main memory. 17. Which of the following signals is NOT embedded in a Composite Video Signal? (a) (b) (c) (d) (e) Clock Horizontal synchronization Vertical synchonization Vertical blanking period Image (video) data. 18. In Cycle Stealing DMA (a) (b) (c) (d) (e) The device takes the bus only when it has data to transfer The device takes and holds the bus during the entire DMA process The CPU only grants the bus to the device when it does not need it The BUS GRANT line is never set The CPU has to enable BUS REQUEST before each DMA transfer. 19. Which of the following is NOT a characteristic of a magnetic tape? (a) It is removable (b) It is non-volatile Exam 2006A- 5 ECSE-322A Final Examination Version A Initials ________ (c) It provides direct access to data (d) The cost/byte is extremely low (e) It can provide a large amount of secondary storage. 20. A floppy disk rotates slower than a hard disk because (a) It is likely to stretch due to the centrifugal forces at high speed and thus the data would not be readable (b) If it is rotated faster, the data rate would be too high for the interface (c) DMA cannot be implemented for its interface (d) The friction between the head and the disk would destroy both (e) Too much power would be needed to rotate it faster. 21. Which of the following pieces of information is NOT needed for find data on a floppy disk? (a) (b) (c) (d) (e) Platter Surface Track Sector All are needed. 22. The maximum throughput of a bus is (a) (b) (c) (d) (e) dependent on the number of interfaces connected to it dependent on the address space of the computer decreases as more devices are added to it related to the bus protocol implemented related to the data transfer rate of the fastest device on the bus. 23. In a semi-synchronous protocol (a) (b) (c) (d) (e) there is no clock signal devices can respond on any clock edge a device may take several clock cycles to respond a device must respond within one clock cycle a devices responds to changes in control signals 24. Which of the following control signals is NOT needed to implement an asynchronous protocol? Exam 2006A- 6 ECSE-322A Final Examination Version A Initials ________ (a) (b) (c) (d) (e) clock address strobe data strobe read write 25. A Non-interlocked protocol is one in which (a) (b) (c) (d) Signals can be read on any edge of the clock signal Devices on the bus check all changes in state of the control lines Devices only check and respond to activation of control lines Devices do not wait for a strobe (synchronization) signal before reading the data or address lines (e) Devices do not have to wait for the Bus Grant signal before placing data on the bus. 26. The MAIN role of an Arbiter in allocating the bus is to (a) (b) (c) (d) (e) Allow only one device to access the bus at a time Allow only one device to control the bus at a time Ensure that the highest priority device always gets the bus Provide a prioritized but fair access to the bus Ensure that a device in control of the bus cannot be interrupted. 27. Which of the following control signals is NOT used in the bus arbitration process? (a) (b) (c) (d) (e) Bus Request Bus Grant Bus Busy Bus Release Bus Acknowledge 28. In the event that the bus is being used and a higher priority device has requested it, which one of the following signals would be activated? (a) (b) (c) (d) (e) Bus Request Bus Grant Bus Busy Bus Release Bus Acknowledge Exam 2006A- 7 ECSE-322A Final Examination Version A Initials ________ 29. In an Asynchronous Protocol performing a read operation, when would the Slave Synchronization signal be set? (a) (b) (c) (d) (e) As soon as the data is stable As soon as the address is stable As soon as the master synchronization signal is set As soon as the read signal is set It would not be set since it is not needed in this operation. 30. Which of the following best describes a process? (a) (b) (c) (d) (e) A user program A routine in the operating system A device driver A piece of software that performs an action and can be controlled A piece of software that accesses a resource. 31. In the context of an operating system, which of the following is the best description of concurrency? (a) (b) (c) (d) (e) Allowing several hardware devices to operate simultaneously Allowing several processes to be active simultaneously Allowing several processors to access memory simultaneously Allowing one device to request a resource while another is using it Allowing several users to access the processor simultaneously. 32. When a process has requested a resource and the resource is not available, the process is said to be (a) (b) (c) (d) (e) running ready sleeping blocked completed 33. A privileged instruction is one which (a) Accesses an non-shareable resource (b) Can only be executed in kernel mode Exam 2006A- 8 ECSE-322A Final Examination Version A Initials ________ (c) Can only be executed by processes having a high enough priority (d) Can be executed when the system is deadlocked (e) Is used during process swapping. 34. A semaphore is (a) (b) (c) (d) (e) A signal used by a resource to indicate that it is busy A software interrupt used to request service A non-negative integer used for control A variable whose value is incremented by a wait operation A small piece if software used to synchronize processes. 35. Which of the following is NOT a condition for deadlock? (a) (b) (c) (d) (e) All the resources are non-shareable All processes need one more resource All processes hold onto resources while waiting for new ones Resources cannot be relinquished when they are being used Each process holds resources currently being requested by the next process in the chain. 36. The volatile environment of a process is (a) (b) (c) (d) The main memory used by the process when executing The devices, other than disks and tapes, that it uses when executing The set of instructions being executed by a process A subset of modifiable shared resources used by the process, e.g. registers and program counter (e) The set of non-shareable resources used by the process and protected by the operating system. 37. The directory on a device is (a) (b) (c) (d) (e) The area where files are stored on the device The area containing the addresses of files on the device The area on the device containing information about the device formatting The area on the device used for decoding file addresses The area on the device containing boot information for the operating system. Exam 2006A- 9 ECSE-322A Final Examination Version A Initials ________ 38. The head to disk spacing in a CD-ROM is of the range of (a) (b) (c) (d) (e) 1 to 9 micro-inches 10 to 99 micro-inches 100 to 999 micro-inches 1000 to 9999 micro-inches 10,000 to 99,999 micro-inches 39. The physical law that states that a current flowing in a conductor will create a magnetic field is known as (a) (b) (c) (d) (e) Amperes Law Faradays Law Ohms Law The Kerr Effect Moores Law 40. Burst feeding is a system by which (a) Graphics data is loaded into a frame buffer in the vertical blanking period (b) Many bytes of data are transmitted to the buffer on a device through a single interrupt (c) A device interface moves data directly to or from memory (d) The need for a buffer on a device is removed (e) Several bytes of data can be sent to several devices simultaneously. 41. The most common (and important) disadvantage of a linked list structure for storing files on disk is (a) (b) (c) (d) (e) That a file can be spread out over the entire disk leading to long access times That a large number of unusable spaces are created on the disk as files are edited That the directory MUST be stored in random access memory That a file can be completely lost if a single link is destroyed That files must be interleaved on the disk. 42. Tri-state buffers are used to place address and data signals on the bus because (a) (b) (c) (d) They a have smaller logic delay than normal buffers They allow all devices to read data from the bus simultaneously They allow write access to the bus to be controlled by the bus arbiter They simplify the design of cycle stealing direct memory access Exam 2006A- 10 ECSE-322A Final Examination Version A Initials ________ (e) They can be used to auto-increment the address and word count. 43. When a computer is first turned on, it executes a bootstrap to begin loading the operating system. The first part of the bootstrap is found (a) (b) (c) (d) (e) In the random access memory In the first sector of the first track of a floppy disk In the first sector of the first track of a hard disk In a read only memory It is built into the processor. 44. Sector Interleaving is a technique by which (a) (b) (c) (d) (e) The number of heads needed on a disk drive is minimized More information can be stored on a given disk The fracturing of a disk is minimized The interface/disk drive interaction is optimized DMA transfers are simplified. 45. The address space of a computer is determined by (a) (b) (c) (d) (e) The amount of RAM installed The word width of the processor The number of address lines The number of data lines on the bus The operating system PART 2 of this exam starts on the next page. Please turn over the page and begin Part 2 NOW! Exam 2006A- 11 ECSE-322A Final Examination Version A Initials ________ PART 2 - This part consists of 4 short answer questions. YOU SHOULD ANSWER ONLY 3 (THREE) OF THE QUESTIONS - IF YOU ANSWER 4, ONLY 3 WILL BE MARKED. Each question is worth 12 marks (Each question consists of 4 sections). Write your answers to the question in the space provided on this exam paper. Do not use extra paper - any answers written outside of the allowed space will not be marked. 46. (a) Give brief descriptions of the following terms (each is worth 1 mark): (i) Polled interrupt system: _____________________________________________________________________ _____________________________________________________________________ _____________________________________________________________________ (ii) Device Data Register: _____________________________________________________________________ _____________________________________________________________________ _____________________________________________________________________ (iii) Cursor: _____________________________________________________________________ _____________________________________________________________________ _____________________________________________________________________ (b) A computer is to be connected to a printer via a serial line consisting of three wires one of which is a common signal ground. Exam 2006A- 12 ECSE-322A (i) (ii) Final Examination Version A Initials ________ Describe (either by words or a diagram) how reliable transmission of ASCII characters over this link could be achieved assuming that both ends of the system have the same clock speed. (2 marks) If the printer is equipped with a memory buffer, describe a process which might be used to avoid buffer overflow. Give this process as a set of steps. (1 mark) (c) A printer buffer is designed for a printer which can print c characters per second. A page of text consists, on average, of d characters and the connection between the interface and the printer can run at a maximum speed of t bytes per second. Characters are transmitted on a serial link using ASCII coding and come in bursts, i.e. a page is transmitted at the maximum rate of the link and then the transmission will pause until the next page is ready.. (i) What is the maximum number of pages per hour that the printer can expect to receive from the computer? (1 mark) Exam 2006A- 13 ECSE-322A Final Examination Version A Initials ________ (ii) What is the minimum buffer size that will be needed (if t is greater than c) and what is the limit on the number of pages to be printed per hour , p, if this buffer is not to overflow? (1 mark) (iii) Sketch a graph showing the buffer size as a function of the number of pages per hour assuming that the only limit to the number of pages to be printed per hour is set by the transmission speed. Assume that the printer will work for a maximum period of one hour. (1 mark) (d) The following sequence of operations describes an interrupt process. Draw the timing diagram for the process and design the logic circuit that will implement it. Device has data ready to send Interrupts are enabled An interrupt is generated An interrupt acknowledge signal is sent back The Interrupt Service Routine address is placed on the bus Exam 2006A- 14 ECSE-322A Final Examination Version A Initials ________ (ii) Timing Diagram: (1.5 marks) (iii) Circuit: (1.5 marks) Exam 2006A- 15 ECSE-322A Final Examination Version A Initials ________ 47. (a) Explain the following terms (maximum one sentence for each) (1 mark each) (i) Logic Delay: ________________________________________________________________________ ________________________________________________________________________ ________________________________________________________________________ (ii) Capacitative Delay: ________________________________________________________________________ ________________________________________________________________________ ________________________________________________________________________ (iii) Transitive Delay: ________________________________________________________________________ ________________________________________________________________________ ________________________________________________________________________ Exam 2006A- 16 ECSE-322A Final Examination Version A Initials ________ (b) (i) Draw the timing diagram for a write operation in the semi-synchronous bus protocol. (2 marks) (ii) Give one advantage of a semi-synchronous protocol when compared to a synchronous protocol (0.5 marks) ________________________________________________________________________ ________________________________________________________________________ ________________________________________________________________________ (iii) Give one disadvantage of the semi-synchronous protocol when compared to an asynchronous protocol (0.5 marks) ________________________________________________________________________ ________________________________________________________________________ ________________________________________________________________________ Exam 2006A- 17 ECSE-322A Final Examination Version A Initials ________ (c) An interlocked asynchronous bus using only Master and Slave Synchronization signals has a set up time for both the address and data by the Master of t nanoseconds, the master (or slave) takes two gate delays (g nanoseconds per delay) to respond to a signal; the propagation speed of signals along the bus is v meters/nanosecond and the bus is L meters long. If the data path is 4 bytes wide, derive an expression for the maximum data transfer rate, R, (in bytes per second) that can be achieved for a WRITE operation. (3 marks) Exam 2006A- 18 ECSE-322A Final Examination Version A Initials ________ (d) The diagram below relates to a sequence of operations on an arbitration bus. Signal 1 Signal 2 Signal 3 Signal 4 Signal 5 Signal 6 (i) Describe the operations that are taking place (1 mark) _____________________________________________________________________ _____________________________________________________________________ (ii) Name the signals in the diagram (2 marks) Signal 1: ____________________________________________________________ Exam 2006A- 19 ECSE-322A Final Examination Version A Initials ________ Signal 2: ____________________________________________________________ Signal 3: ____________________________________________________________ Signal 4: ____________________________________________________________ Signal 5: ____________________________________________________________ Signal 6: ____________________________________________________________ Exam 2006A- 20 ECSE-322A Final Examination Version A Initials ________ 48. (a) Explain what is meant by each of the following terms. (1 mark each) (i) Sector: ________________________________________________________________________ ________________________________________________________________________ ________________________________________________________________________ (ii) Cylinder: ________________________________________________________________________ ________________________________________________________________________ ________________________________________________________________________ (iii) Seek Time: ________________________________________________________________________ ________________________________________________________________________ ________________________________________________________________________ Exam 2006A- 21 ECSE-322A Final Examination Version A Initials ________ (b) (i) Explain why Sector Interleaving is often implemented on a hard disk. (1 mark) ______________________________________________________________________ ________________________________________________________________________ ________________________________________________________________________ ________________________________________________________________________ (ii) It is desired to find an optimum sector interleave factor for a particular disk/interface pair. Describe, using pseudo-code or a flow chart, an algorithm which would allow this to be determined (2 marks). Exam 2006A- 22 ECSE-322A Final Examination Version A Initials ________ (c) A hard disk drive is designed to have p platters and to have t tracks per inch. The outer radius of the disk is R inches. Data is fed to the disk at B bytes per second. The maximum areal recording density is D bits per square inch. (i) What should be the radius of the innermost track if the amount of data to be stored on the disk is to be maximized? (1 mark) (ii) If the inner radius is set to provide the maximum storage capability, what should the rotational speed of the disk be to be able to accept data at the rate the interface is sending it? (Assume the seek time is zero). (0.5 marks) (iii) What would happen to the total data stored on the disk and the disk performance if the rotational speed was increased above the speed from part (ii)? (0.5 marks) _____________________________________________________________________ _____________________________________________________________________ Exam 2006A- 23 ECSE-322A (iv) Final Examination Version A Initials ________ If the disk speed was reduced by 20% from that in part (ii) but all the other parameters stayed constant? What is the total amount of data that can be stored on the disk if one surface is used for timing?(1 mark) As the disk slows down but the data rate stays the same, the physical size of the bits on the disk (at the innermost recorded track) reduces. This cannot happen in the model considered in part (ii) since the inner track bits are already at the minimum size for this disk. Assuming all the parameters stay the same, the inner recording radius will have to increase: Exam 2006A- 24 ECSE-322A Final Examination Version A Initials ________ (d) Describe, either in the form of a flowchart or as a sequence of operations, the steps taken during a data transfer using a cycle stealing Direct Memory Access system. Start from the point at which it is determined that input is needed from a device and end when all the data has been transferred. In particular, indicate the changes in state of the control lines. The diagram should be in the from of two columns one for the CPU, the other for the interface and the communication between the two should be indicated.(3 marks) Exam 2006A- 25 ECSE-322A Final Examination Version A Initials ________ 49. (a) (i) Give four functions of the Nucleus (Kernel) of an Operating System. (0.5 marks each) (1) __________________________________________________________________ (2) __________________________________________________________________ (3) __________________________________________________________________ (4) __________________________________________________________________ (ii) Name the two parts an Operating System is often divided into. (0.5 marks each) (1) _________________________________________________________________ (2) _________________________________________________________________ (b) There are three main problems which can occur as a result of Concurrency. Name each of these and give a brief explanation of the problem (maximum 20 words) (1 mark each) Problem 1: ______________________________________________________________ _______________________________________________________________________ _______________________________________________________________________ Problem 2: ______________________________________________________________ _______________________________________________________________________ Exam 2006A- 26 ECSE-322A Final Examination Version A Initials ________ _______________________________________________________________________ Problem 3: ______________________________________________________________ _______________________________________________________________________ _______________________________________________________________________ Exam 2006A- 27 ECSE-322A Final Examination Version A Initials ________ (c) (i) The diagram below shows the state transitions of a process. Fill in all the blank states indicated in the figure. ( 2 marks) Blocked (ii) Explain how a process may become blocked and how it can move out of this state. A Process becomes blocked when____________________________________________ _______________________________________________________________________ ___________________________________________________________(0.5 marks) A Process can move out of a blocked state when________________________________ _______________________________________________________________________ ___________________________________________________________(0.5 marks) Exam 2006A- 28 ECSE-322A Final Examination Version A Initials ________ (d) (i) Three (3) processes share four (4) resources which can be reserved and released only one at a time. Each process needs a maximum of two (2) resources to be able to complete (it does not matter which ones). Explain why deadlock occurs and show that it cannot occur in this system. (2 marks) (ii) In any operating system one process always exists. Name the process and explain why it can never be in a blocked state. Process: __________________________________________________(0.5 marks) Explanation: _______________________________________________________ ________________________________________________________(0.5 marks) Exam 2006A- 29
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:

McGill - ECSE - 361
McGill UniversityFaculty of EngineeringFINAL EXAMINATIONFALL 2006 (DECEMBER 2005)VERSION ACOMPUTER ENGINEERINGECSE-322A6 December 2005, 0900 - 1200Examiner: Professor D.A.LowtherCo-Examiner: Professor T.ArbelSignature:Signature:STUDENT NAME AN
McGill - ECSE - 361
PSYC 215 September 2009Room: Leacock BuildingRm. No. l32Monday, Wednesday &amp; Fridayl3:30 - l4:30PSYC 215 (FALL)Introduction to Social PsychologyCourse OutlineInstructor:Dr. Donald M. TaylorRoom:W8/30A - Stewart Biological Sciences BuildingTelep
McGill - ECSE - 361
ECSE-303 Signals and Systems IWinter 2009Instructor:Prof. Martin RochetteTel.:(514) 398-3037Office:McConnell Engineering Building, Rm-638Office hours:Tue 10:30-11:30Email:Use martin.rochette@mcgill.ca and I will respond ASAPClass schedule:Mon
McGill - ECSE - 361
ECSE 451EM Transmission and Radiationwww.mcgill.ca/mycourses/Jon Webbjon.webb@mcgill.ca514-398-7126ECSE 451 Introduction: 1PrerequisiteECSE 352 EM Waves and Optics(C or better)LecturesTuTh8:35-9:55TR2110ECSE 451 Introduction: 2ECSE 451/Webb
McGill - ECSE - 361
ECSE-303 Signals and Systems IProvisional course scheduleWINTER 2010DateJanuary-04-10January-06-10Lecture #IntroductionLecture 1Oppenheim textbookJanuary-08-10Lecture 21.2-1.3January-11-10January-13-10January-15-10Lecture 3Lecture 4Lectu
McGill - ECSE - 361
14:00, Thursday, April 13, 2006Page 1 of 11McGill UniversityFaculty of EngineeringFINAL EXAMAPRIL 2006COURSE ECSE 451EM TRANSMISSION AND RADIATIONExaminer:J. P. WebbCo-Examiner: D. GiannacopoulosSignature:_Signature:_Date:Thursday, April 1
McGill - ECSE - 361
Final exam, 2006SolutionsFinal_2006_solutions: 1Final_2006_solutions: 2ECSE 451/Webb/Winter 20061Final_2006_solutions: 3Final_2006_solutions: 4ECSE 451/Webb/Winter 20062Final_2006_solutions: 5Final_2006_solutions: 6ECSE 451/Webb/Winter 20063
McGill - ECSE - 361
14:00, Thursday, April 24, 2008Page 1 of 6McGill UniversityFaculty of EngineeringFINAL EXAMCOURSE ECSE 451EM TRANSMISSION AND RADIATIONExaminer:J. P. WebbCo-Examiner: S. McFeeSignature:_Signature:_Date:Thursday, April 24, 2008Time:14:00T
McGill - ECSE - 361
Final exam, 2008SolutionsFinal_2008_solutions: 11.[5] A uniform guide consists of two perfect conductors separated by air. Thereare no other materials. What kind of mode is the dominant mode, at lowfrequencies?A TE or TMB TEMC hybrid, but quasi-T
McGill - ECSE - 361
09:00, Thursday, April 23, 2009Page 1 of 5McGill UniversityFaculty of EngineeringFINAL EXAMCOURSE ECSE 451EM TRANSMISSION AND RADIATIONExaminer:J. P. WebbCo-Examiner: S. McFeeSignature:_Signature:_Date:Thursday, April 23, 2009Time:09:00T
McGill - ECSE - 361
Final exam, 2009SolutionsFinal_2009_solutions: 11.There are two sections, connected together andshorted at the ends:Here:Final_2009_solutions: 2ECSE 451/Webb/April 091For a short-circuited transmission line, length l:For line 2:For line 1:So
McGill - ECSE - 361
1Introduction to Numerical Methodsin Electrical EngineeringText:Second Edition, McGraw-Hill, 2008.ECSE 443Note: A working knowledge of MATLAB will berequired to do the course assignments!January 2010General InformationLectures:MWF10:35 11:25T
McGill - ECSE - 361
B MDE: 519 ANALYSIS OF BIOMEDICAL SIGNALS AND SYSTEMS COURSE OUTLINE &amp; INFORMATION, SEPTEMBER 2009 ROBERT.KEARNEY@MCGILL.CA Objectives. 1Outline. 21) BasicTools&amp;Concepts. 22) AmplitudeStructureOfSignals. 23) FrequencyContentOfSignals.
McGill - ECSE - 361
Quantum Physics 357: Course Outline1. The book that Im going to use for most part of the course will be A Modern Approach to Quantum MechanicsJohn S. Townsend (University Science Books)It will be available at the McGill Bookstore, 3420 McTavish Street
McGill - ECSE - 361
PHYS 214Introductory AstrophysicsBasic InfoInstructor:Oces and Phone:Instructor URL:Instructor E-mail:Lecture Time:Lecture Place:Oce Hours:TAs:TA E-mail:Professor Andreas WarburtonRPHYS 343 or 108; 514-398-6519http:/www.physics.mcgill.ca/awa
McGill - ECSE - 361
Physics 182: Our Evolving Universe3 CreditsVersion Sept 7 2010Lectures: Fall 2010 M/W/F, 9:35-10:25,Rutherford Physics Building (ERP), room 114Instructor: Prof. Robert Rutledge. Oce: Rutherford Physics Building, Room 222 (ERP 222). Oce hours: Monday
McGill - ECSE - 361
Physics 180 Space, Time and MatterCourse OutlineFall 2010Calendar Description: A nonmathematical, conceptual look at physics, beginning with the ideaof space and time, continuing with the historical development of Newtonian mechanics ofcelestial moti
McGill - ECSE - 361
01/09/2010Physics 180 Space, Time &amp; MatterPhysics 180Space, Time &amp; MatterCalendar Description: A nonmathematical, conceptual lookat physics, beginning with the idea of space and time,continuing with the historical development of Newtonianmechanics
McGill - ECSE - 361
CourseCourse AdministrationECSEECSE-430A Photonic Devices and SystemsFall 2010L R Chen 8/30/20101ECSE-430ACourse AdministrationInstructorLawrence R. Chen811 McConnell EngineeringPhone: 398 1879Fax: 398 3127Email: lawrence.chen@mcgill.caOffic
McGill - ECSE - 361
1ECSE-430 Photonic Devices and SystemsFall 2010McGill UniversityDepartment of Electrical and Computer EngineeringGENERAL INFORMATIONCourse Credits:Contact Hours:33-2-4 (lectures, tutorials, outside class work)Lectures:MTR10:35 11:25ENGTR 2120
McGill - ECSE - 361
IGEE 402 Power System Analysis FINAL EXAMINATION - SAMPLE Fall 2004 Special instructions:Duration: 180 minutes. Material allowed: a crib sheet (double sided 8.5 x 11), calculator. Attempt 5 out of 7 questions. Make any reasonable assumption. All question
McGill - ECSE - 361
MCGILL UNIVERSITYFACULTY OF ENGINEERINGDEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERINGFINAL EXAMPOWER ENGINEERING, ECSE-361ADECEMBER 6, 2002: TIME 9:00ANSWER ALL SIX QUESTIONSOPEN BOOK AND NOTES EXAMMAXIMUM POINTS = 75Examiner: Prof. F.D. Galia
McGill - ECSE - 361
MCGILL UNIVERSITYFACULTY OF ENGINEERINGDEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERINGFINAL EXAMPOWER ENGINEERING, ECSE-361ADECEMBER 6, 2002: TIME 9:00ANSWER ALL SIX QUESTIONSOPEN BOOK AND NOTES EXAMMAXIMUM POINTS = 75Examiner: Prof. F.D. Galia
McGill - ECSE - 361
McGill UniversityFaculty of EngineeringFINAL EXAMINATIONTIME: 9:00DECEMBER 17, 1999Student NameMcGill I.D. NumberPower Engineering304-361AExaminer: Prof. F.D. GalianaCo-Examiner: Prof. B.T. OoiINSTRUCTIONS: OPEN BOOK AND NOTES EXAM ANSWER ALL
McGill - ECSE - 361
BME Modelling &amp; IdentificationInstructor: Prof. H.L. GalianaDepartment of Biomedical EngineeringFaculty of MedicineBiomedical Modelling and IdentificationCourse number: BMDE-502 (Winter term)Graduate LevelCredits: 3Jan 2005Course Principal Instru
McGill - ECSE - 361
IGEE 402 Power System Analysis FINAL EXAMINATION - SAMPLE Fall 2004 Special instructions:Duration: 180 minutes. Material allowed: a crib sheet (double sided 8.5 x 11), calculator. Attempt 5 out of 7 questions. Make any reasonable assumption. All question
McGill - ECSE - 361
ECSE 464BFACULTY OF ENGINEERINGPOWER SYSTEMS ANALYSIS ECSE 464BApril 19th, 2007; 9:00FINAL EXAMOPEN BOOK AND NOTESSTANDARD FACULTY CALCULATOR PERMITTEDLANGUAGE DICTIONARY PERMITTEDANSWER ALL 8 QUESTIONSALL 8 QUESTIONS HAVE EQUAL WEIGHTExaminer:
McGill - ECSE - 361
ECSE462HOMEWORKS3,4and5November22,2010PROF.F.D.GALIANASampleproblemsforfinalexam31 2 x2 .Letthecurrents22 x 1 2 x1)Considera2windingdevicewithinductancematrix L ( x ) = flowingthroughthewindingsbeequalto1and2respectively.Findthevoltagesinduced
McGill - ECSE - 361
ECSE462HOMEWORKS3,4and5November22,2010PROF.F.D.GALIANASampleproblemsforfinalexam31 2 x2 .Letthecurrents22 x 1 2 x1)Considera2windingdevicewithinductancematrix L ( x ) = flowingthroughthewindingsbeequalto1and2respectively.Findthevoltagesinduced
McGill - ECSE - 361
FINAL EXAMRSEAUX LECTRIQUES, POWER SYSTEMS ANALYSISPROF. F.D. GALIANATUESDAY, DECEMBER 8TH, 2009OPEN BOOK TEST; ANSWER ALL 8 QUESTIONS, EACH QUESTION BEING WORTH 15 % FOR AMAXIMUM OF 120% POINTS (FULL MARKS WILL GIVE YOU A BONUS OF 20%)(1) The volta
McGill - ECSE - 361
FINAL EXAM SOLUTIONSRSEAUX LECTRIQUES, POWER SYSTEMS ANALYSISPROF. F.D. GALIANATUESDAY, DECEMBER 8TH, 2009OPEN BOOK TEST; ANSWER ALL 8 QUESTIONS, EACH QUESTION BEING WORTH 15 % FOR AMAXIMUM OF 120% POINTS (FULL MARKS WILL GIVE YOU A BONUS OF 20%)(1)
McGill - ECSE - 361
PSYC 305: Statistics for Experimental DesignWinter 2011ClassesLecture (STBIO S1/4): M &amp; W 4:35 PM - 5:25 PMComputer Lab (STBIO N4/17) : TR/FInstructorOfficeTelephoneEmailOffice HourTAs::::::Heungsun HwangW7/3N514-398-8021heungsun.hwan
McGill - ECSE - 361
Winter Semester, 2011ECSE 3004-001 (CRN 320) - Winter 2011Signals and Systems 2McGill UniversityDepartment of Electrical and Computer EngineeringInstructor:Prof. Richard RoseOffice: McConnell Engineering Building, Room 755Phone: (514) 398-1749Ema
McGill - ECSE - 361
Psychology 215Prof:Michael Sullivan, PhDe-mail: michael.sullivan@mcgill.caT A s:Tsipora Mankovsky, Megan Cooper, Julien Lacaille (ta.psych.215@gmail.com)The objective of this course is to introduce students to broad domains of research in social psy
McGill - ECSE - 361
304-304A Signals and Systems IIFinal ExamThursday, April 18, 20089:00 AM304-304A Signals and Systems IIFinal ExamDate: Thursday, April 18, 2008Time: 9:00 AMDepartment of Electrical and Computer EngineeringMcGill UniversityExaminer: Prof. Richard
McGill - ECSE - 361
Psychology 213 - Introduction to CognitionWhen: Tuesdays and Thursdays, 2.35pm - 3:55pmWhere : Leacock Building, Room 132COURSE SYLLABUSInstructor:Office:Phone:Email:Office Hours:Prof Jelena RisticN7/13 Stewart Biology Building514 398 2091jele
McGill - ECSE - 462
OPEN B OOK AND N OTES T EST IECSE-464 POWER SYSTEMANALYSISThursday,M arch 3d. 2005Prof. F .D. G alianalu.)l(l) Ifthe s ymmetrical omponentsfa s etofphasec urrents re f , =coatll r Iperunit,t -o - s llLr.)tvffrdL r. i n p eru nit a ndd r
McGill - IGEE - 402
OPEN BOOK AND NOTES TEST 1ECSE-464 POWER SYSTEM ANALYSISThursday, March 3rd. 2005Prof. F.D. Galiana(1) If the symmetrical components of a set of phase currents are I0120.5= 1 per unit,0.5find Iabc in per unit and draw its phasor diagram.5 2 1 (2
McGill - IGEE - 402
POWER SYSTEM ANALYSIS MID-TERM TEST SOLUTIONSWEDNESDAY, NOVEMBER 3, 2010PROF. F.D. GALIANA9:30 TO 12:00YOU MAY BRING INTO THE TEST ROOM A SINGLE 8.5 BY 11 INCH PAGE WITH NOTESALL QUESTIONS HAVE EQUAL WEIGHT FOR A MAXIMUM OF 70 POINTSSI VOUS PRFREZ,
McGill - IGEE - 402
POWER SYSTEM ANALYSIS IGEE-402MID-TERMNovember 11, 2009Open book and notes, Prof. F.D. GalianaMaximum of 90 pointsProblem 1 The phase currents drawn by a three-phase load are equal to the sum of two12components, Iabc and Iabc . As shown below, the
McGill - IGEE - 402
ECSE-464, POWER SYSTEM ANALYSISMID-TERM TESTFEBRUARY 15, 2007OPEN BOOK AND NOTES TEST.EACH QUESTION IS WORTH 15 POINTS FOR A MAXIMUM OF 90.PROF. F.D. GALIANA1) A power system consists of two generators with capacities of 400 MW and 500 MWand unavai
McGill - IGEE - 402
ECSE 464 B, POWER SYSTEM ANALYSISMID-TERM TESTOPEN BOOK AND NOTESALL SEVEN (7) QUESTIONS HAVE EQUAL WEIGHT FOR A MAXIMUM OF70 POINTSThursday, February 16th 2006Prof. F.D. Galiana(1) The demand in MW in a power system is given by d (t ) = 100 ( 3 +
McGill - IGEE - 402
Power System AnalysisECSE 464BSolution to Mid-Term Test 1) d (t ) = 100(3 + sin wt + cos wt ) = 100 3 + 2 sin wt + = 100 3 + 2 cos wt 4 4 ()Dmax = 100 3 + 2 = 441.421 MWTDaverT 1100 22sin wt = 100 3 + = 363.662 MW= D(t )dt =3 +T0T
McGill - IGEE - 402
MID-TERM TEST-POWER SYSTEMS ANALYSIS-ECSE-464PROF. F.D. GALIANATHURSDAY, FEBRUARY 18TH, 20101:05 TO 2:25 pmYOU MAY BRING A SINGLE SHEET OF PAPER AS A CRIB SHEET; ANSWER ALL 4 QUESTIONS, EACHQUESTION BEING WORTH 25 POINTS FOR A MAXIMUM OF 100 POINTS(
McGill - IGEE - 402
McGill - ECSE - 305
McGill UniversityFall 2009ECSE 303: Signals and Systems 1FINAL EXAMINATIONPROBLEM 1 Consider a Linear Time-Invariant (LTI) system with impulse response h(t). Letx(t) be the input signal and y (t) the corresponding output signal. In the following, pri
McGill - ECSE - 305
ECSE 305 - Fall 2010Probability and Random Signals I (3 cr.)Senate on January 29, 2003 approved a resolution on academic integrity, whichrequires that the following reminder to students be printed on every course outline:McGILL UNIVERSITY VALUES ACADE
UGA - MARK - 4700
Beyond the First Decade of the 21st CenturyU.S. economy has slowed dramatically.World growth (except China) also slowed.oThe Organization for Economic Cooperation and Development (OECD) estimates3% average annual growth for the next 25 years.Develop
HCCS - PHARM - 111
Common Dosage FormsAcetaminophen Bitartrate with AcetaminophenLortab: 2.5/500, 5/500, 7.5/500, 10/500Lortab Elixir (per 5 mL) : 2.5/167Vicodin: 5/500Vicodin ES tablets: 7.5/750Vicodin HP: 10/660Lorcet Plus: 7.5/650Lorcet: 10/650Norco: 5/325Norco
Universidad del Turabo - CSE - mel2800
MapInfo MapX v5.0Support NotesNovember 2002MapInfo CorporationTroy, NYIntroductionThe following items are currently unresolved issues and common misunderstandings in MapInfo MapX5.0. If there is a known workaround, it is listed after the issue. The
Universidad del Turabo - CSE - mel2800
MapXDevelopers GuideMapInfo CorporationTroy, NY2MapX Developers GuideInformation in this document is subject to change without notice and does not represent a commitment on the part of the vendoror its representatives. No part of this document may
Universidad del Turabo - CSE - mel2800
Molculas orgnicas y la Fotosntesis y la Respiracin celularFotosntesisDe Wikipedia, la enciclopedia libreSaltar a navegacin, bsquedaUna hoja, el lugar principal en el que se desarrolla la fotosntesis enlas plantasLa fotosntesis, del griego antiguo (f
Universidad del Turabo - CSE - mel2800
Mitosis and MeiosisWhat is Mitosis?Mitosis produces two daughter cells that are identical to the parent cell. If the parent cell ishaploid (N), then the daughter cells will be haploid. If the parent cell is diploid, the daughtercells will also be dipl
Universidad del Turabo - CSE - mel2800
Mitosis is the process in which a eukaryotic cell separates the chromosomes in its cellnucleus, into two identical sets in two daughter nuclei.[1] It is generally followed immediately bycytokinesis, which divides the nuclei, cytoplasm, organelles and ce
Universidad del Turabo - CSE - mel2800
Mitosis y meiosis cul es mitosis? La mitosis produce dos clulas de la hija que sean idnticas a la cluladel padre. Si la clula del padre es (n) haploid, entonces las clulas de la hija sern haploid. Si la cluladel padre es diploid, las clulas de la hija t
Universidad del Turabo - CSE - mel2800
Molculas orgnicas y la Fotosntesis y la Respiracin celularCaptulo3.MolculasorgnicasEnlosorganismosseencuentrancuatrotiposdiferentesdemolculasorgnicasengrancantidad:carbohidratos,lpidos,protenasynucletidos.Todasestasmolculascontienencarbono,hidrgenoyox
Universidad del Turabo - CSE - mel2800
V acuolesVacuoles MonologueByRichard PintoTurabo University 2009MonologoHola yo soy una Vacuola, no s quien me dio ese nombrepero si me entero tendr muchos problemas conmigo, soy unaestructuracelularconstituidaporunamembranayuncontenido in
Universidad del Turabo - CSE - mel2800
Qu diferencia existe entre los virus y las bacterias?Son numerosas las diferencias existentes entre los virus y las bacterias. Los virus son la formade vida ms simple y pequea que se conoce, siendo inclusive de 10 a 100 veces mspequeos que las bacteria