Which of the following is a real time embedded system? Justify your answer (a) Ceiling Fan (b) Microwave Oven (c) Television Set (d) Desktop Key Board (e) Digital Camera

Distributed under Creative Commons Attribution-ShareAlike - CC BY-SA. 

1 Answer

Answer :

(b) and (e) are embedded systems 

(a) Ceiling Fans: These are not programmable. 

(b) & (e) obey all definitions of Embedded Systems such as (i) Working in Real Time (ii) Programmable (iii) A number of systems coexist on a single platform to discharge one function(single functioned) 

(c) Television Set: Only a small part of it is programmable. It can work without being programmable. It is not tightly constrained. 

(d) Desktop Keyboard: Though it has a processor normally it is not programmable



Definition of Real Time Systems 
An operation within a larger dynamic system is called a real-time operation if the combined reaction- and operation-time of a task operating on current events or input, is no longer than the maximum delay allowed, in view of circumstances outside the operation. The task must also occur before the system to be controlled becomes unstable. A real-time operation is not necessarily fast, as slow systems can allow slow real-time operations. This applies for all types of dynamically changing systems. The polar opposite of a real-time operation is a batch job with interactive timesharing falling somewhere in between the two extremes. Alternately, a system is said to be hard real-time if the correctness of an operation depends not only upon the logical correctness of the operation but also upon the time at which it is performed. An operation performed after the deadline is, by definition, incorrect, and usually has no value. In a soft real-time system the value of an operation declines steadily after the deadline expires. 
Embedded System 
An embedded system is a special-purpose system in which the computer is completely encapsulated by the device it controls. Unlike a general-purpose computer, such as a personal computer, an embedded system performs pre-defined tasks, usually with very specific requirements. Since the system is dedicated to a specific task, design engineers can optimize it, reducing the size and cost of the product. Embedded systems are often mass-produced, so the cost savings may be multiplied by millions of items. 

Version 2 EE IIT, Kharagpur

Related questions

Description : Distributed under Creative Commons Attribution-ShareAlike - CC BY-SA.

Last Answer : Structure and Design Instructional Objectives  After going through this lesson the student will  Learn more about the numerous day-to-day real time embedded systems  Learn the ... data such as phone numbers, calendars information, games etc.  Version 2 EE IIT, Kharagpur

Description : Distributed under Creative Commons Attribution-ShareAlike - CC BY-SA.

Last Answer : Common Architecture of Real Time Embedded Systems  Unlike general purpose computers a generic architecture can not be defined for a Real Time Embedded Systems. There are as many architecture as the ... monitored through an ADC interfaced through this CODEC. Version 2 EE IIT, Kharagpur

Description : Distributed under Creative Commons Attribution-ShareAlike - CC BY-SA.

Last Answer : Lesson 1 Introduction to Real Time Embedded Systems Part I  Example, Definitions, Common Architecture  Instructional Objectives After going through this lesson the student would be able to  Know what an ... as a Real Time Embedded System (RTES)  Version 2 EE IIT, Kharagpur

Description : Explain the need to consider following factors in design matrix of embedded system: (i) Processor (ii) Memory (iii) Power (iv) Non- recurring engineering cost.

Last Answer : 1. Processor: Selection of processor depends upon amount of processing power and the register width required. Powerful 8bit, 16 bit, 32 bit & 64bit processors are available. The clock speed ... system is designed any number of units can be manufactured without incurring any additional design cost.

Description : State four advantages of embedded system. 

Last Answer : 1) Design and Efficiency 2) Cost 3) Accessibility 4) Maintenance 5) Redundancies

Description : Draw the block diagram of an embedded system and describe the hardware units of an embedded system.

Last Answer : OR Explanation: The embedded system consist of different components embedded into it as follows: 1) Embedded Processor 2) Power supply , reset and Oscillator circuits 3) System timers 4) ... to store data and program. Following are types of memories used in embedded system.

Description : Distributed under Creative Commons Attribution-ShareAlike - CC BY-SA.

Last Answer : Components of an Embedded System   By this time we know where are our Embedded Systems and what makes them stand out from other systems like Calculators, Desktop Computers, and our Old Television ... account the technical as well as economic considerations.  Version 2 EE IIT, Kharagpur

Description : List out four types of embedded systems.

