Phranakorn Rajabhat University Library

From reading to writing 4 /

Ward, Colin

From reading to writing 4 / Colin Ward - White Plains, NY : Pearson, 2010 - XII, 195 p. : ill. ; 25 cm.

Unit 1 Inventions: A zone in time pp. 4-8 -- The Remarkable clarence birdseye pp. 9-20 Unit 2 Careers: How networking works pp. 23-29 -- How to run a successful business pp. 30-38 Unit 3 The environment: Can cell-phone recycling help Africa gorillas? pp. 41-48 -- The water beneath our feet pp. 49-58 Unit 4 Fact or fiction?: Lucky charms pp. 62-66 -- Legendary creatures pp. 67-72 Unit 5 Personality: Musical personalities pp. 75-82 -- Eustress or you stress? pp. 83-92 Unit 6 Gender: Shopping by the sexes pp. 95-101 -- Fashionable men pp. 102-111 Unit 7 Human nature: Why you can't turn away pp. 114-120 -- To laugh is human pp. 121-130 Unit 8 Privacy: Future with nowhere to hide pp. 133-139 -- More parents going high-tech to track kids pp. 140-149 Unit 9 Literature: The model millionaire (Part 1) pp. 152-156 -- The model millionaire (Part 2) pp. 157-166

9780132474061 380


ENGLISH LANGUAGE--TEXTBOOKS FOR FOREIGN SPEAKERS
ENGLISH LANGUAGE--USAGE
READING COMPREHENSION--PROBLEMS, EXERCISES, ETC
ENGLISH LANGUAGE--WRITING
ENGLISH LANGUAGE

PE 1128 / W37F 2010

มหาวิทยาลัยศรีปทุม (กทม.)
2410/2 ถ.พหลโยธิน เขตจตุจักร กรุงเทพฯ 10900
Tel : 02-579-1111, 02-561-2222
มหาวิทยาลัยศรีปทุม (ชลบุรี)
79 หมู่ 1 ถ.บางนา-ตราด ต.คลองตำหรุ อ.เมือง จ.ชลบุรี 20000
Tel : 038-146-123
มหาวิทยาลัยศรีปทุม (ขอนแก่น)
182/12 หมู่ 4 ถ.ศรีจันทร์ ต.ในเมือง อ.เมือง จ.ขอนแก่น 40000
Tel : 043-224-111


 

$(document).ready(function() { // Basic detection of search var searchBox = $('#transl1'); // This is standard OPAC search input id ?? // Actually standard is 'q' or 'idx'. // We want to trigger when the user sees results. // Usually we check if we are on search results page. if ($('body').hasClass('opac-results')) { var params = new URLSearchParams(window.location.search); var query = params.get('q'); if (query) { // Show Loading var container = $('
'); container.append('

✨ AI Recommendations

'); container.append('
Searching with AI...
'); // Prepend to main content // Selector depends on theme. 'div.maincontent' or '#opac-main' $('#userresults').prepend(container); $.ajax({ url: '/api/v1/contrib/aisearch/search?q=' + encodeURIComponent(query), method: 'GET', success: function(data) { container.find('.spinner').remove(); if (data && data.length > 0) { var ul = ''; container.append(ul); } else { container.append('

No AI recommendations found.

'); } }, error: function() { container.find('.spinner').remove(); container.append('

Error loading AI recommendations.

'); } }); } } });