All Exams  >   Computer Science Engineering (CSE)  >   Embedded Systems (Web)  >   All Questions

All questions of Design of Embedded Processors for Computer Science Engineering (CSE) Exam

Which of the following is approximated during hardware/software partitioning, during task-level concurrency management?
  • a)
    scheduling
  • b)
    compilation
  • c)
    task-level concurrency management
  • d)
    high-level transformation
Correct answer is option 'A'. Can you explain this answer?

Amrutha Sharma answered
Explanation: The scheduling is performed in several contexts. It should be approximated with the other design activities like the compilation, hardware/software partitioning, and task-level concurrency management. The scheduling should be precise for the final code.

Which of the following can reduce the loop overhead and thus increase the speed?
  • a)
    loop unrolling
  • b)
    loop tiling
  • c)
    loop permutation
  • d)
    loop fusion
Correct answer is option 'A'. Can you explain this answer?

Kiran Reddy answered
Explanation: The loop unrolling can reduce the loop overhead, that is the fewer branches per execution of the loop body, which in turn increases the speed but is only restricted to loops with a constant number of iteration. The unrolling can increase the code size.

Which memories are faster in nature?
  • a)
    RAM
  • b)
    ROM
  • c)
    Scratch pad memories
  • d)
    EEPROM
Correct answer is option 'C'. Can you explain this answer?

Arpita Gupta answered
Explanation: As the memory size decreases, it is faster in operation, that is the smaller memories are faster than the larger memories. The small memories are caches and the scratch pad memories.

Which activity is concerned with identifying the task at the final embedded systems?
  • a)
    high-level transformation
  • b)
    compilation
  • c)
    scheduling
  • d)
    task-level concurrency management
Correct answer is option 'D'. Can you explain this answer?

Mohit Unni answered
Task-level concurrency management is the activity concerned with identifying the task at the final embedded systems. It plays a crucial role in optimizing the performance and efficiency of embedded systems by effectively managing the execution of multiple tasks.

Embedded systems are computer systems designed to perform specific functions within larger systems. They are typically integrated into other devices and operate with limited resources, such as memory, processing power, and energy. As a result, efficient task management is essential to ensure the smooth operation of these systems.

Task-level concurrency management involves the following steps:

1. Task identification: This step involves identifying the individual tasks or processes that need to be executed within the embedded system. Each task represents a specific function or operation that contributes to the overall system functionality.

2. Task prioritization: Once the tasks are identified, they need to be prioritized based on their importance and urgency. Some tasks may have higher priority than others, and their execution should be given precedence to ensure critical operations are performed in a timely manner.

3. Task scheduling: Task scheduling involves determining the order in which tasks will be executed. This step takes into account the task priorities and the availability of system resources. The scheduler allocates system resources, such as CPU time and memory, to each task based on their priority and requirements.

4. Concurrency management: Concurrency management ensures that multiple tasks can be executed simultaneously or in parallel, taking advantage of the system's processing capabilities. This may involve techniques such as multitasking, where multiple tasks are executed concurrently by rapidly switching between them, or multiprocessing, where tasks are executed on separate processing units.

By effectively managing task-level concurrency, the embedded system can optimize resource utilization, minimize response times, and ensure efficient operation. It allows for the execution of multiple tasks in a coordinated manner, enabling the system to handle complex operations and meet real-time requirements.

In conclusion, task-level concurrency management is the activity concerned with identifying the tasks at the final embedded systems and managing their execution to ensure efficient operation and resource utilization.

Which of the following is the design in which both the hardware and software are considered during the design?
  • a)
    platform based design
  • b)
    memory based design
  • c)
    software/hardware codesign
  • d)
    peripheral design
Correct answer is option 'C'. Can you explain this answer?

Neha Mishra answered
Explanation: The software/hardware codesign is the one which having both hardware and software design concerns. This will help in the right combination of the hardware and the software for the efficient product.

 Which of the following is a meet-in-the-middle approach?
  • a)
    peripheral based design
  • b)
    platform based design
  • c)
    memory based design
  • d)
    processor design
Correct answer is option 'B'. Can you explain this answer?