Last Answer : 1. Small Scale Embedded Systems 2. Medium Scale Embedded Systems 3. Sophisticated Embedded Systems 4. Stand Alone Embedded Systems 5. Real Time Embedded Systems 6. Networked Embedded Systems 7. Mobile Embedded Systems

Description : Distributed under Creative Commons Attribution-ShareAlike - CC BY-SA. 

Last Answer : Many embedded systems must continually react to changes in the system's environment and must compute certain results in real time without delay. For example, a car's cruise controller continually monitors and ... user, typically does not result in a system failure.  Version 2 EE IIT, Kharagpur

Description : What are the essential tight constraint/s related to the design metrics of an embedded system? A. Ability to fit on a single chip B. Low power consumption C. Fast data processing for real-time operations D .All of the above

Last Answer : D .All of the above

Description : What are the essential tight constraint/s related to the design metrics of an embedded system? A. Ability to fit on a single chip B. Low power consumption C. Fast data processing for real-time operations D .All of the above

Last Answer : D .All of the above 

Description : Distributed under Creative Commons Attribution-ShareAlike - CC BY-SA.

Last Answer : The time required to develop a system to the point that it can be released and sold to customers. The main contributors are design time, manufacturing time, and testing time. This metric has become ... early can make a big difference in the system's profitability. Version 2 EE IIT, Kharagpur

Description : Explain the term ‘Deadlock’. State reason of occurance.

Last Answer : A deadlock is a situation where in two or more competing actions are each waiting for the other to finish, and thus neither ever does.  * Assume thread/process T1 has exclusive access to resource R1. ... P1 to Pn P1 waiting for the resource held by P2, P2 waiting for resource held by P3 etc.

Description : Compare synchronous and asynchronous communication.

Last Answer : Synchronous communication Asynchronous communication Single clock is used for both transmitter and receiver Two different clocks are used for both transmitter and receiver Data bits are transmitted ... Character is received at a any rate Less reliable More reliable

Description : Write a C language program to operate port 0 and port 2 as output port and port 1 and port 3 as input port.

Last Answer : #include void main (void ) { unsigned char X,Y P0=0X00; // P0 as output port P2=0X00;// P2 as output port P1=0XFF;//P1 as input port P3=0XFF;// P3 as input port while(1) { X= P1; Y=P3; P0=X; P2=Y; }//end of while }//end of main

Description : Compare features of PIC and AVR microcontrollers

Last Answer : Parameters PIC AVR Bus width 8/16/32-bit 8/32-bit Communication Protocols UART, USART, LIN, CAN, Ethernet, SPI, I2C UART, USART, SPI, I2C, (special ... Average Atmel Popular Microcontrollers PIC18fXX8, PIC16f88X, PIC32MXX Atmega8, 16, 32, Arduino Community

Description : Sketch pin-out diagram of LM35 and label its pin.

Last Answer :  pin-out diagram of LM35 and label its pin

Description : Develop a ‘C’ program to transfer the data from port P0 to port P1.

Last Answer : #include void main (void ) { unsigned char X; P0=0XFF; // P0 as input port P1=0X00;//P1 as output port while(1) //do forever { X = P0;//read port0 P1 = X;// output data to port1 }

Description : State two examples of RTOS.

Last Answer : 1. LynxOS. 2. OSE. 3. QNX. 4. RTLinux. 5. VxWorks. 6. Windows CE.

Description : State the use of MAX 232 in communication.

Last Answer : MAX 232 is line driver that converts from RS232 voltage levels to TTL voltage levels & vice versa in serial communication 

Description : State the methods of task synchronization. Describe semaphore with suitable example.

Last Answer : The methods of task synchronization are: Semaphore Message queue. Mutual exclusion.  Dead lock. Mailboxes. Message Queues. Semaphores: It is a system of sending message by using flags. Multiple concurrent threads of execution ...   signal(Sem);  }  in process P2  {  wait(Sem);  S2;  }

Description : Draw the labeled interfacing diagram to interface relay with 89C51 microcontroller.

Last Answer : the labeled interfacing diagram to interface relay with 89C51 microcontroller

Description : State four features of Zigbee.

Last Answer : Zigbee features (any4):- IEEE Standard 802.15.4 Frequency (GHz) 0.868, 0.915, 2.4 Maximum bit rate (Mbps) 0.250 or 250 Kbps, low bit rate Typical data throughput (Mbps) 0.2 ... Range (Meters) 10-100 Relative Power Consumption Very low Battery Life Months to years Network Size 64,000+ 

