Chapter 8: Memory Management 籃玉如

Size: px
Start display at page:

Download "Chapter 8: Memory Management 籃玉如"

Transcription

1 Chapter 8: Memory Management 籃玉如 Part Four: Memory Management Chap 8 Memory-Management Strategies Chap 9 Virtual-Memory Management 2 1

2 Chapter 8: Memory Management 8.1 Background 8.2 Swapping 8.3 Contiguous Memory Allocation 8.4 Paging 8.5 Structure of the Page Table 8.6 Segmentation 8.7 Example: The Intel Pentium (X) 3 Background 電腦系統中, 記憶體是系統的重心 記憶體本身是一個大型的字組或位元組陣列, 各字組和位元組都各有其位址,CPU 是根據程式計數器的數值到記憶體的位址擷取指令 這些指令可能會造成對於特殊記憶體位址的額外載入或儲存動作 4 2

3 8.1.1 Basic Hardware 主記憶體和建立在處理器內的暫存器是 CPU 唯一可以直接存取的儲存體 Machine instructions 使用記憶體位址做為參數, 沒有使用磁碟位址做為參數 因此, 任何執行的指令, 和任何被這些指令使用的資料必須放在這些直接存取儲存裝置之內 如果資料不在記憶體內, 則必須在 CPU 操作它們之前移到記憶體之中 OS process process base process limit Fig. 8.1 A base and a limit register define a logical address space. Fig. 8.2 Hardware address protection with base and limit registers Address Binding Binding of Instructions and Data to Memory: Address binding of instructions and data to memory addresses can happen at three different stages Compile time: If memory location known a priori, absolute code can be generated; must recompile code if starting location changes Load time: Must generate relocatable code if memory location is not known at compile time Execution time: Binding delayed until run time if the process can be moved during its execution from one memory segment to another. Need hardware support for address maps (e.g., base and limit registers). 6 3

4 Fig. 8.3 Multistep Processing of a User Program Logical vs. Physical Address Space Logical address An address generated by the CPU; also referred to as virtual address Physical address an address seen by the memory unit, that is, the address loaded into the memory-address register of the memory. Logical and physical addresses are the same in compile-time and load-time address-binding schemes; logical (virtual) and physical addresses differ in execution-time address-binding scheme 8 4