Meet-in-the-middle approach in computer science:

The meet-in-the-middle approach is a technique used in computer science and cryptography to optimize algorithms and reduce the time complexity of certain problems. It involves breaking down a problem into two subproblems and finding solutions for each subproblem separately. The solutions from both subproblems are then combined to obtain the final solution for the original problem.

Platform based design:

Platform-based design refers to the approach of designing a system or software by utilizing pre-existing platforms or frameworks. It involves using a set of tools, libraries, and APIs provided by the platform to develop the desired functionality. This approach reduces development time and effort by leveraging the existing infrastructure and components.

Memory based design:

Memory-based design refers to the approach of designing a system or software by optimizing memory usage and access patterns. It involves analyzing the memory requirements of the system and designing data structures and algorithms that minimize memory usage and maximize performance. This approach is particularly important in resource-constrained environments where memory usage is a critical factor.

Processor design:

Processor design refers to the process of designing the central processing unit (CPU) of a computer or other electronic device. It involves designing the microarchitecture, instruction set architecture, and various components of the processor such as registers, datapaths, and control units. Processor design is a complex task that requires a deep understanding of computer architecture and performance optimization techniques.

Meet-in-the-middle approach:

The meet-in-the-middle approach is a technique that is used to optimize algorithms by dividing a problem into two subproblems and computing their solutions separately. The solutions from both subproblems are then combined to obtain the final solution. This approach is particularly useful when the problem can be decomposed into independent parts that can be solved separately and then merged.

Correct answer:

The correct answer is option 'B' - platform based design. This is because the meet-in-the-middle approach is not related to peripheral-based design, memory-based design, or processor design. It is a technique used to optimize algorithms, and platform-based design is a relevant concept in this context as it involves utilizing pre-existing platforms or frameworks to design a system or software. By leveraging the existing infrastructure and components provided by the platform, developers can reduce development time and effort, which aligns with the principles of the meet-in-the-middle approach.

 What do Index set L denotes?
  • a)
    processor
  • b)
    task graph node
  • c)
    task graph node type
  • d)
    hardware components
Correct answer is option 'C'. Can you explain this answer?

Puja Bajaj answered
Explanation: The index set is used in the IP or the integer programming model. The Index set KP denotes the processor, I denote the task graph nodes and the L denotes the task graph node type.

What does SPM stand for?
  • a)
    scratch pad memories
  • b)
    sensor parity machine
  • c)
    scratch pad machine
  • d)
    sensor parity memories
Correct answer is option 'A'. Can you explain this answer?

Gargi Sarkar answered
Explanation: The smaller memories provides faster access and consume less energy per access and SPM or scratch pad memories is a kind of small memory which access fastly and consume less energy per access and it can be exploited by the compiler.

 In which design activity, the loops are interchangeable?
  • a)
    compilation
  • b)
    scheduling
  • c)
    high-level transformation
  • d)
    hardware/software partitioning
Correct answer is option 'C'. Can you explain this answer?

Yashvi Das answered
Explanation: The high-level transformation are responsible for the high optimizing transformations, that is, the loops can be interchanged so that the accesses to array components become more local.

 Which model is based on precise measurements using real hardware?
  • a)
    encc energy-aware compiler
  • b)
    first power model
  • c)
    third power model
  • d)
    second power model
Correct answer is option 'A'. Can you explain this answer?

Krithika Gupta answered
Explanation: The encc-energy aware compiler uses the energy model by Steinke et al. it is based on the precise measurements of the real hardware. The power consumption of the memory, as well as the processor, is included in this model.

 What does API stand for?
  • a)
    address programming interfaces
  • b)
    application programming interface
  • c)
    accessing peripheral through interface
  • d)
    address programming interface
Correct answer is option 'B'. Can you explain this answer?

Maitri Yadav answered
Explanation: The platform-based design helps in the reuse of both the hardware and the software components. The application programming interface helps in extending the platform towards the software applications.

 Which of the following help to meet and prove real-time constraints?
  • a)
    simulator
  • b)
    debugger
  • c)
    emulator
  • d)
    compiler