Description : State any four features of IDE.

Last Answer : Features of IDE 1) IDE normally consists of source code editor, a compiler, build automation tools and debugger. 2) It supports for defining a processor family and its version. 3) ... 4) Provides multiuser environment. 5) Supports conditional and unconditional break points. 6) Provides debugger.

Description : What is multicore processor? Describe in brief.

Last Answer : Multicore Processor: It is an integrated circuit in which two or more processors core have been packaged for enhanced performance, reduced power consumption and more efficient simultaneous ... Multicore processors will give the benefits to all software especially for multithreaded program.

Description : Distributed under Creative Commons Attribution-ShareAlike - CC BY-SA.

Last Answer : Hard drives have two kinds of components: internal and external. External components are located on a printed circuit board called logic board while internal components are located in a sealed chamber called HDA or Hard ... that a Hard Disk Drive is an RTES.  Version 2 EE IIT, Kharagpur 

Description : Distributed under Creative Commons Attribution-ShareAlike - CC BY-SA.

Last Answer : The Performance Design Metric Performance of a system is a measure of how long the system takes to execute our desired tasks. The two main measures of performance are:  Latency or ... the available processors rather than going for a custom design.  Version 2 EE IIT, Kharagpur 

Description : Distributed under Creative Commons Attribution-ShareAlike - CC BY-SA.

Last Answer : Design Metrics  A Design Metric is a measurable feature of the system's performance, cost, time for implementation and safety etc. Most of these are conflicting requirements i.e. optimizing one ... test circuitry to check that manufacturing was correct.  Version 2 EE IIT, Kharagpur

Description : Distributed under Creative Commons Attribution-ShareAlike - CC BY-SA. 

Last Answer : Manufacturer  Model:  Network Types:  EGSM/ GSM /CDMA  Form Factor: The industry standard that defines the physical, external dimensions of a particular device. The size, configuration, and other specifications used ...   Speaker  Phone:  USB:  Vibrate: Version 2 EE IIT, Kharagpur

Description : Distributed under Creative Commons Attribution-ShareAlike - CC BY-SA. 

Last Answer : Five advantages:  1. Smaller Size  2. Smaller Weight  3. Lower Power Consumption  4. Lower Electromagnetic Interference  5. Lower Price  Five disadvantages  1. Lower Mean Time Between Failure  ... Obsolesce  4. Unmanageable Heat Loss  5. Difficult to Design  Version 2 EE IIT, Kharagpur

Description : Distributed under Creative Commons Attribution-ShareAlike - CC BY-SA.

Last Answer : Definitions  Now we are ready to take some definitions  Real Time  Real'-time usually means time as prescribed by external sources For example the time struck by clock (however ... the computer user, typically does not result in a system failure.   Version 2 EE IIT, Kharagpur

Description : Why solar system is preferred now a days ? Justify your answer. 

Last Answer : Since availability of fossil fuels like coal are limited in future so there is more importance of solar power in the energy deficient because of following advantages of solar power Fuel is ... .  10. solar system technology are ideally suited to distributed applications ( Decentralized system)

Description : What is majoritarianism? Is it wrong if a majority community in a country rules? Give reasons to justify your answer -Democratic 10th

Last Answer : A belief that the majority community should be able to rule a country in whichever way it wants, by disregarding the wishes and needs of the minority is majoritarianism. Yes, it is wrong if ... such inequalities sometimes takes the path of conflict and defiance of State power as in Sri Lanka.

Description : Do you think that resources are free gifts of nature as is assumed by many ? Justify your answer with any three suitable arguments. -SST 10th

Last Answer : They are not free gifts of nature as : (i) Resources are a function of human activities, (ii) Human beings themselves are essential components of resources. (iii) They transform material ... natural resource but river become a resource when its water is used for irrigation or power production.

Description : “The First World War was the first modern industrial war”. Justify the answer. -SST 10th

Last Answer : The first modern industrial war. It saw the use of machine guns, tanks, aircraft, chemical weapons, etc. on a massive scale. These were all increasingly products of modem large-scale industry.

Description : Do democracies lead to a just distribution of goods and services. Justify your answer. -SST 10th

Last Answer : Democracies are based on political equality. All citizens have equal right in electing representatives. This is not so in the economic field. Economic equality come by the equitable distribution of wealth, ... difficult even to meet the basic needs of life like food, shelter, health and education.