5 Memory-Management Management Unit (MMU( MMU) Hardware device that maps virtual to physical address In MMU scheme, the value in the relocation register is added to every address generated by a user process at the time it is sent to memory The user program deals with logical addresses; it never sees the real physical addresses 9 Fig. 8.4 Dynamic relocation using a relocation register 10 5

6 8.1.4 Dynamic Loading 行程大小受限於實體記憶體大小 要得到較佳之記憶體空間使用效率, 可採行動態載入 (dynamic loading) 主程式儲存在主記憶體並執行, 當需要呼叫其它程式時, 首先看看此程式是不是已經存在記憶體內, 如果不是, 便呼叫重定位鏈結載入程式 (relocatable linking loading), 將所需要的程式載入主記憶體內, 並更新行程位址表的內容 然後控制就轉移給新的載入程式 Dynamic Linking and Shared Libraries 採用動態鏈結, 在程式參用程式庫副程式處便做一記號 (stub), 該記號為一小段程式來指示如何去找尋適當的記憶體常駐程式庫副程式, 或是如何載入程式庫副程式 ( 如果不在記憶體中時 ) 當執行到記號處時, 首先檢查所需要的副程式是否已經存在記憶體中 如果該副程式不在記憶體中, 程式會將它載入到記憶體中 12 6

7 Swapping A process can be swapped temporarily out of memory to a backing store, and then brought back into memory for continued execution Backing store fast disk large enough to accommodate copies of all memory images for all users; must provide direct access to these memory images Roll out, roll in swapping variant used for priority-based scheduling algorithms; lower-priority process is swapped out so higher-priority process can be loaded and executed Major part of swap time is transfer time; total transfer time is directly proportional to the amount of memory swapped 13 Schematic View of Swapping Fig. 8.5 Swapping of two processes using a disk as a backing store. 14 7

8 Context-Switch time in Swapping System Contiguous Allocation Main memory usually into two partitions: Resident operating system, usually held in low memory with interrupt vector User processes then held in high memory Memory allocation 的兩個基方式 : Contiguous allocation: each process is contained in a single contiguous section of memory. Non-contiguous allocation: 利用 linked 的方式 16 8

9 8.3.1 Memory Mapping and Protection Fig. 8.6 HW support for relocation and limit registers Memory Allocation How to satisfy a request of size n from a list of free holes (available memory) First-fit: Allocate the first hole that is big enough Best-fit: Allocate the smallest hole that is big enough; must search entire list unless ordered by size. Produces the smallest leftover hole. Worst-fit: Allocate the largest hole; must also search entire list. Produces the largest leftover hole. First-fit and best-fit better than worst-fit in terms of speed and storage utilization 18 9

10 8.3.3 Fragmentation External Fragmentation total memory space exists where there is enough total memory space to satisfy a request, but it is not contiguous storage is fragmented into a large numbers of small holes. Depending on the total amount of memory storage and the average process size, external fragmentation may be a minor or a major problem. 例如,first fit 的統計分析顯示縱使具有某些最佳條件, 在給予 N allocated blocks, 由於 fragmentation 也將遺失其它的 0.5N, 那麼三分之一的記憶體可能沒有利用到, 這就是著名的百分之五十規則 (50-percent rule) Internal Fragmentation allocated memory may be slightly larger than requested memory; this size difference is memory internal to a partition, but not being used Fragmentation External Fragmentation total memory space exists where there is enough total memory space to satisfy a request, but it is not contiguous storage is fragmented into a large numbers of small holes. Internal Fragmentation allocated memory may be slightly larger than requested memory; this size difference is memory internal to a partition, but not being used 20 10

11 8.3.3 Fragmentation The solutions to the problem of external fragmentation: Reduce external fragmentation by compaction Shuffle memory contents to place all free memory together in one large block Compaction is possible only if relocation is dynamic, and is done at execution time Permit the logical address space of the processes to be noncontiguous Paging (8.4) Segmentation (8.6) Paging Paging is memory-management scheme that permits the physical address space of a process to be noncontiguous Basic Method 將 memory 實際區分成固定大小 blocks, 稱為 frames, 而程式欲執行時經由 OS 形成 logical memory 也分成等長的 blocks, 稱為 pages 執行前程式之 pages 必須載入於 available 之 frames, 而且有一個 page table 用來紀錄這些 mapping 的情形 22 11

12 Fig. 8.7 Paging hardware. 23 Fig. 8.8 Paging Model of logical and physical memory 24 12

13 The page size (like the frame size) is defined by the hardware. Page 的大小通常是 a power of 2, 從 512 bytes 到 16MB 之間 利用 a power of 2 作為一個 page 的大小的好處為 : 讓 logical address 容易轉換為 a page number & page offset page number p m-n page offset d n 25 Logical address 0 map Physical address Fig. 8.9 Paging example for a 32-byte memory with 4-byte pages

14 Before allocation After allocation Fig Free frames (a) before allocation and (b) after allocation Hardware Support Translation look-aside buffer (TLB) A fast-lookup hardware cache The TLB contains only a few of the page-table entries. When a logical address is generated by the CPU, its page number is presented to the TLB. If the page number is found, its frame number is immediately available and is used to access memory. If the page number is not in the TLB (known as TLB miss), a memory reference to the page table must be made. When the frame number is obtained, we can use it to access memory. We add the page number and frame number to the TLB, so that they will be found quickly on the next reference

15 Fig Paging hardware with TLB. 29 Effective Access Time Hit ratio: percentage of times that a page number is found in the TLB Assume TLB Lookup time = 20 nanoseconds Assume memory cycle time (access memory)= 100 nanoseconds Hit ratio = 80 Effective Access Time (EAT) =? 30 15

16 8.4.3 Memory Protection Memory protection implemented by associating protection bit with each frame Valid-invalid bit attached to each entry in the page table: valid indicates that the associated page is in the process logical address space, and is thus a legal page invalid indicates that the page is not in the process logical address space 31 Fig Valid (v) or invalid (i) bit in a page table 32 16

17 8.4.4 Shared Pages Shared code One copy of read-only (reentrant) code shared among processes (i.e., text editors, compilers, window systems). Shared code must appear in same location in the logical address space of all processes Private code and data Each process keeps a separate copy of the code and data The pages for the private code and data can appear anywhere in the logical address space 33 Fig Sharing of code in a paging environment 34 17

18 8.5 Structure of Page Table Hierarchical Paging Hashed Page Tables Inverted Page Tables Hierarchical Page Tables Most modern computer systems support a large logical address space The page table itself becomes excessively large We would not want to allocate the page table contiguously in main memory. Solution: Break up the logical address space into multiple page tables A simple technique is a two-level page table 36 18

19 Fig A two-way page-table scheme. 37 Two-Level Paging Example A logical address (on 32-bit machine with 4K page size) is divided into: a page number consisting of 20 bits a page offset consisting of 12 bits Since the page table is paged, the page number is further divided into: a 10-bit page number a 10-bit page offset Thus, a logical address is as follows: page number page offset p i p 2 d where p i is an index into the outer page table, and p 2 is the displacement within the page of the outer page table 38 19

20 Address-Translation Scheme Address-translation scheme for a two-level 32-bit paging architecture Fig Hashed Page Tables Common in address spaces > 32 bits The virtual page number is hashed into a page table. This page table contains a chain of elements hashing to the same location. Virtual page numbers are compared in this chain searching for a match. If a match is found, the corresponding physical frame is extracted

21 Fig Hashed page table Inverted Page Table One entry for each real page of memory Entry consists of the virtual address of the page stored in that real memory location, with information about the process that owns that page Decreases memory needed to store each page table, but increases time needed to search the table when a page reference occurs Use hash table to limit the search to one or at most a few page-table entries 42 21

22 Fig Inverted page table Segmentation A program is a collection of segments. A segment is a logical unit such as: main program, procedure, function, method, object, local variables, global variables, stack, arrays Fig User s view of a program 44 22

23 8.6.1 Basic Method Segmentation: is a memory-management scheme that supports user view of memory A logical address space is a collection of segments Each segment has a name and a length Implementation: segments are numbered and are referred to by a segment number. A logical address consists of a two tuple: <segment-number, offset> Hardware Logical address consists of a two tuple: <segment-number, offset>, Segment table each table entry has: base contains the starting physical address where the segments reside in memory limit specifies the length of the segment 46 23

24 Fig Segmentation hardware. 47 Fig Example of segmentation

Memory Management Outline. Background Swapping Contiguous Memory Allocation Paging Segmentation Segmented Paging

Memory Management Outline. Background Swapping Contiguous Memory Allocation Paging Segmentation Segmented Paging Memory Management Outline Background Swapping Contiguous Memory Allocation Paging Segmentation Segmented Paging 1 Background Memory is a large array of bytes memory and registers are only storage CPU can

More information

The Deadlock Problem. Deadlocks. Deadlocks. Bridge Crossing Example

The Deadlock Problem. Deadlocks. Deadlocks. Bridge Crossing Example The Deadlock Problem Deadlocks A set of blocked processes each holding a resource and waiting to acquire a resource held by another process in the set. Example System has 2 tape drives. P 1 and P 2 each

More information

SHAU KEI WAN GOVERNMENT SECONDARY SCHOOL

SHAU KEI WAN GOVERNMENT SECONDARY SCHOOL 香 港 柴 灣 道 42 號 42 Chai Wan Road, Hong Kong Tel : (852) 2560 3544 Fax : (852) 2568 9708 URL : www.sgss.edu.hk Email : skwgss@edb.gov.hk 筲 箕 灣 官 立 中 學 SHAU KEI WAN GOVERNMENT SECONDARY SCHOOL --------------------------------------------------------------------------------------------------------------------------------

More information

Protel DXP 2004 Schematic 開 始 所 有 程 式 Altium DXP 2004

Protel DXP 2004 Schematic 開 始 所 有 程 式 Altium DXP 2004 Protel DXP 2004 Schematic 開 始 所 有 程 式 Altium DXP 2004 1 File New PCB Project 2 Save Project As Right click Project 儲 存 路 徑 不 可 以 有 中 文 3 D:\Exercise Project 儲 存 路 徑 不 可 以 有 中 文 4 Add New to Project Schematic

More information

The HKICPA Accounting and Business Management Case Competition 2015-16. Secondary School Group (Level 1)

The HKICPA Accounting and Business Management Case Competition 2015-16. Secondary School Group (Level 1) The HKICPA Accounting and Business Management Case Competition 2015-16 Secondary School Group (Level 1) The HKICPA Accounting and Business Management Case Competition 2015-16 Secondary School Group (Level

More information

China M&A goes global

China M&A goes global China M&A goes global Hairong Li of Zhong Lun Law Firm explains the new regulations affecting inbound and outbound M&A, the industries most targeted by Chinese and foreign investors and the unique strategies

More information

EW-7438RPn Mini 安 裝 指 南. 07-2014 / v1.0

EW-7438RPn Mini 安 裝 指 南. 07-2014 / v1.0 EW-7438RPn Mini 安 裝 指 南 07-2014 / v1.0 I. 產 品 資 訊 I-1. 包 裝 內 容 - EW-7438RPn Mini - CD 光 碟 ( 快 速 安 裝 指 南 及 使 用 者 手 冊 ) - 快 速 安 裝 指 南 - 連 線 密 碼 卡 I-2. 系 統 需 求 - 無 線 訊 號 延 伸 / 無 線 橋 接 模 式 : 使 用 現 有 2.4GHz

More information

LC Paper No. PWSC269/15-16(01)

LC Paper No. PWSC269/15-16(01) Legislative Council Public Works Subcommittee meeting on 11 June 2016 118KA Renovation works for the West Wing of the former Central Government Offices for office use by the Department of Justice and law-related

More information

Ex. Either we must get in line early to buy the tickets, or only scalpers INDEPENDENT CLAUSE 1 INDEPENDENT tickets will be available.

Ex. Either we must get in line early to buy the tickets, or only scalpers INDEPENDENT CLAUSE 1 INDEPENDENT tickets will be available. THIRTEENTH WEEK PAGE 1 COMPOUND SENTENCES II The COMPOUND SENTENCE A. A COMPOUND SENTENCE contains two or more INDEPENDENT clauses. B. INDEPENDENT CLAUSES CAN stand alone, so it is very easy to separate

More information

Wi-Drive User Guide. (for use with Amazon s Kindle Fire) Document No. 480WID4KF-001.A01 Kingston Wi-Drive Page 1 of 15

Wi-Drive User Guide. (for use with Amazon s Kindle Fire) Document No. 480WID4KF-001.A01 Kingston Wi-Drive Page 1 of 15 Wi-Drive User Guide (for use with Amazon s Kindle Fire) Document No. 480WID4KF-001.A01 Kingston Wi-Drive Page 1 of 15 Table of Contents Introduction... 3 Requirements... 3 Supported File Types... 3 Install

More information

Data Structures Chapter 4 Linked Lists

Data Structures Chapter 4 Linked Lists Data Structures Chapter 4 Linked Lists Instructor: Ching Chi Lin 林 清 池 助 理 教 授 chingchi.lin@gmail.com Department of Computer Science and Engineering National Taiwan Ocean University Outline Singly Linked

More information

歐 洲 難 民 潮 對 經 濟 的 影 響 The Economic Implications of Europe s Refugee Influx

歐 洲 難 民 潮 對 經 濟 的 影 響 The Economic Implications of Europe s Refugee Influx 歐 洲 難 民 潮 對 經 濟 的 影 響 The Economic Implications of Europe s Refugee Influx 沈 旭 暉 副 教 授 香 港 中 文 大 學 國 際 事 務 研 究 中 心 聯 席 主 任 Dr Simon Shen Co-Director International Affairs Research Center Hong Kong Institute

More information

Case Study of a New Generation Call Center

Case Study of a New Generation Call Center Case Study of a New Generation Call Center Chiung-I Chang* and tzy-yau lee** *Department of Information Management National Taichung Institute of Technology E-mail: ccy@ntit.edu.tw **Department of Leisure

More information

Market Access To Taiwan. By Jane Peng TÜV Rheinland Taiwan Ltd.

Market Access To Taiwan. By Jane Peng TÜV Rheinland Taiwan Ltd. Market Access To Taiwan By Jane Peng TÜV Rheinland Taiwan Ltd. Content General Introduction Taiwan BSMI mark Products, Scope and approval scheme News Update TÜV Rheinland s One-Stop Services Contact info.

More information

EFL Business Writing with Task-based Learning Approach: A Case Study of Student Strategies to Overcome Difficulties

EFL Business Writing with Task-based Learning Approach: A Case Study of Student Strategies to Overcome Difficulties 2013 年 12 月 ISSN 1815-0373 第 十 卷 第 二 期 P217-238 EFL Business Writing with Task-based Learning Approach: A Case Study of Student Strategies to Overcome Difficulties Shu-Chiao Tsai Associate professor, Department

More information

Chemistry I -- Final Exam

Chemistry I -- Final Exam Chemistry I -- Final Exam 01/1/13 Periodic Table of Elements Constants R = 8.314 J / mol K 1 atm = 760 Torr = 1.01x10 5 Pa = 0.081 L atm / K mol c =.9910 8 m/s = 8.314 L kpa / K mol h = 6.6310-34 Js Mass

More information

Kingston MobileLite Wireless. (ßeta Release) Document No. 480WD+MLW.ß01 Kingston MobileLite Wireless (ßeta) Page 1 of 12

Kingston MobileLite Wireless. (ßeta Release) Document No. 480WD+MLW.ß01 Kingston MobileLite Wireless (ßeta) Page 1 of 12 Kingston MobileLite Wireless (ßeta Release) Document No. 480WD+MLW.ß01 Kingston MobileLite Wireless (ßeta) Page 1 of 12 Introduction MobileLite Wireless (simply referred to as MLW from this point forward)

More information

Memory management basics (1) Requirements (1) Objectives. Operating Systems Part of E1.9 - Principles of Computers and Software Engineering

Memory management basics (1) Requirements (1) Objectives. Operating Systems Part of E1.9 - Principles of Computers and Software Engineering Memory management basics (1) Requirements (1) Operating Systems Part of E1.9 - Principles of Computers and Software Engineering Lecture 7: Memory Management I Memory management intends to satisfy the following

More information

Data Structures Chapter 3 Stacks and Queues

Data Structures Chapter 3 Stacks and Queues Data Structures Chapter 3 Stacks and Queues Instructor: Ching Chi Lin 林 清 池 助 理 教 授 chingchi.lin@gmail.com Department of Computer Science and Engineering National Taiwan Ocean University Outline Stacks

More information

Machine Translation for Academic Purposes

Machine Translation for Academic Purposes Proceedings of the International Conference on TESOL and Translation 2009 December 2009: pp.133-148 Machine Translation for Academic Purposes Grace Hui-chin Lin PhD Texas A&M University College Station

More information

Microsoft SQL Server PDW 新世代 MPP 資料倉儲解決方案

Microsoft SQL Server PDW 新世代 MPP 資料倉儲解決方案 DBI304 Microsoft SQL Server PDW 新世代 MPP 資料倉儲解決方案 徐園程 Sr. Technical Account Manager Thomas.Hsu@Microsoft.com 微軟資料倉儲的願景 未來趨勢 Appliance PDW AU3 新功能 Hub & Spoke 架構運用 PDW & Big Data 大綱 客戶案例分享 與其他 MPP 比較 100%

More information

weekly Our mission Our history Our footprint Our award-winning content 2015 Media Kit asian northwest

weekly Our mission Our history Our footprint Our award-winning content 2015 Media Kit asian northwest 2015 Media Kit asian Our mission Asian Pacific American communities have been called, The market of the 21st century. The Northwest Asian Weekly (NWAW) and our sister paper, The Seattle Chinese Post (SCP),

More information

(Chapter 218) APPLICATION FOR A LICENCE BY A BODY CORPORATE

(Chapter 218) APPLICATION FOR A LICENCE BY A BODY CORPORATE Monday Form Collection Time 8:45 a.m. 12:30 p.m. FORM 3 TRAVEL AGENTS ORDINANCE to Friday 2:00 p.m. 5:00 p.m. (Chapter 218) APPLICATION FOR A LICENCE BY A BODY CORPORATE [reg. 9(1)(b).] Application is

More information

促 進 市 場 競 爭 加 強 保 障 消 費 者

促 進 市 場 競 爭 加 強 保 障 消 費 者 通 訊 事 務 管 理 局 辦 公 室 2013 14 年 營 運 基 金 報 告 書 5 Facilitating Market Competition and Strengthening Consumer Protection 處 理 和 調 查 有 關 具 誤 導 性 或 欺 騙 性 行 為 的 電 訊 服 務 投 訴 2012 年 商 品 說 明 ( 不 良 營 商 手 法 )( 修 訂 )

More information

The Government of The Hong Kong Special Administrative Region Procedures for Importation and Registration of Motor Vehicles & Motor Cycles

The Government of The Hong Kong Special Administrative Region Procedures for Importation and Registration of Motor Vehicles & Motor Cycles The Government of The Hong Kong Special Administrative Region Procedures for Importation and Registration of Motor Vehicles & Motor Cycles (Last revised on August 2014) The information below explains the

More information

Tender Document for Procurement of the Security Screening Equipment at MIA (RFQ-151)

Tender Document for Procurement of the Security Screening Equipment at MIA (RFQ-151) Tender Document for Procurement of the Security Screening Equipment at MIA (RFQ-151) Tender Time table Description Date Remark Open Tender Notice 23 April 2013 Deadline of Request for Site Visit: Bidder

More information

轎 車 機 場 接 送 及 往 返 澳 門 與 香 港 機 場 接 送 服 務 禮 遇 ( 推 廣 ) 之 條 款 及 細 則 :

轎 車 機 場 接 送 及 往 返 澳 門 與 香 港 機 場 接 送 服 務 禮 遇 ( 推 廣 ) 之 條 款 及 細 則 : 一 般 條 款 及 細 則 Terms & Conditions : 轎 車 機 場 接 送 及 往 返 澳 門 與 香 港 機 場 接 送 服 務 禮 遇 ( 推 廣 ) 之 條 款 及 細 則 : (I) 一 般 條 款 : 1. 轎 車 機 場 接 送 及 往 返 澳 門 與 香 港 機 場 接 送 服 務 禮 遇 推 廣 由 即 日 起 至 2016 年 12 月 31 日 止 ( 推 廣

More information

广 东 培 正 学 院 2016 年 本 科 插 班 生 专 业 课 考 试 大 纲 基 础 英 语 课 程 考 试 大 纲

广 东 培 正 学 院 2016 年 本 科 插 班 生 专 业 课 考 试 大 纲 基 础 英 语 课 程 考 试 大 纲 广 东 培 正 学 院 2016 年 本 科 插 班 生 专 业 课 考 试 大 纲 基 础 英 语 课 程 考 试 大 纲 Ⅰ. 考 试 性 质 普 通 高 等 学 校 本 科 插 班 生 招 生 考 试 是 由 专 科 毕 业 生 参 加 的 选 拔 性 考 试 高 等 学 校 根 据 考 生 的 成 绩, 按 已 确 定 的 招 生 计 划, 德 智 体 全 面 衡 量, 择 优 录 取 该

More information

余 雋 禧 仇 慧 琳 宣 教 士 夫 婦

余 雋 禧 仇 慧 琳 宣 教 士 夫 婦 余 雋 禧 仇 慧 琳 宣 教 士 夫 婦 Email & Skype: missionarykenny@gmail.com 二 零 一 五 年 十 二 月 家 書 親 愛 的 主 內 弟 兄 姐 妹 和 朋 友, 分 享 家 事 自 從 兒 子 於 七 月 出 生 後, 我 們 的 生 活 簡 直 是 翻 了 個 天, 每 天 忙 著 餵 奶 換 尿 布, 哄 睡 覺, 但 相 信 這 也 是 每

More information

Ringing Ten 2016.01.30 寶 安 商 會 王 少 清 中 學 定 期 通 訊 / 通 告,2002 年 創 刊, 逢 每 月 10 20 及 30 日 派 發

Ringing Ten 2016.01.30 寶 安 商 會 王 少 清 中 學 定 期 通 訊 / 通 告,2002 年 創 刊, 逢 每 月 10 20 及 30 日 派 發 Principal s Message: Let s Sing the Song of Mirth to Celebrate the Charter of POCA Wong Siu Ching Secondary School Interact Club! 25th January, 2016 is the date of establishment of POCA Wong Siu Ching

More information

ZACHYS tel +852.2530.1971 / +1.914.448.3026 fax +852.3014.3838 / +1.914.313.2350 auction@zachys.com zachys.com

ZACHYS tel +852.2530.1971 / +1.914.448.3026 fax +852.3014.3838 / +1.914.313.2350 auction@zachys.com zachys.com Karuizawa 1984 - #7802 into neck, distilled by Karuizawa Distillery on 29th November 1984 and bottled on 13th October 2014, aged 29 years, Spanish oak Olorosso sherry cask, sherry butt, cask #7802, bottle

More information

OPERATING SYSTEM - MEMORY MANAGEMENT

OPERATING SYSTEM - MEMORY MANAGEMENT OPERATING SYSTEM - MEMORY MANAGEMENT http://www.tutorialspoint.com/operating_system/os_memory_management.htm Copyright tutorialspoint.com Memory management is the functionality of an operating system which

More information

亞 洲 地 區 積 極 搶 客 : 澳 門 日 本 韓 國 紛 紛 推 出 割 價 優 惠 及 免 稅 等 搶 客, 香 港 暫 未 有 相 關 措 施

亞 洲 地 區 積 極 搶 客 : 澳 門 日 本 韓 國 紛 紛 推 出 割 價 優 惠 及 免 稅 等 搶 客, 香 港 暫 未 有 相 關 措 施 331 期 參 考 答 案 時 事 一 1. 香 港 旅 遊 業 面 臨 的 挑 戰 如 : 亞 洲 地 區 積 極 搶 客 : 澳 門 日 本 韓 國 紛 紛 推 出 割 價 優 惠 及 免 稅 等 搶 客, 香 港 暫 未 有 相 關 措 施 各 行 各 業 調 整 失 色 : 香 港 的 零 售 氣 氛 轉 弱, 調 整 期 恐 剛 剛 開 始, 不 少 商 店 及 小 店 結 業 屢 見 不

More information

Microsoft Big Data 解決方案與案例分享

Microsoft Big Data 解決方案與案例分享 DBI 312 Microsoft Big Data 解決方案與案例分享 Rich Ho Technical Architect 微軟技術中心 Agenda What is Big Data? Microsoft Big Data Strategy Key Benefits of Microsoft Big Data Demo Case Study What is Big Data? The world

More information

How To Be The Legend In Hong Kong

How To Be The Legend In Hong Kong 5th 與 東 亞 運 共 創 傳 奇 一 刻 Hong Kong shows East Asia it can Be the Legend History was made from 5 to 13 December 2009 when Hong Kong successfully hosted its first-ever international multi-sports event, the

More information

Exploring the Relationship Between Critical Thinking and Active. Participation in Online Discussions and Essays

Exploring the Relationship Between Critical Thinking and Active. Participation in Online Discussions and Essays Exploring the Relationship Between Critical Thinking and Active Participation in Online Discussions and Essays Graham J. PASSMORE, Ellen Carter, & Tom O NEILL Lakehead University, Brock University, Brock

More information

A Brief Study on Cancellation of Late-Marriage and Late-Childbirth Leaves

A Brief Study on Cancellation of Late-Marriage and Late-Childbirth Leaves PRC Labor and Employment Law Newsflash February 2016 A Brief Study on Cancellation of Late-Marriage and Late-Childbirth Leaves On 27 th December 2015 an amendment to the PRC Population and Family Planning

More information

HiTi user manual. HiTi Digital, Inc. www.hiti.com

HiTi user manual. HiTi Digital, Inc. www.hiti.com HiTi user manual HiTi Digital, Inc. www.hiti.com English CONTENTS PREFACE Announcements Chapter 1. Getting ready 1.1 Checking box contents 1.2 Appearance of the printer and key functions 1.3 Installation

More information

Multilingual Version. English 中 文. Français 日 本 語. Deutsch. Italiano

Multilingual Version. English 中 文. Français 日 本 語. Deutsch. Italiano Multilingual Version English 中 文 Français 日 本 語 Deutsch Italiano AVN801 / 701 NETWORK CAMERA SERIES OPERATION GUIDE Please read instructions thoroughly before operation and retain it for future reference.

More information

Validity and reliability of the Chinese version of the Insulin Treatment Appraisal Scale among primary care patients in Hong Kong

Validity and reliability of the Chinese version of the Insulin Treatment Appraisal Scale among primary care patients in Hong Kong Original Article Validity and reliability of the Chinese version of the Insulin Treatment Appraisal Scale among primary care patients in Hong Kong KP Lee * This article was published on 3 Jun 2016 at www.hkmj.org.

More information

10th PRO Awards Grace a Plaque of Recognition for Excellence

10th PRO Awards Grace a Plaque of Recognition for Excellence 今日靈惠 GraceToday The Official Publication of Grace Christian College Grace Village, Quezon City, Philippines Vol. XX Issue I November 2011 10th PRO Awards Grace a Plaque of Recognition for Excellence GCC

More information

國 立 中 山 大 學 企 業 管 理 學 系 碩 士 論 文

國 立 中 山 大 學 企 業 管 理 學 系 碩 士 論 文 國 立 中 山 大 學 企 業 管 理 學 系 碩 士 論 文 Department of Business Management National Sun Yat-sen University Master Thesis 尋 求 網 路 廣 告 績 效 最 佳 化 機 制 Optimizing Performance of Internet Advertising Campaigns 研 究 生

More information

代 號 (//) ISIN Code Price Price CHIPOW CHINA POWER INTL DEVELOP 4.5 5/9/2017 HK0000198041 100.55 100.80 3.72 3.38 Electric Moderate CHELCP CN ELECTRONI

代 號 (//) ISIN Code Price Price CHIPOW CHINA POWER INTL DEVELOP 4.5 5/9/2017 HK0000198041 100.55 100.80 3.72 3.38 Electric Moderate CHELCP CN ELECTRONI 中 銀 國 際 提 供 一 系 列 由 不 同 國 家 政 府 機 構 金 融 機 構 或 大 型 企 業 發 行 的 債 券, 涵 蓋 不 同 年 期 息 率 及 結 算 貨 幣 供 客 戶 選 擇 以 下 債 券 報 價 僅 提 供 基 本 的 市 場 參 考 價 格 作 參 考 用 途 如 欲 查 詢 最 新 市 場 價 格 或 索 取 更 多 有 關 債 券 的 資 料, 請 聯 絡 您 的

More information

1.d 是 故 此 氣 也, 不 可 止 以 力, 而 可 安 以 德. 1 民 : should be read as 此 here. 2 乎 : is an exclamation, like an ah! 3 淖 : should be 綽 chùo, meaning spacious.

1.d 是 故 此 氣 也, 不 可 止 以 力, 而 可 安 以 德. 1 民 : should be read as 此 here. 2 乎 : is an exclamation, like an ah! 3 淖 : should be 綽 chùo, meaning spacious. 管 子 : 內 業 (Warring States, 475-220 BCE) Guanzi, Inner Training/Cultivation 1.a 凡 物 之 精, 此 則 為 生,, 下 生 五 穀, 上 為 列 星 In all cases, the essence of things This is what brings them to life. Below, it makes

More information

痴 呆 症. Dementia 如 何 照 顧 患 有 痴 呆 症 的 家 人. How To Care For A Family Member With Dementia

痴 呆 症. Dementia 如 何 照 顧 患 有 痴 呆 症 的 家 人. How To Care For A Family Member With Dementia 痴 呆 症 如 何 照 顧 患 有 痴 呆 症 的 家 人 Dementia How To Care For A Family Member With Dementia How To Care For A Family Member With Dementia Caring for a family member with dementia can be a challenge. Dementia

More information

Lot 439. Lot 440. Lots

Lot 439. Lot 440. Lots Lot 439 Lot 440 Macallan Fine and Rare Private Eye Single Malt 1961 bottom neck, Single Highland Malt Whisky, 35th anniversary of Private Eye, Cask #1580, bonded in 1961, 700ml, 40% alcohol, bottle #4972

More information

4.8 Thedo while Repetition Statement Thedo while repetition statement

4.8 Thedo while Repetition Statement Thedo while repetition statement 1 4.8 hedo while Repetition Statement hedo while repetition statement Similar to thewhile structure Condition for repetition tested after the body of the loop is performed All actions are performed at

More information

D R 數 據 研 究. merely mimicking the sciences use of (big) data, the arts and humanities must explore what kind. asdf

D R 數 據 研 究. merely mimicking the sciences use of (big) data, the arts and humanities must explore what kind. asdf D R at ES a e fi a r e c d h Browse this way Table of Contents DATAFYING THE GAZE, OR THE BUBBLE GLAZ 三 03 Emails from an American Psycho 三 03 CAPTURE ALL YOUR THOUGHTS 十 二 12 Interface Industry - Cultural

More information

OPERATING SYSTEMS MEMORY MANAGEMENT

OPERATING SYSTEMS MEMORY MANAGEMENT OPERATING SYSTEMS MEMORY MANAGEMENT Jerry Breecher 8: Memory Management 1 OPERATING SYSTEM Memory Management What Is In This Chapter? Just as processes share the CPU, they also share physical memory. This

More information

Wi-Fi SD. Sky Share S10 User Manual

Wi-Fi SD. Sky Share S10 User Manual Wi-Fi SD Sky Share S10 User Manual Table of Contents 1. Introduction... 3 2. Spec and System Requirements... 4 3. Start Sky Share S10... 5 4. iphone App... 7 5. ipad App... 13 6. Android App... 15 7. Web

More information

A SERVER-LESS ARCHITECTURE FOR BUILDING SCALABLE, RELIABLE, AND COST-EFFECTIVE VIDEO-ON-DEMAND SYSTEMS

A SERVER-LESS ARCHITECTURE FOR BUILDING SCALABLE, RELIABLE, AND COST-EFFECTIVE VIDEO-ON-DEMAND SYSTEMS A SERVER-LESS ARCHITECTURE FOR BUILDING SCALABLE, RELIABLE, AND COST-EFFECTIVE VIDEO-ON-DEMAND SYSTEMS LEUNG WAI TAK A Thesis Submitted in Partial Fulfillment of the Requirements for the Degree of Master

More information

电 信 与 互 联 网 法 律 热 点 问 题

电 信 与 互 联 网 法 律 热 点 问 题 2014 年 5 月 26 日 2014 年 8 月 14 日 电 信 与 互 联 网 法 律 热 点 问 题 即 时 通 信 工 具 公 众 信 息 服 务 发 展 管 理 暂 行 规 定 简 评 2014 年 8 月 7 日, 国 家 互 联 网 信 息 办 公 室 发 布 了 即 时 通 信 工 具 公 众 信 息 服 务 发 展 管 理 暂 行 规 定 ( 以 下 简 称 暂 行 规 定 ),

More information

Should lidocaine spray be used to ease nasogastric tube insertion? A double-blind, randomised controlled trial

Should lidocaine spray be used to ease nasogastric tube insertion? A double-blind, randomised controlled trial O R I G I N A L A R T I C L E Should lidocaine spray be used to ease nasogastric tube insertion? A double-blind, randomised controlled trial CP Chan FL Lau 陳 志 鵬 劉 飛 龍 Objective To investigate the efficacy

More information

中 国 石 化 上 海 石 油 化 工 研 究 院 欢 迎 国 内 外 高 层 次 人 才 加 入

中 国 石 化 上 海 石 油 化 工 研 究 院 欢 迎 国 内 外 高 层 次 人 才 加 入 中 国 石 化 上 海 石 油 化 工 研 究 院 欢 迎 国 内 外 高 层 次 人 才 加 入 创 建 世 界 一 流 研 究 院 是 中 国 石 油 化 工 股 份 有 限 公 司 上 海 石 油 化 工 研 究 院 ( 以 下 简 称 上 海 院 ) 的 远 景 目 标, 满 足 国 家 石 油 石 化 发 展 需 求, 为 石 油 石 化 提 供 技 术 支 撑 将 是 上 海 院 的 使

More information

Chapter 7 Memory Management

Chapter 7 Memory Management Operating Systems: Internals and Design Principles Chapter 7 Memory Management Eighth Edition William Stallings Frame Page Segment A fixed-length block of main memory. A fixed-length block of data that

More information

ifuzhen.com, ifortzone.com a product of Edgework Ventures Financial Management Software & Financial Wiki

ifuzhen.com, ifortzone.com a product of Edgework Ventures Financial Management Software & Financial Wiki ifuzhen.com, ifortzone.com a product of Edgework Ventures Edgework Ventures Limited Flat L 19th Floor, Goldfield Building 144-150 Tai Lin Pai Road Kwai Chung, Hong Kong Edgework Technology, Shanghai 中国

More information

Multilingual Version. English. 中 文 Français 日 本 語. Deutsch. Español. Italiano

Multilingual Version. English. 中 文 Français 日 本 語. Deutsch. Español. Italiano Multilingual Version English 中 文 Français 日 本 語 Deutsch Español Italiano AVN801 / 701 NETWORK CAMERA SERIES OPERATION GUIDE Please read instructions thoroughly before operation and retain it for future

More information

JAPAN PATENT OFFICE AS DESIGNATED (OR ELECTED) OFFICE CONTENTS

JAPAN PATENT OFFICE AS DESIGNATED (OR ELECTED) OFFICE CONTENTS Page 1 JP JAPAN PATENT OFFICE AS DESIGNATED (OR ELECTED) OFFICE CONTENTS THE ENTRY INTO THE NATIONAL PHASE SUMMARY THE PROCEDURE IN THE NATIONAL PHASE ANNEXES Fees... Annex JP.I Form No. 53: Transmittal

More information

美 国 律 师 协 会 知 识 产 权 法 部 和 国 际 法 律 部 关 于 中 华 人 民 共 和 国 专 利 法 修 改 草 案 ( 征 求 意 见 稿 ) 的 联 合 意 见 书

美 国 律 师 协 会 知 识 产 权 法 部 和 国 际 法 律 部 关 于 中 华 人 民 共 和 国 专 利 法 修 改 草 案 ( 征 求 意 见 稿 ) 的 联 合 意 见 书 美 国 律 师 协 会 知 识 产 权 法 部 和 国 际 法 律 部 关 于 中 华 人 民 共 和 国 专 利 法 修 改 草 案 ( 征 求 意 见 稿 ) 的 联 合 意 见 书 2012 年 9 月 7 日 本 文 所 述 意 见 仅 代 表 美 国 律 师 协 会 (ABA) 知 识 产 权 法 部 和 国 际 法 律 部 的 意 见 文 中 的 评 论 内 容 未 经 美 国 律 师

More information

Bodhisattva Path is an inevitable way to

Bodhisattva Path is an inevitable way to 二 O O 九 年 在 家 菩 薩 戒 誌 Report on the Bodhisattva Precept Transmission in 2009 Compiled by Editorial Staff 在 通 往 佛 國 的 路 上 比 丘 尼 恒 雲 文 沙 彌 尼 近 經 英 譯 通 往 佛 國 的 路 上, 菩 薩 道 是 一 在 條 必 經 之 路 諸 多 眾 生 在 這 路 上 來

More information

Procedures to file a request to the JPO for Patent Prosecution Highway Pilot Program between the JPO and the HPO

Procedures to file a request to the JPO for Patent Prosecution Highway Pilot Program between the JPO and the HPO Procedures to file a request to the JPO for Patent Prosecution Highway Pilot Program between the JPO and the HPO 1. to the JPO When an applicant files a request for an accelerated examination under the

More information

FRESH PRODUCE FORUM CHINA, 1 JUNE 2016, CHENGDU, CHINA 新 鲜 果 蔬 行 业 中 国 高 峰 论 坛,2016 年 6 月 1 日, 成 都 EXHIBITOR REGISTRATION FORM 参 展 商 申 请 表 格

FRESH PRODUCE FORUM CHINA, 1 JUNE 2016, CHENGDU, CHINA 新 鲜 果 蔬 行 业 中 国 高 峰 论 坛,2016 年 6 月 1 日, 成 都 EXHIBITOR REGISTRATION FORM 参 展 商 申 请 表 格 FRESH PRODUCE FORUM CHINA, 1 JUNE 2016, CHENGDU, CHINA 新 鲜 果 蔬 行 业 中 国 高 峰 论 坛,2016 年 6 月 1 日, 成 都 EXHIBITOR REGISTRATION FORM 参 展 商 申 请 表 格 1. Exhibitor Data 参 展 商 信 息 (PLEASE COMPLETE IN CAPITAL LETTERS

More information

中 国 ( 南 京 ) 软 件 谷 简 介

中 国 ( 南 京 ) 软 件 谷 简 介 中 国 ( 南 京 ) 软 件 谷 简 介 中 国 ( 南 京 ) 软 件 谷 是 首 个 中 国 软 件 名 城 的 核 心 区 和 标 志 区, 位 于 南 京 主 城 南 部, 紧 邻 河 西 新 城 和 南 部 新 城, 总 面 积 70 平 方 公 里, 是 距 主 城 最 近 产 业 集 聚 度 最 高 生 态 资 源 最 好 交 通 最 为 便 捷 的 软 件 产 业 基 地 2011

More information

Terms and Conditions of Purchase- Bosch China [ 采 购 通 则 博 世 ( 中 国 )]

Terms and Conditions of Purchase- Bosch China [ 采 购 通 则 博 世 ( 中 国 )] 1. General 总 则 Our Terms and Conditions of Purchase shall apply exclusively; Business terms and conditions of the Supplier conflicting with or Supplier s deviating from our Terms and Conditions of Purchase

More information

MARGINAL COST OF INDUSTRIAL PRODUCTION

MARGINAL COST OF INDUSTRIAL PRODUCTION 2011 POLISH JOURNAL OF MANAGEMENT STUDIES MARGINAL COST OF INDUSTRIAL PRODUCTION Abstract: One of the important issues of production management is the most efficient possible use of the production capacity

More information

Chapter 7 Memory Management

Chapter 7 Memory Management Operating Systems: Internals and Design Principles, 6/E William Stallings Chapter 7 Memory Management Patricia Roy Manatee Community College, Venice, FL 2008, Prentice Hall Memory Management Subdividing

More information

Bird still caged? China s courts under reform. Workshop, June 3-4, 2016, Vienna, Austria. (University of Vienna, Department of East Asian Studies)

Bird still caged? China s courts under reform. Workshop, June 3-4, 2016, Vienna, Austria. (University of Vienna, Department of East Asian Studies) Bird still caged? China s courts under reform Workshop, June 3-4, 2016, Vienna, Austria (University of Vienna, Department of East Asian Studies) At this workshop, expert participants will exchange information

More information

Stress, Rhythm, Tone And Intonation. Ching Kang Liu National Taipei University ckliu@mail.ntpu.edu.tw http://web.ntpu.edu.

Stress, Rhythm, Tone And Intonation. Ching Kang Liu National Taipei University ckliu@mail.ntpu.edu.tw http://web.ntpu.edu. Stress, Rhythm, Tone And Intonation Ching Kang Liu National Taipei University ckliu@mail.ntpu.edu.tw http://web.ntpu.edu.tw/~ckliu/ 1 Overview Rhythm & intonation 1. Rhythm (suprasegmental stress patterns)

More information

Romeo and Juliet 罗 密 欧 与 茱 丽 叶

Romeo and Juliet 罗 密 欧 与 茱 丽 叶 Romeo and Juliet 1 A Famous Love Story 驰 名 的 爱 情 故 事 Romeo and Juliet 罗 密 欧 与 茱 丽 叶 Although he died almost 400 years ago, William Shakespeare is still one of the most popular English writers in the world.

More information

INFORMATION NOTE. Causes of Poverty in Hong Kong: A Literature Review

INFORMATION NOTE. Causes of Poverty in Hong Kong: A Literature Review INFORMATION NOTE Causes of Poverty in Hong Kong: A Literature Review 1. Overview 1.1 This information note summarizes academic discussions on the factors that lead to the present problem of poverty in

More information

Virtual vs Physical Addresses

Virtual vs Physical Addresses Virtual vs Physical Addresses Physical addresses refer to hardware addresses of physical memory. Virtual addresses refer to the virtual store viewed by the process. virtual addresses might be the same

More information

The Sinica Sense Management System: Design and Implementation

The Sinica Sense Management System: Design and Implementation Computational Linguistics and Chinese Language Processing Vol. 10, No. 4, December 2005, pp. 417-430 417 The Association for Computational Linguistics and Chinese Language Processing The Sinica Sense Management

More information

Customers' Trust and Purchase Intention towards. Taobao's Alipay (China online marketplace)

Customers' Trust and Purchase Intention towards. Taobao's Alipay (China online marketplace) Customers' Trust and Purchase Intention towards Taobao's Alipay (China online marketplace) By Wong Tak Yan, Isabella 08032084 & Yeung Yuen Ha, Rabeea 08037728 An Honours Degree Project Submitted to the

More information

Memory unit sees only the addresses, and not how they are generated (instruction counter, indexing, direct)

Memory unit sees only the addresses, and not how they are generated (instruction counter, indexing, direct) Memory Management 55 Memory Management Multitasking without memory management is like having a party in a closet. Charles Petzold. Programming Windows 3.1 Programs expand to fill the memory that holds

More information

English. Copyright DEWALT

English. Copyright DEWALT DWD01S English 3 9 Copyright DEWALT 2 Figure 1 d c g b a e f Figure 2 c g b a 1 2 Figure 3 Figure 4 ENGLISH VARIABLE SPEED REVERSIBLE DRILL DWD01S Congratulations! You have chosen a DEWALT tool. Years

More information

Graduate School of Engineering. Master s Program, 2016 (October entrance)

Graduate School of Engineering. Master s Program, 2016 (October entrance) Application Procedure for Foreign Student Admission to Graduate School of Engineering Master s Program, 2016 (October entrance) Tottori University 4-101 Koyama-Minami, Tottori, 680-8552 Japan Phone: +81-857-31-6761

More information

2013 年 6 月 英 语 六 级 真 题 及 答 案 ( 文 都 版 )

2013 年 6 月 英 语 六 级 真 题 及 答 案 ( 文 都 版 ) 真 题 园 ----http://www.zhentiyuan.com 2013 年 6 月 英 语 六 级 真 题 及 答 案 ( 文 都 版 ) 注 : 快 速 阅 读 暂 缺, 作 文 范 文 供 参 考 Part I Writing 2013 年 6 月 六 级 作 文 范 文 一 It is not exaggerating to say that habits determine how

More information

CAHPS for PQRS Survey Quality Assurance Guidelines Version 1 Technical Corrections and Clarifications Issued November 23, 2015

CAHPS for PQRS Survey Quality Assurance Guidelines Version 1 Technical Corrections and Clarifications Issued November 23, 2015 Subsequent to the production of the CAHPS for PQRS Survey (QAG V.1), it has been determined that there are specific survey material items that require content corrections. These items are identified below.

More information

REGULATIONS FOR THE DEGREE OF BACHELOR OF ARTS IN ARCHITECTURAL STUDIES (BA[ArchStud])

REGULATIONS FOR THE DEGREE OF BACHELOR OF ARTS IN ARCHITECTURAL STUDIES (BA[ArchStud]) REGULATIONS FOR THE DEGREE OF BACHELOR OF ARTS IN ARCHITECTURAL STUDIES (BA[ArchStud]) These regulations and syllabuses apply to students admitted in the 2011-12 academic year and thereafter. (See also

More information

國 立 交 通 大 學 生 物 科 技 研 究 所 碩 士 論 文 探 討 幽 門 螺 旋 桿 菌 熱 休 克 蛋 白 60 對 人 類 周 邊 血 液 單 核 球 抑 制 增 生 活 性 之 位 置

國 立 交 通 大 學 生 物 科 技 研 究 所 碩 士 論 文 探 討 幽 門 螺 旋 桿 菌 熱 休 克 蛋 白 60 對 人 類 周 邊 血 液 單 核 球 抑 制 增 生 活 性 之 位 置 國 立 交 通 大 學 生 物 科 技 研 究 所 碩 士 論 文 探 討 幽 門 螺 旋 桿 菌 熱 休 克 蛋 白 60 對 人 類 周 邊 血 液 單 核 球 抑 制 增 生 活 性 之 位 置 The active site of Helicobacter pylori heat shock protein 60 for inhibiting the proliferation of human

More information

Quality of. Leadership. Quality Students of Faculty. Infrastructure

Quality of. Leadership. Quality Students of Faculty. Infrastructure 217 218 Quality of Quality of Leadership Quality of Quality of Quality Students of Faculty Quality of Infrastructure 219 220 Quantitative Factor Quantitative Analysis Meta Synthesis Informal Interviews

More information

EA-N66. 3-in-1 Dual-Band Wireless-N900 Gigabit Access Point / Wi-Fi Bridge / Range Extender. Step-by-Step Setup Manual

EA-N66. 3-in-1 Dual-Band Wireless-N900 Gigabit Access Point / Wi-Fi Bridge / Range Extender. Step-by-Step Setup Manual EA-N66 3-in-1 Dual-Band Wireless-N900 Gigabit Access Point / Wi-Fi Bridge / Range Extender Step-by-Step Setup Manual E7648 First Edition August 2012 Copyright 2012 ASUSTeK Computer Inc. All Rights Reserved.

More information

RT-AC68R. Quick Start Guide. Wireless-AC1900 Dual Band Gigabit Router. NOTE: For more details, refer to the user manual included in the support

RT-AC68R. Quick Start Guide. Wireless-AC1900 Dual Band Gigabit Router. NOTE: For more details, refer to the user manual included in the support RT-AC68R Wireless-AC1900 Dual Band Gigabit Router 8R Quick Start Guide NOTE: For more details, refer to the user manual included in the support CD. E8616 / First Edition / August 2013 E8616_RT-AC68R_QSG_new.indd

More information

Advancements in Slurry Gasification

Advancements in Slurry Gasification Advancements in Slurry Gasification Jason Crew, General Manager GE Power & Water, Gasification International Advanced Coal Technologies Conference 2012 Xi an June 4, 2012 Gasification is energy conversion

More information

ENERGY SERVICE -> GREEN ECONOMICS

ENERGY SERVICE -> GREEN ECONOMICS ENERGY SERVICE -> GREEN ECONOMICS Speaker: Veronica LIN 林美真 Member of ESCO Association Board 中華民國能源技術服務商業同業公會 理事 GM of Ecolife Taiwan Co., Ltd 綠生活健康節能有限公司 總經理 夏季節電對策的基本想法 Summer time electricity saving

More information

~1: 15 /;' J~~~~c...:;.--:.. I. ~ffi ~I J) ':~

~1: 15 /;' J~~~~c...:;.--:.. I. ~ffi ~I J) ':~ ~1: 15 /;' J~~~~c...:;.--:.. I ~ffi ~I J) ':~ _ Making CET Writing Sub-test Communicative A Thesis Presented to The College ofenglish Language and Literature Shanghai International Studies University In

More information

The Maryknoll Advantage With Pacific Aviation Museum Pearl Harbor

The Maryknoll Advantage With Pacific Aviation Museum Pearl Harbor S U M M E R C A M P 2 0 1 4 The Maryknoll Advantage With Pacific Aviation Museum Pearl Harbor Summer ESL/Pacific Aviation Museum at Maryknoll School, Hawaii July 12 July 31 Program will include: *16 hours

More information

W4118: segmentation and paging. Instructor: Junfeng Yang

W4118: segmentation and paging. Instructor: Junfeng Yang W4118: segmentation and paging Instructor: Junfeng Yang Outline Memory management goals Segmentation Paging TLB 1 Uni- v.s. multi-programming Simple uniprogramming with a single segment per process Uniprogramming

More information

Chinese (Mandarin): World Language

Chinese (Mandarin): World Language The Praxis Study Companion Chinese (Mandarin): World Language 5665 www.ets.org/praxis Welcome to the Praxis Study Companion Welcome to the Praxis Study Companion Prepare to Show What You Know You have

More information

Christy Wegener, Director of Planning & Communications

Christy Wegener, Director of Planning & Communications SUBJECT: 2016-2019 FROM: Christy Wegener, Director of Planning & Communications DATE: January 25, 2016 Action Review and forward to the Board of Directors for approval Background Section 601 of the Civil

More information

E-BUSINESS STRATEGY IN SUPPLY CHAIN COLLABORATION: AN EMPIRICAL STUDY OF B2B E-COMMERCE PROJECT IN TAIWAN

E-BUSINESS STRATEGY IN SUPPLY CHAIN COLLABORATION: AN EMPIRICAL STUDY OF B2B E-COMMERCE PROJECT IN TAIWAN International Journal of Electronic Business Management, Vol. 10, No. 2, pp. 101-112 (2012) 101 E-BUSINESS STRATEGY IN SUPPLY CHAIN COLLABORATION: AN EMPIRICAL STUDY OF B2B E-COMMERCE PROJECT IN TAIWAN

More information

Operating Systems, 6 th ed. Test Bank Chapter 7

Operating Systems, 6 th ed. Test Bank Chapter 7 True / False Questions: Chapter 7 Memory Management 1. T / F In a multiprogramming system, main memory is divided into multiple sections: one for the operating system (resident monitor, kernel) and one

More information

Lecture 17: Virtual Memory II. Goals of virtual memory

Lecture 17: Virtual Memory II. Goals of virtual memory Lecture 17: Virtual Memory II Last Lecture: Introduction to virtual memory Today Review and continue virtual memory discussion Lecture 17 1 Goals of virtual memory Make it appear as if each process has:

More information

Application Guidelines for International Graduate Programs in Engineering

Application Guidelines for International Graduate Programs in Engineering Global 30: Future Global Leadership (FGL) 2016 Academic Year (April 2016 Enrollment) Application Guidelines for International Graduate Programs in Engineering International Mechanical and Aerospace Engineering

More information

Memory Management 1. Memory Management. Multitasking without memory management is like having a party in a closet.

Memory Management 1. Memory Management. Multitasking without memory management is like having a party in a closet. Memory Management 1 Memory Management Multitasking without memory management is like having a party in a closet. Charles Petzold. Programming Windows 3.1 Programs expand to fill the memory that holds them.

More information

Spectrum: Studies in Language, Literature, Translation, and Interpretation, Vol. 2, 85-92

Spectrum: Studies in Language, Literature, Translation, and Interpretation, Vol. 2, 85-92 Spectrum: Studies in Language, Literature, Translation, and Interpretation, Vol. 2, 85-92 Tales of Good-hearted Women: A Comparison of Gustave Flaubert's Un Coeur simple and Gertrude Stein's The Good Anna

More information

Chapter 9. Subprograms

Chapter 9. Subprograms Chapter 9 Subprograms ISBN 0-321-33025-0 Chapter 9 Topics Introduction Fundamentals of Subprograms Design Issues for Subprograms Local Referencing Environments Parameter-Passing Methods Parameters That

More information