Correct answer is option 'D'. Can you explain this answer?

Madhurima Iyer answered
Explanation: There are several reasons for designing the optimization and compilers and one such is that it could help to meet and prove the real-time constraints.

Which of the following is an important ingredient of all power optimization?
  • a)
    energy model
  • b)
    power model
  • c)
    watt model
  • d)
    power compiler
Correct answer is option 'B'. Can you explain this answer?

Anoushka Dey answered
Explanation: Saving energy can be done at any stage of the embedded system development. The high-level optimization techniques can reduce the power consumption and similarly compiler optimization also can reduce the power consumption and the most important thing in the power optimization are the power model.

What do FRIDGE stand for?
  • a)
    fixed-point programming design environment
  • b)
    floating-point programming design environment
  • c)
    fixed-point programming decoding
  • d)
    floating-point programming decoding
Correct answer is option 'A'. Can you explain this answer?

Meghana Rane answered
Explanation: Certain tools are available which are developed for the optimization programmes and one such tool is the FRIDGE or fixed-point programming design environment, commercially made by Synopsys System Studio.

Which loop transformation reduces the energy consumption of the memory systems?
  • a)
    loop permutation
  • b)
    loop tiling
  • c)
    loop fission
  • d)
    loop fusion
Correct answer is option 'B'. Can you explain this answer?

Rounak Chavan answered
Loop Tiling
Loop tiling, also known as loop blocking, is a loop transformation technique that divides the iteration space of a loop into smaller blocks or tiles. This helps in improving locality and reducing the energy consumption of memory systems. Here's how loop tiling reduces energy consumption:
- Improving Locality: By dividing the iteration space into smaller blocks, loop tiling increases the chances of reusing data that is already present in the cache. This reduces the number of cache misses and improves data locality, leading to lower energy consumption.
- Reducing Memory Accesses: Loop tiling reduces the number of memory accesses by operating on data within the smaller tiles. This minimizes the amount of data transferred between the processor and memory, resulting in lower energy consumption.
- Optimizing Data Layout: Loop tiling allows for better optimization of data layout in memory. By working with smaller tiles of data, it becomes easier to organize data in a way that reduces memory access times and energy consumption.
- Enhancing Parallelism: Loop tiling can also enable better exploitation of parallelism in the loop by breaking it down into smaller, more manageable chunks. This can lead to more efficient use of resources and reduced energy consumption.
Overall, loop tiling is a powerful technique for optimizing memory access patterns and reducing energy consumption in memory systems. By breaking down loops into smaller blocks, loop tiling can significantly improve the performance and efficiency of memory-intensive applications.

Which of the following helps in reducing the energy consumption of the embedded system?
  • a)
    compilers
  • b)
    simulator
  • c)
    debugger
  • d)
    emulator
Correct answer is option 'A'. Can you explain this answer?

Naina Sharma answered
Explanation: The compilers can reduce the energy consumption of the embedded system and the compilers performing the energy optimizations are available.

Which of the following allows the reuse of the software and the hardware components?
  • a)
    platform based design
  • b)
    memory design
  • c)
    peripheral design
  • d)
    input design
Correct answer is option 'A'. Can you explain this answer?

Advait Shah answered
Explanation: The platform design allows the reuse of the software and the hardware components in order to cope with the increasing complexity in the design of embedded systems.

Which edge provides the timing constraints?
  • a)
    timing edge
  • b)
    communication edge
  • c)
    timing edge and communication edge
  • d)
    special edge
Correct answer is option 'A'. Can you explain this answer?

Vaishnavi Kaur answered
Explanation: The codesign tool has 2 edges. They are timing edges and the communication edges. The timing edge provides the timing constraints.

 How can one compute the power consumption of the cache?
  • a)
    Lee power model
  • b)
    First power model
  • c)
    Third power model
  • d)
    CACTI
Correct answer is option 'D'. Can you explain this answer?

Navya Iyer answered
Explanation: The CACTI can compute the power consumption of the cache which is proposed by Wilton and Jouppi in the year 1996.

 What does Index set KH denotes?
  • a)
    processor
  • b)
    hardware components
  • c)
    task graph nodes
  • d)
    task graph node type