Description : development for one may be the destruction for others. justify your answer with the help of suitable examples -SST 10th

Last Answer : ' development of one may be destruction for others. this statement is true. FOR EXAMPLE - a builder took a contract of constructing a dam over a river. the river provided water for ... been shown that construction of the dam was development for the builders but destruction for the farmers.

Description : development for one may be the destruction for others. justify your answer with the help of suitable examples -SST 10th

Last Answer : 'This answer was deleted by our moderators...

Description : Indiscriminate use of resources has lead to numerous problems. Justify your answer -SST 10th

Last Answer : 'This answer was deleted by our moderators...

Description : If a plant is releasing carbon dioxide and taking in oxygen during the day, does it mean that there is no photosynthesis occurring ? Justify your answer. -Science

Last Answer : When photosynthesis occurs during the day, the carbon dioxide released by plants by respiration is all used up and not released. Similarly, some of the oxygen produced during photosynthesis is used up in ... and taking in oxygen even during the day, it means that no photosynthesis is taking place.

Description : Let x be rational and y be irrational. Is xy necessarily irrational? Justify your answer by an example. -Maths 9th

Last Answer : No, (xy) is necessarily an irrational only when x ≠0. Let x be a non-zero rational and y be an irrational. Then, we have to show that xy be an irrational. If possible, let xy be a rational number. Since ... wrong. Hence, xy is an irrational number. But, when x = 0, then xy = 0, a rational number.

Description : State whether the following statements are true or false ? Justify your answer. -Maths 9th

Last Answer : (i) False, here √2 is an irrational number and 3 is a rational number, we know that when we divide irrational number by non-zero rational number it will always give an irrational number. (ii) False, ... in the form p/q, q ≠0. p,q both are integers and these numbers are called irrational numbers.

Description : Which of the following expressions are polynomials? Justify your answer, -Maths 9th

Last Answer : Following expressions are polynomials .

Description : Write whether the following statements are true or false. Justify your answer. ’ -Maths 9th

Last Answer : (i) False, because a binomial has exactly two terms. (ii) False, because every polynomial is not a binomial . e.g., (a) 3x2 + 4x + 5 [polynomial but hot a binomial] (b) 3x2 + 5 [polynomial and also a binomial] (Hi ... = x4 + 2 + (-x4 + 4x3 + 2x) = 4x3 + 2x + 2 which is not a polynomial of degree 4.

Description : Write whether the following statements are true or false? Justify your answer. -Maths 9th

Last Answer : (i) False, since the ordinate of the point (3, 0) is zero. So, the point lies on X-axis. (ii) False, because in point (1, -1) x-coordinate is positive and y-coordinate is negative, so it lies ... -axis is 2 units. (v) True, because in a point (-1, 7) abscissa is negative and ordinate is positive.

Description : For what value of x + y in figure will ABC be a line? Justify your answer. -Maths 9th

Last Answer : For ABC to be a line, the sum of the two adjacent angles must be 180° i.e.,x + y = 180°.

Description : Let x be rational and y be irrational. Is xy necessarily irrational? Justify your answer by an example. -Maths 9th

Last Answer : No, (xy) is necessarily an irrational only when x ≠0. Let x be a non-zero rational and y be an irrational. Then, we have to show that xy be an irrational. If possible, let xy be a rational number. Since ... wrong. Hence, xy is an irrational number. But, when x = 0, then xy = 0, a rational number.

Description : State whether the following statements are true or false ? Justify your answer. -Maths 9th

Last Answer : (i) False, here √2 is an irrational number and 3 is a rational number, we know that when we divide irrational number by non-zero rational number it will always give an irrational number. (ii) False, ... in the form p/q, q ≠0. p,q both are integers and these numbers are called irrational numbers.

Description : Which of the following expressions are polynomials? Justify your answer, -Maths 9th

Last Answer : Following expressions are polynomials .

Description : Write whether the following statements are true or false. Justify your answer. ’ -Maths 9th

Last Answer : (i) False, because a binomial has exactly two terms. (ii) False, because every polynomial is not a binomial . e.g., (a) 3x2 + 4x + 5 [polynomial but hot a binomial] (b) 3x2 + 5 [polynomial and also a binomial] (Hi ... = x4 + 2 + (-x4 + 4x3 + 2x) = 4x3 + 2x + 2 which is not a polynomial of degree 4.