Loading...

Can we take bus number twenty or thirty? No. They go to the zoo or park. Can we take bus number nineteen? Yes! But bus number nineteen goes to the market. Hello, I’m looking for some fresh fruit. Well, we just got sixty sweet apples today. How much are fifty apples? Today, the price for fifty apples is forty dollars.
Quiz by Ralph Ramos
Customize this quiz to suit your class
Instantly translate to 100+ languages
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
Give this quiz to my class
Where are we going? We are going to the market. Can we take bus number twenty? No. Bus number twenty goes to the zoo. Can we take bus number thirty? No. Bus number thirty goes to the park. Can we take bus number nineteen? Yes. Bus number nineteen goes to the market.
In this video we take a look at the 0:02 fetch to code 0:03 execute cycle including its effect on 0:06 the various registers we've previously 0:12 [Music] 0:14 discussed a computer is defined Definition 0:17 as an electronic device that takes an 0:20 input 0:22 processes data 0:25 and delivers output 0:29 in this simple example you can see we're 0:31 taking the input 5 0:35 we're multiplying it by 2 that's our 0:37 process 0:39 and we're outputting 10. 0:44 but this could be way more complex for 0:46 example of a game console 0:48 the input could be the buttons you press 0:50 on a controller 0:53 the processes would then be carried out 0:55 by the console itself 0:59 and the output would be some form of 1:01 update to a monitor 1:02 and sound out for a speaker possibly 1:04 vibration feedback through the 1:06 controller 1:10 to process data a computer follows a set 1:13 of instructions 1:14 known as a computer program 1:18 if we take the lid off a typical desktop 1:20 computer we can identify 1:22 two critical components the memory 1:26 that stores the program and the central 1:29 processing unit or processor 1:31 which is under this large fan and 1:33 carries out the instructions 1:37 a computer carries out its function by 1:40 fetching 1:41 instructions decoding them and then 1:43 executing them 1:44 in a continuous repetitive cycle 1:46 billions of times a second 1:48 let's look at each of these stages in a 1:50 little more detail Fetch 1:53 so let's start with the fetch stage the 1:55 very first thing that happens 1:57 is the program counter is checked as it 2:00 holds the address 2:01 of the next instruction to be executed 2:07 the address stored is then copied into 2:09 the memory address register 2:14 the address is then sent along the 2:16 address bus to main memory 2:18 where it waits to receive a signal from 2:21 the control 2:22 bus so it knows what to do 2:27 as we want to read the data that's 2:29 stored in memory address 2:30 0 0 0 0 the control unit sends 2:34 a read signal along the control bus to 2:36 main memory 2:41 now main memory knows the data needs to 2:44 be read 2:45 the content stored in memory address 000 2:49 can be sent along the data bus to the 2:51 memory data register 2:56 now as we're currently in the process of 2:58 fetching an instruction 3:00 the data received by the memory data 3:03 register gets copied 3:04 into the current instruction register 3:11 the instruction effectively has now been 3:14 fetched from memory 3:16 just before we proceed to the decode 3:18 phase we now 3:19 increment the program counter so that 3:22 the address it contains 3:24 points to the address of the next 3:26 instruction which will need to be 3:30 executed 3:32 the instruction now being held in the 3:33 current instruction register 3:35 is ready to be decoded 3:39 now as we mentioned in the previous 3:41 video the instruction is made up of two 3:43 parts 3:44 we have the op code that's what it is we 3:47 need to do 3:50 and we have the operand what are we 3:53 going to do it to 3:55 now the operand could contain the actual 3:57 data 3:58 or indeed it could contain an address of 4:01 where the data is to be found 4:06 by decoding this instruction we can see 4:08 the operation we need 4:10 is a load operation so we need to load 4:14 the contents of memory location0101 4:18 into the cpus accumulator 4:25 in the exam a simple model will be used 4:27 to describe the 4:29 structure of any given instruction 4:32 you're not going to be expected to 4:34 define how an opcode is made up 4:36 but simply to interpret opcodes in the 4:39 given context of an exam 4:40 question in the example here 4:44 you can see there's a total of 16 4:46 different opcodes available 4:48 and this is because we're using four 4:50 bits for our representation 4:56 so now we've fetched the instruction and 4:59 we've decoded it so we know what we need 5:00 to do 5:01 we're finally ready to execute it 5:05 so we now send address 0101 5:08 to the memory dress register 5:13 now we're in the memory address register 5:15 we can finally send the address 5:18 down the address bus to main memory 5:24 this time we want to read the data 5:26 that's stored in memory 5:28 and so the control unit again sends a 5:30 read signal along the control bus 5:36 so main memories now receive an address 5:38 and a read signal 5:40 so the content stored at memory location 5:43 0101 5:44 can now be sent along the data bus back 5:46 to the cpu 5:47 and into the memory data register 5:54 finally the contents of the memory data 5:56 register are copied to the accumulator 5:59 and this is one of a number of general 6:00 purpose registers found in the cpu 6:04 this first instruction is now complete Branching 6:11 so what does this program actually do 6:14 you should be able to work it through 6:16 carefully and figure it out 6:19 we're now pointing instructions zero 6:21 zero zero one in the program counter 6:23 and we're ready to fetch the second 6:25 instruction 6:27 at the end of this video we're gonna 6:29 provide you with the answer 6:34 so let's talk a second about programs 6:37 that branch 6:40 on the left here we have a very simple 6:42 piece of pseudo code 6:44 line zero says first execute this line 6:46 of code 6:47 line 1 now execute this line and then 6:50 line 2 says 6:52 if the age is greater than 18 then 6:56 we're going to execute lines 3 and 4 6:58 otherwise 6:59 we're going to execute lines six and 7:02 seven 7:03 so this program doesn't necessarily 7:05 follow strictly in sequence from line 7:07 zero through to seven there's a chance 7:10 here the program may branch and jump 7:14 around 7:16 so we're going to pretend that this 7:17 program has been loaded into memory 7:20 each line of code on the left here has 7:23 ended up 7:24 as a location in memory now this is not 7:27 strictly how this would happen in this 7:28 one-to-one way 7:29 but for the purpose of example it's 7:31 absolutely fine 7:35 so the program counter starts by 7:37 pointing to memory address zero 7:39 and we fetch the first instruction 7:41 decode it and execute it 7:44 it then updates and tells us the next 7:47 instruction 7:48 is zero zero zero one because remember 7:50 the program counter is being incremented 7:52 so we fetch it decode it and we execute 7:55 line one of our program 7:59 we then fetch line two which in binary 8:01 is one 8:02 zero 8:06 now at this point depending on what 8:10 happens during the execution 8:11 of line two the program may be required 8:15 to fetch line three from memory or 8:18 line five from memory 8:25 so let's look at how this actually works 8:27 because we've said the program counter 8:28 simply gets incremented 8:31 well in the current instruction register 8:33 we have an instruction with the op code 8:36 0 1 1 0. 8:41 now when we look this up in the decode 8:43 unit we discover that this 8:45 code means branch always 8:51 this replaces the value held in the 8:54 program counter 8:56 with the contents of the operand that's 8:58 the second part of the instruction 9:01 from the current instruction register so 9:03 this case 9:04 one zero zero one 9:09 now when the next fetch cycle begins the 9:12 program counter is obviously checked 9:14 and as its contents have been previously 9:16 updated to a new memory location 9:19 and not simply incremented the program 9:22 effectively is able to jump 9:24 around memory 9:28 so having watched this video you should 9:30 be able to answer the following key 9:32 question 9:33 how does a cpu work 9:39 okay so let's um answer the question we 9:41 posed 9:42 earlier what did that program actually 9:48 do 9:50 so this is the first fetch to code 9:53 execute cycle 9:55 and this is the one that we ran through 9:57 in detail earlier 9:58 it effectively loaded the contents of 10:01 the memory 10:02 stored at location location0101 10:05 into the accumulator in other words 10:08 the dna number 3 is moved 10:11 from memory into the cpu 10:18 we then proceed onto the second fetch 10:20 decode execute cycle 10:23 now this one adds the contents of memory 10:27 located at 0 1 1 0 10:30 to the current contents of the 10:32 accumulator 10:34 so in other words the dna number one 10:38 because that's what's stored at address 10:40 zero one one zero 10:43 is added to the number three that was in 10:45 the accumulator 10:46 the results are stored back over the 10:48 accumulator 10:49 so effectively we've done three plus one 10:53 equals four 10:58 the third fetch to code execute cycle 11:00 stores the contents which are in the 11:02 accumulator 11:03 into memory location zero one one one 11:07 and that's because the op code the first 11:09 part of this current instruction 11:10 zero zero one one is the command to 11:13 store when we look it up in the decoder 11:15 unit 11:16 so in other words the result of the 11:17 previous calculation three plus one 11:19 equals four 11:20 is now written back into main memory 11:28 the fourth fetch decode execute cycle 11:30 outputs the contents of the accumulator 11:33 remember they were copied into main 11:34 memory but they're still held in the 11:35 accumulator 11:37 so in this simple abstraction the number 11:40 four is now 11:41 output to the user so they can see the 11:43 result of the calculation 11:49 the fifth and final fetch code execute 11:51 cycle 11:52 brings a halt to the current program 11:58 so this very simple program which has 12:01 five 12:02 fetch decode execute cycles has 12:04 performed the calculation 12:06 three plus one is then stored the result 12:09 in main memory 12:10 and displayed the result four to the 12:12 user 12:13 and in a high-level language this may 12:15 look something very similar to the 12:17 following two lines of code 12:20 sum variable equals num1 plus num2 12:24 print sum to the user 12:27 so you can start to get an appreciation 12:29 here of how the high level code you 12:32 write actually ends up being fetched 12:34 decoded 12:35 and executed inside a processor 12:38 of course your processor is doing 12:40 billions and billions of these 12:42 operations a second 12:43 which when you think about it is really 12:45 very impressive 12:52 [Music] 13:03 you. make 10 questions for a standerd of a level
Chapter 7 - Review Data and Decision Making *Glow bus due at midnight, name and student number: answer questions using content in class People have created wonderful things for centuries, and management Management can be traced as far back as 500 bc when the ancient Sumerians used written records to improve government and business activities Why is it important to lean from the past Not to repeat our mistakes Classical management approaches Scientific management Administrative Principles Bureaucratic organisation Behavioural Management Approaches Follett’s Organizations as communities The Hawthorne studies Maslow’s theory of human needs Mcgregor’s Theory x and Theory Y Argyris Personality and organisation Modern Management foundations Organises as systems Contingency thinking Quality management Quantitative and analysis and tools Evidence-based management Contributions Frederick Taylor - Father of Scientific management He noticed that workers often did their jobs with wasted motions and without a constant approach. His resulted in inefficiency and low performance He believed the problem could be fixed if workers were taught to do their jobs in the best ways and ten were helped and guided by supervisors Four guiding principles of scientific management Rules of motion, standardized work and proper working conditions Select workers with the right abilities Train workers and give them incentives Support workers by planning and smoothing the way as they do their work Frank and Lillian Gilbreth Pioneered use of motitono studies as a management tool In one famous case, the gilbreaths cut down the number of motions used by bricklayers adn tripled their productivity Contributions from scientific management Make results-based compensation a performance incentive Carefully design jobs with efficient work methods Carefully select workers with the ability to perform the job Trian workers to execute activities to the best of their abilities Train supervisors to support workers so they can perform jobs to the best of their abilities Classical Management Adiminstative principle (Henro Fayol) 1919, after a career in French industry, Henri F published “adminisration Industrielle et Generale” (General and industrial management) in which we out like his views on the management of organiztion and workers Rules and duties in management Foresight - to complete a plan of action for the future Organization - To provide and mobilize resources to implement the plan Common- to lead, select and evaluate workers to get the best work toward the plan Coordination- to fit diverse efforts together and ensure information is shared and problems solved Control- to make sure things happen according to plan and to take necessary corrective action Classical management Bureacratic organiztion (Max Weber) Max weber (Bureaucrativ organization) - late 19th century German political economist who had a major impact in the fields of management and sociology Bureaucratic Organization An ideal, intentionally rational adn very efficient form of organization Based on the principles of logic, order and legitimate authority Characteristics of BO Clear division of labour Clear hierarchy of authority Formal rules and procedure Impersonality Careers based on merit What are some disadvantages of bureaucracy Takes a long time for problems to become solved bec there are procedures and there is a chain of people in command Having the power Rules have to follow Excessive paperwork or “red tape” Slowness in handling problems Rigidity in the face of shifting needs Resistance to change Employee apathy Behavioural Management Approaches (focus on understanding the elements that affect human behaviour in organisations) Follett’s Organizations as communites Mary park follett contributed to the transition from classical thinking inot behavioural management Groups and human cooperation Groups allow individuales too combine their talents for a greater good Organizations are cooperating “communites” of managers adn workers Managers job is to help people copperate and achive an integration of goals and intrests Forward-looking managment insight: Making every emploee an owner creates a sense of collective responsibility Prescursor of employrr ownership, profit sharing and gain sharing Buniess problems invovle a varity of inter realted factors Prescursor of systems thinking Private profits realtive to public good Precursor of managerial ethics and social respinsibility Hawthorne studies Took place at western electric chicago plan, a tran led by Harvards Elton Mayo set out to learn how econmic incentives and workplace conditions affected workers output Maing objective Intial study examined how ecomoin incentives adn physical conditions affected worker output (productivity) No consistent relationship found During experientmetn they had 2 groups The expertiant groups (impoved wokring ocnditions ) The control group ( no changes to original working conidtions) No consitant relationship found, perfomance in both groups increased even after removing incentives Social setting and human relations Concluded New “social setting” led workers to do good job Good “Human relations” = higher productivity The contect - The Great Depression (1929-1940) Employee attitudes and groups processes Osme thinsf satisifed some workers but not others People resticited output to adhere to groups norms (Avoid layoffs) Lessons from he hawthrone stufirs Social and human concerns are keys to prductivity Hawthrone effect - People who are singled out for special attention perform as expected Maslow’s Theory of human needs Human needs The work of psychologist Abraham Maslow in the area if human “needs,” also has had a major impact in the behavioual apporach to management Maslow’s hierarchy of human needs Self actualization needs Higherst level: need foe self fulfillment to grow and use abilites to fullest and most creative extent Esteem needs Needs fro esteem in eyes of others need for respect, prestige, recognition; need for self esteem, personal sense of competence, mastery Social needs Need for love, affection, sense of belongingness in ones relationship either other people Safett needs Need for security, protection and stability in teh events of day to day life Physiological needs Most basic of all human needs: need for biological maintence; food, water and phydical well being Principles Defict principle: A satidifed need is not a motivator of behaviour Progress principles: A need becomes a motivator once the preceding lower-level need is satisfied Both principles cease to operate at self actulilzation level McGregor’s Theories Thepry x assumes that workers; Dislike work Lack ambition Are irresponsible Resist change Prefer to be led Theoyry y assumes that workers are Willing to work Willing to accept responsibility Capable of self control Capable of self direction Imaginative and creative According to McGregor, Managers create: Self fulfilling prophecies Implications of Theory x and y Theory x managers: Create situations where workers become dependent, passive and reluctant Theory y managers create situations where workers respond with initiative and high performance Central to notions of empowerment and self management Argyris’s theory of adult personality Classical management principles and practices inhibit worker maturation and are inconsistent with the mature adult personality Management practices should accommodate the mature personality: Increasing task responsibility Increasing task variety Using participative decision making Modern Management Foundation Quantitative analysis and Tools Analytics: the use of large data bases and mathematics to solve problems and make informed decision using systematic analysis Organization as systems System Collection of interrelated parts that function together to achieve a common purpose Subsystem A smaller component of a larger system Open systems Organisations that interact with their environment Contingency thinking Tires to maths managerial responses with problem (situation) No “one best way” to manage The “appropriate way to to manage depends on the situations Quality management Qality anc competitive advantafe are linked Total quality managment (TQM) Comprehensive approach to contiou impovment on teh entire organization ISO certification Gloval quality management standards Refine and upgrade quality to meet ISO requirments Evidednce Based Managment Making management decision on “hard facts” about what really works
• There are two groups of animals which are important in agriculture. • The groups are domestic and wild animals. 1. Domestic animals • These are animals which are trained to live with people in their homes. • Some examples includes : Uses of domestic animals • Source of food, for example milk, eggs and meat. • For cultural purposes, for example paying lobola. • Some are used for transport and labour. • Domestic animals can also be a source of income. 2 . Wild animals • These are animals which are found in game reserves and in the forests • They are also called game animals. • Examples of wild animals are: Uses of wild animals • Some of the wild animals give us meat, hides and ivory. • Wild animals attract visitors from other countries, so the country gets money. Wednesday 06 September 2023 Exercise: Domestic animals 1. What is a domestic animal? [2] 2. What is a wild animal? [2] 3. Name any 4 domestic animals that you know. [4] 4. State any 2 uses of domestic animals. [2] 5. Name any 3 wild animals that you know. [3] 6. Give 2 uses of wild ani mals. [2] 7. Wild animals can also be called animals. [1] • Animals, like human beings need good food to help them to grow and reproduce. • The main sources of food for animals include stock feeds, pastures, veld grass, crop remains and cereal grains. • These foods contain the most needed essential nutrients. Nutrient Function carbohydrates Gives energy Fats Give energy and warmth Proteins Helps in growth and repair of body parts Minerals Help in the formation of bones and teeth Vitamins Help develop good sight, improve fertility and help animals fight diseases Water Transports food in the body, cools the body and remove waste from the body. • Livestock are domesticated animals that are kept for food, use or for sale. • Small livestock has many uses. • They are a good source of food. • They also give us manure to use in gardens. • We get clothes and medicine as well from small livestock • Examples of small livestock are rabbits, sheep, goats and all form of poultry Poultry • All animals that are kept by farmers which have wings and feathers and lay eggs are called poultry. • They are a good source of white meat, eggs and manure. • They are also a source of income when we well them and their products. • Poultry includes chicken, guinea fowl, ducks, turkey, pigeons and quail birds. Rabbits • Rabbits have 3 known uses which are: They are kept for meat Kept for pelts. (pelt is animal skin used to make blankets, hats and jackets) They are used at agricultural shows • Rabbits are cheap to buy, easy to keep and feed. • They take about 4 months to mature. • Rabbits are fed using green vegetables and rabbit pellets. Wednesday 20 September 2023 Small livestock 1. Give 3 examples of small livestock. [3] 2. State 3 things that are provided by small livestock. [3] 3. What are the 2 uses of rabbits? [2] 4. Pelts are used to make _________________ [1] 5. State any 4 examples poultry. [4] 6. Rabbits take ___________ months to mature. [1] 7. What is poultry? • Apiculture is the keeping of bees in order for them to produce honey for sale. • Apiculture is very important because: (i) Provides honey - a valuable nutritional food (ii) Provides bees wax - which has many uses in industry Uses of wax For making candles Polish furniture Make crayons Prevent tools from rusting (iii) Honey bees are excellent pollinating agents, thus increasing agricultural yields. BEE COLONY Inhabitants of the bee colony and their roles • A honey bee colony typically consists of three kinds of adult bees: workers, drones and the queen 1. Workers • Workers are the smallest and constitute the majority of bees occupying the colony. • They do not lay eggs. • Workers have specialized structures, such as brood food glands, scent glands, wax glands, and pollen baskets. • these allow them to perform all the labors of the hive. Roles of the worker bees they forage for nectar, pollen, water, and plant sap. They clean and polish the cells. feed the brood. care for the queen. remove debris. handle incoming nectar. build beeswax combs. guard the entrance. 2. Drones • Drones (male bees) are the largest bees in the colony. • They are generally present only during late spring and summer. • The drone’s head is much larger than that of either the queen or worker. • Drones have no stinger, pollen baskets, or wax glands. • Their main function is to mate with the queen. 3 . Queen • Each colony has only one queen. • The queen is the largest of the bees in a bee colony. • The Queen Bee plays a vital role in the hive because she is the only female with fully developed ovaries. • She produces both fertilized and unfertilized eggs. • Queens lay the greatest number of eggs in the spring and early summer. • The queen also produce chemical scents that help regulate the unity of the colony. 1. What is apiculture? [2] 2. Give 3 reasons why apiculture is important in Zimbabwe. [3] 3. Name the 3 inhabitants of the bee colony. [3] 4. Briefly explain the roles of each inhabitant named in number 3. • Apart from using hand tools, farmers also use some farm implements and machinery to carry out their field work. • Machines help farmers do their work more easily and quickly. • The most common implements used by farmers to grow, harvest and transport their produces are: mouldboard plough Cultivator Scotch cart Harrow Planter Maize sheller combine harvesters Boom sprayers Disc harrow Spike toothed harrow KNAPSACK SPRAYER • Farming is a business. • Communal farmers grow crops and keep animal mainly for their own use. • If there is any extra they sell to get money. • Commercial farmers grow crops and keep animals for sale. • Crops and animals produced are called farm produce. • There are places were farmers have to sell their produce. • Farmers can take their produce to local markets. • A market is a place where buying and selling occurs. • Some of the local markets includes: A shopping centre A school A nearest bus stop A local village A school Local Grain Marketing Board depot (GMB) Types of farm produce Beef Fruits Mutton Eggs Vegetables Pork Milk Chicken Cereals/grains beans
How can we take responsible action on global problems?
What actions can we take to address climate change?
好的,根據您提供的表格 [NEW SOURCE],以下是表格中例句的中文意思: * **1. all** * **全部的**:**All** my friends were here with me. (我所有的朋友當時都在這裡。) * **全部**:**All** of us enjoyed the movie. (我們所有人都很喜歡這部電影。) * **都**:He got **all** wet. (他全身都濕透了。) * **2. along** * **沿著**:We walked **along** the river yesterday evening. (我們昨天傍晚沿著河邊散步。) * **帶……一起**:When my mother goes out, she takes my little brother **along**. (我媽媽外出時,會帶著我的小弟弟一起去。) * **3. angle** * **觀點**:We should look at the problems from different **angles**. (我們應該從不同的觀點來看待這些問題。) * **角度**:The picture is hanging at an **angle** of 45°. (這張畫以 45 度的角度懸掛著。) * **4. answer** * **答案**:Do you know the **answer** to the question? (你知道這個問題的答案嗎?) * **回答;回應**:Could you **answer** the phone for me? (你可以幫我接一下電話嗎?) * **5. back** * **後面**:She wrote her cellphone number down on the **back** of the paper. (她把她的手機號碼寫在紙的背面。) * **後面的**:Open the **back** door, please. (請打開後面的門。) * **回原處**:It’s time to go **back** home. (該回家了。) * **6. bat** * **蝙蝠**:Did you ever see a **bat** flying quickly in the sky at night? (你曾經看過蝙蝠在夜空中快速飛行嗎?) * **球棒**:Swing the **bat** higher. (把球棒揮高一點。) * **擊**:It’s your turn to **bat**. (輪到你打擊了。) * **7. bite** * **一口的量**:Jane took a **bite** of the guava. (珍咬了一口芭樂。) * **咬**:The dog **bit** the woman’s leg. (那隻狗咬了那個女人的腿。) * **8. book** * **書**:I’ve just started reading a **book** by Stephen King. (我剛開始讀一本史蒂芬·金的書。) * **預訂;預約**:They **booked** two seats at the theater. (他們在劇院預訂了兩個座位。) * **9. block** * **街區**:Nancy and I live on the same **block**. (南希和我住在同一個街區。) * **阻擋**:Those heavy boxes **blocked** my way to the restroom. (那些沉重的箱子擋住了我去洗手間的路。) * **10. bow** * **蝴蝶結**:David chose a gray **bow** tie to go with his black suit. (大衛選擇了一個灰色蝴蝶領結來搭配他的黑色西裝。) * **鞠躬**:The actor **bowed** to everyone before he left the stage. (那位演員在離開舞台前向大家鞠躬。) * **11. break** * **暫停;休息**:I’m tired. Can we take a **break**? (我累了。我們可以休息一下嗎?) * **分解**:These plastic forks are hard to **break** down. (這些塑膠叉子很難分解。) * **打破**:The glass is very expensive. Don’t **break** it. (這個玻璃很貴。不要打破它。) * **12. bright** * **晴朗的**:It’s a **bright** morning. Why not take a walk along the river? (這是個晴朗的早晨。何不沿著河邊散步呢?) * **明亮的**:The room isn’t **bright** enough. Let’s not read here. (這個房間不夠明亮。我們不要在這裡閱讀。) * **13. call** * **打電話**:I got a **call** from my old friend last night. (我昨晚接到我老朋友的電話。) * **打電話**:Tina **called** me last night. We talked a lot about music. (蒂娜昨晚打電話給我。我們聊了很多關於音樂的事。) * **呼喊**:Listen! Is that a **call** for help? (聽!那是求救的呼喊嗎?) * **呼喊**:Why did you **call** my name then? (那你當時為什麼喊我的名字?) * **14. camp** * **營隊**:Patrick joined a science **camp** this summer. (派屈克今年夏天參加了一個科學營隊。) * **露營**:They **camped** by the river yesterday. (他們昨天在河邊露營。) * **15. case** * **箱;盒**:The kids drank the whole **case** of Coke. (孩子們喝掉了一整箱可樂。) * **實例;情況**:The number of new **cases** of Covid-19 is growing. (新冠肺炎的新增病例數正在增加。) * **16. catch** * **接球**:Nice **catch**! My good dog. (接得好!我的好狗狗。) * **罹患(病)**:My head hurts. I may **catch** a cold. (我頭痛。我可能感冒了。) * **抓住**:I didn’t **catch** the ball. (我沒有接到那個球。) * **17. change** * **零錢;找零**:I think you’ve given me the wrong **change**. (我想你找錯錢了。) * **改變;交換**:The leaves **change** (in color) from green to red in the fall. (秋天時,樹葉的顏色從綠色變成紅色。) * **18. clean** * **打掃;清理**:Tom **cleans** the toilet once a week. (湯姆一週打掃一次馬桶。) * **乾淨的**:The water isn’t **clean**. Don’t drink it. (這水不乾淨。不要喝。) * **19. close** * **關;闔**:**Close** your books, students. Let’s have a pop quiz. (同學們,把你們的書闔上。我們要進行隨堂測驗。) * **靠近地**:Jane sat **close** to her husband at the party. (在派對上,珍緊挨著她的丈夫坐著。) * **20. cold** * **感冒**:I had a **cold** a week ago. (我一個星期前感冒了。) * **寒冷的**:It was **cold** last night. (昨晚很冷。)
Personal Cleanliness is a way of taking good care of our body. THE FOLLOWING ARE WAYS WE CAN TAKE CARE OF DIFFERENT PARTS OF THE BODY. 1.CARE OF THE HAIR ON THE HEAD: (a)Wash the hair with shampoo or soap and water at least twice a month for girls and daily for the boys (b). Apply hair cream on the hair after drying. (c) Comb or brush the hair properly after washing. 2.CARE OF THE EYES: (a) Always use clean water to wash your face and eyes and wipe them with a clean towel. (b) Clean your eyes with a clean handkerchief. (c) Do not use dirty hands to clean your eyes. (d)Do not look directly at the bright light from the sun, because it could damage them. (e) Do not read in dim or poor light such as candles. (f)Do not read under the sun. 3.CARE OF THE NOSE: (a) Do not use your fingers to clean your nostrils. (b)You must not allow people to hit your nose so as to avoid nose bleeding. (c) Do not poke or pick your nose with sharp objects. (d) Do not put beads into your nose. 4.CARE OF THE TONGUE AND TEETH: (a) By brushing our tongue and teeth twice daily. (b) Do not break hard objects such as bones or hardnuts with your teeth. (c) Do not open bottles with your teeth. (d) Brush your mouth with toothbrush and toothpaste or chewing stick. (e)Do not remove food particles with needles or pins from between the teeth.