Correct answer is option 'B'. Can you explain this answer?

Prisha Sharma answered
Explanation: There is certain index set which is used in the IP or the integer programming model. The KH denotes the hardware component types.

 Which programming algorithm is used in the starting process of the FRIDGE?
  • a)
    C++
  • b)
    JAVA
  • c)
    C
  • d)
    BASIC
Correct answer is option 'C'. Can you explain this answer?

Explanation: The FRIDGE tool uses C programming algorithm in the initial stage and is converted to a fixed-C algorithm which extends C by two extends.

Which design activity helps in the transformation of the floating point arithmetic to a fixed point arithmetic?
  • a)
    high-level transformation
  • b)
    scheduling
  • c)
    compilation
  • d)
    task-level concurrency management
Correct answer is option 'A'. Can you explain this answer?

Ankita Bose answered
Explanation: The high-level transformation are responsible for the high optimizing transformations, that is, for the loop interchanging and the transformation of the floating point arithmetic to the fixed point arithmetic can be done by the high-level transformation.

 Which compiler is based on the precise measurements of two fixed configurations?
  • a)
    first power model
  • b)
    second power model
  • c)
    third power model
  • d)
    fourth power model
Correct answer is option 'C'. Can you explain this answer?

Madhurima Iyer answered
Explanation: The third model was proposed by Russell and Jacome in the year 1998 and is based on the precise measurements of the two fixed configurations.

In which loop transformation, a single loop is split into two?
  • a)
    loop tiling
  • b)
    loop fusion
  • c)
    loop permutation
  • d)
    loop unrolling 
Correct answer is option 'B'. Can you explain this answer?

Explanation: Many loop transformation are done for the optimization of the program and one such loop transformation is the loop fusion in which a single loop is split and the loop fission includes the merging of the two separate loops.

 Which of the following tool can replace the floating point arithmetic to fixed point arithmetic?
  • a)
    SDS
  • b)
    FAT
  • c)
    VFAT
  • d)
    FRIDGE
Correct answer is option 'D'. Can you explain this answer?

Kiran Reddy answered
Explanation: There are certain tools available which are developed for the optimization programmes and one such tool is the FRIDGE or fixed-point programming design environment, commercially made available by Synopsys System Studio. This tool can is used in the transformation program, that is the conversion of floating point arithmetic to the fixed point arithmetic. This is widely used in the signal processing.

What is the solution to the knapsack problem?
  • a)
    many-to-many mapping
  • b)
    one-to-many mapping
  • c)
    many-to-one mapping
  • d)
    one-to-one mapping
Correct answer is option 'D'. Can you explain this answer?

Soumya Pillai answered
Explanation: The knapsack problem is associated with the size constraints, that is the size of the scratch pad memories. This problem can be solved by one-to-one mapping which was presented in an integer programming model by Steinke et al.

How many edges does the COOL use?
  • a)
    1
  • b)
    2
  • c)
    3
  • d)
    4
Correct answer is option 'B'. Can you explain this answer?

Vaishnavi Dey answered
Explanation: The codesign tool has 2 edges. These are timing edges and the communication edges. The timing edge provides the timing constraints whereas the communication edge contains the information about the amount of information to be exchanged.

Which part of the COOL input comprises information about the available hardware platform components?
  • a)
    target technology
  • b)
    design constraints
  • c)
    both behaviour and design constraints
  • d)
    behaviour
Correct answer is option 'A'. Can you explain this answer?

Navya Menon answered
Explanation: The codesign tool consists of three input parts which are described as target technology, design constraints and the behavior. Each input does different functions. The target technology comprises the information about the different hardware platform components available within the system.

 Which loop transformations have several instances of the loop body?
  • a)
    loop fusion
  • b)
    loop unrolling
  • c)
    loop fission
  • d)
    loop tiling
Correct answer is option 'B'. Can you explain this answer?

Arpita Gupta answered
Explanation: The loop unrolling is a standard transformation which creates several instances of the loop body and the number of copies of the loop is known as the unrolling factor.

 How many inputs part does COOL have?
  • a)
    2
  • b)
    4
  • c)
    5
  • d)
    3
