web analytics

What are CISC & RISC? What are differences between CISC and RISC?

The instruction set or the instruction set architecture (ISA) is the set of basic instructions that a processor understands. The instruction set is a portion of what makes up an architecture. Read More: Define Instruction Set Architecture. What are the main objectives of ISA in computer systems. Two initial types of instruction set architecture are … Read more

Explain Software Design & Implementation Activity

explain-software-design-implementation-activity

Software Design & Implementation Activity:

The implementation stage of software development is the process of converting a system specification into an executable system. A software design is a description of the structure of the software to be implemented, the data which is part of the system, the interfaces between system components and, sometimes, the algorithms used. Designers design step by step to meet the finished design to be implemented in programming to crease an executable system out of the specification.  

Read more

What is Software Specification Activity? Describe the four main phases of software specification activity?

software-specification-activity-with-4-phases

Software Specification:

Software specification or requirements engineering is one of the four activities of software process. In software specification, the task is to identifying and defining the services to be provided from the system and what are the constraints in the operations of the system and in the development of the system. This stage, among the four activities of software process, is critical enough as this is the first stage of the process and defines the whole system. Missing or misunderstanding requirements, leaving gaps or errors will ultimately cause higher development cost, time and rework.  

Read more

Describe the Waterfall Software Process Model with Advantages and Disadvantages

waterfall-software-process-model-with-advantages-disadvantages

Waterfall Software Process Model:

Waterfall model software process model was derived from general system engineering process and it is so called as the stages go top to bottom and while one stage of the process is complete it moves to the next stage and not supposed to come back to any previous stage. Shortly, the operation enters an stage if and only if the previous stage, if any, completes. However, in practice, things doesn’t happen this way.

Read more

What is control unit? What are the functions of control unit?

what is control unit and what are the functions of control unit

Control Unit

Control unit co-ordinates the transfer of data between registers of CPU or microprocessor and ALU. Control unit serves the instructions for ALU. Along with this, control unit, as its name implies, controls every other parts of the machine, their co-ordinations, traffic etc.  

Read more

Discuss the organization and functions of ALU or Arithmetic & Logic Unit

Arithmetic and Logic Unit (ALU): Arithmetic and Logic Unit is a like a calculator to a computer. ALU performs all arithmetic operations along with decision making functions. In modern CPU or Microprocessors, there can be more than one integrated ALU to speed up arithmetical and logical operations, such as; integer unit, floating point unit etc. … Read more

What is Microprocessor? What are the functions of microprocessor?

What is Microprocessor. What are the functions of microprocessor

Microprocessor

A type of computer processors that incorporates the functions of a computer’s center processing unit (CPU) onto a single integrated circuit is called a microprocessor. A microprocessor is a VLSI (Very Large Scale Integration) Silicon Chip. Microprocessor accepts digital or binary data, processes it according to instructions stored in it’s memory and provides results as output.  

Read more

What is CPU in computer? What are the functions of CPU in computer?

CPU (Central Processing Unit) in computer: CPU or central processing unit in computer is an electronic circuitry that carries out the instruction given by a computer program. CPU in computer execute instruction by performing basic arithmetic, logical, control and I/O operations as required per instruction. CPU in computer is considered to be the brain of … Read more

What is Tree in Data Structure? Explain different types of trees.

Tree:  Data frequently contain a hierarchical relationship between various elements. The data structure which reflects this relationship is called a rooted tree graph or simply a tree. Among different types of data structures in practice, tree is very important to store and manipulate data with complex relationship. This is sometimes like the properties of an … Read more

C++ Program (Source Code) for Priority Scheduling CPU Scheduling Algorithm

Priority Scheduling: In operating systems, tasks that are queued to be processed go through different scheduling algorithms in different operating systems. Priority Scheduling is one of them. Priority scheduling is like shortest job first except that the next job to process is selected not by the amount of time it will take, but by the … Read more