Correct answer is option 'D'. Can you explain this answer?

Vaishnavi Dey answered
Explanation: The codesign tool consists of three input parts. These are target technology, design constraints and the behaviour and each input follows different functions. The target technology comprises the information about the different hardware platform components available within the system, design constraints are the second part of the input which contains the design constraints, and the behaviour part is the third input which describes the required overall behaviour.

The number of copies of loop is called as
  • a)
    rolling factor
  • b)
    loop factor
  • c)
    unrolling factor
  • d)
    loop size
Correct answer is option 'C'. Can you explain this answer?

Arka Dasgupta answered
Explanation: The number of copies of the loop is known as the unrolling factor and it is a standard transformation that produces instances of the loop body

What does the second part of the COOL input comprise?
  • a)
    behaviour and target technology
  • b)
    design constraints
  • c)
    behaviour
  • d)
    target technology
Correct answer is option 'B'. Can you explain this answer?

Megha Yadav answered
Explanation: The second part of the COOL input comprises of the design constraints such as the latency, maximum memory size, required throughput or maximum area for application-specific hardware.

 Which loop transformation can increase the code size?
  • a)
    loop permutation
  • b)
    loop fusion
  • c)
    loop fission
  • d)
    loop unrolling
Correct answer is option 'D'. Can you explain this answer?

Explanation: The loop unrolling can decrease the loop overhead, the fewer branches per execution of the loop body and this can increase the speed but is only restricted to loops with a constant number of iteration and thus the loop unrolling can increase the code size.

What do COOL stand for?
  • a)
    coprocessor tool
  • b)
    codesign tool
  • c)
    code tool
  • d)
    code control
Correct answer is option 'B'. Can you explain this answer?

Sankar Sarkar answered
Explanation: The COOL is the codesign tool which is one of the optimisation technique for partitioning the software and the hardware.

 Which edge of the COOL contains information about the amount of information to be exchanged?
  • a)
    regular edge
  • b)
    timing edge
  • c)
    communication edge
  • d)
    special edge
Correct answer is option 'C'. Can you explain this answer?

Sankar Sarkar answered
Explanation: The codesign tool has 2 edges and these are timing edges and the communication edges. The communication edge contains the information about the amount of information to be exchanged.

 What do the third part of the COOL input comprise?
  • a)
    design constraints and target technology
  • b)
    design constraints
  • c)
    behaviour
  • d)
    target technology 
Correct answer is option 'C'. Can you explain this answer?

Explanation: The codesign tool consists of three input parts and the third part of the COOL input describes the overall behaviour of the system. The hierarchical task graphs are used for this.

Who proposed the first power model?
  • a)
    Jacome
  • b)
    Russell
  • c)
    Tiwari
  • d)
    Russell and Jacome
Correct answer is option 'C'. Can you explain this answer?

Swara Basak answered
Explanation: Tiwari proposed the first power model in the year 1974. The model includes the so-called bases and the inter-instruction instructions.Base costs of the instruction correspond to the energy consumed per instruction execution when an infinite sequence of that instruction is executed. Inter instruction costs model the additional energy consumed by the processor if instructions change.

Chapter doubts & questions for Design of Embedded Processors - Embedded Systems (Web) 2025 is part of Computer Science Engineering (CSE) exam preparation. The chapters have been prepared according to the Computer Science Engineering (CSE) exam syllabus. The Chapter doubts & questions, notes, tests & MCQs are made for Computer Science Engineering (CSE) 2025 Exam. Find important definitions, questions, notes, meanings, examples, exercises, MCQs and online tests here.

Chapter doubts & questions of Design of Embedded Processors - Embedded Systems (Web) in English & Hindi are available as part of Computer Science Engineering (CSE) exam. Download more important topics, notes, lectures and mock test series for Computer Science Engineering (CSE) Exam by signing up for free.

Embedded Systems (Web)

47 videos|69 docs|65 tests

Signup to see your scores go up within 7 days!

Study with 1000+ FREE Docs, Videos & Tests
10M+ students study on EduRev