Learning Science

The Education You Want. The Attention You Deserve.

MCS-012 Computer Organisation and Assembly Language Programming Solved Assignment 2019-20

IGNOU BCA Solved Assignment 2019-20 IGNOU BCA 2nd Semester Solved Assignment 2019-20 IGNOU MCA Solved Assignment 2019-20

IGNOU BCA(2) / MCA(1) MCS-012 Computer Organisation and Assembly Language Programming Solved Assignment 2019-20

Course Code: MCS-012

Course Title: Computer Organisation and Assembly Language Programming

Assignment Number: MCA(2)/012/Assignment/ 2019-20

Maximum Marks: 100

Weightage: 25%

Last Dates for Submission: 15th October 2019 ( For July 2019 Session )

: 15th April 2020 ( For January 2020 Session )

There are four questions in this assignment, which carries 80 marks. Rest 20 marks are for viva voce. You may use illustrations and diagrams to enhance the explanations. Please go through the guidelines regarding assignments given in the Programme Guide for the format of presentation. Answers to each part of the question should be confined to about 300 words. Make suitable assumption, if any.

To get the full solved assignment of MCS-012 (2019-20), Click Here

IGNOU BCA Solved Assignment 2019-20

IGNOU BCA 2nd Semester Solved Assignment 2019-20

IGNOU MCA Solved Assignment 2019-20

Q1. (Covers Block 1)

(a) Please refer to Figure 4 of Unit 1 of Block 1 on page 11. Assuming the same machine to be used for execution of the following three consecutive instructions:

LOAD C: Loads the content of Memory location C into the Accumulator Register.

ADD B: Adds the content of memory location B in the Accumulator Register.

STORE A: Stores the content of Accumulator register AC in memory location A.

The following are the details about the instructions, data, and registers:

  • Each word of memory is of 32 bits in length. Each instruction is also 32 bits long.
  • The main Memory has 256 words.
  • The three consecutive instructions, as shown above, starts from memory location (1F)h ; A is at location (FD)h and contains a value (1000)h, B is at location (FE)h and contains a value (FF3B)h and C is at location (FF)h and contains a value (2A2F)h.
  • The AC, IR and MBR registers are of size 32 bits, whereas PC and MAR registers are of size 8 bits. The initial content of PC register is (1F)h

Draw the diagrams showing addresses and content of memory locations and Registers. Show how the content of memory locations and registers will change with the execution of the three instructions. Show all the addresses and values in hexadecimal notations. You must also perform the necessary arithmetic using signed 2’s complement notation and show the results indicating overflow, if any. Also explain the process of execution of the instructions.

(b) Perform the following conversion of numbers:

i) Decimal (3412454512) 10 to binary and hexadecimal ii) Hexadecimal (FEDCBA9) h into Octal. iii) String “In file name % means blank.” into UTF 8 iv) Octal (7766432) O into Decimal

(c) Assuming that inverse is represented as ‘, simplify the following Boolean functions:

F= ((A’ + B)’ + (A’+B’)’)’

(d) Simplify the following function using K-map: F(A, B, C, D) = Σ (0, 2, 6, 8, 10, 14)

Draw the circuit using NAND gates.

(e) Consider the Adder-Subtractor circuit as shown in Figure 3.15 page 76 of Block 1. Explain how this circuit will perform subtraction if the value of A is 1111 and B is 1100. You must list all the bit values including Cin and Cout and overflow condition.

(f) Explain the functioning of a 2× 1 Multiplexer. You must draw its truth table and explain its logic diagram with the help of an example input.

(g) Assume that a data value 1111 was received as 1011. Explain how use of Hamming’s Error-Correcting code will send this data value from source and correct error at the destination.

(h) Explain functioning of S-R flip flop with the help of logic diagram, characteristic table and excitation table.

(i) Explain the functioning of Asynchronous and Synchronous counter. Explain how they are different from each other.

(j) Differentiate between fixed point numbers and floating point numbers? Explain the representation for Zero in IEEE 754 single precision standard. Represent (-32.25)10 and (0.000125)10 in IEEE 754 single precision format.

Q2. (Covers Block 2)

(a) Reference Figure 2(b) on page 8 in Unit 1 of Block 2. Draw the Internal organisation of a 64×8 RAM. Also answer the following:

(i) How many data input and data output lines does this RAM needs? Explain your answer.

(ii)How many address lines are needed for this RAM? Give reason in support of your answer.

(b) A computer has 16 MB RAM and has a word size of 32 bits. It has cache memory having 16 blocks having a block size of 64 bits. Show how the main memory address (17F0AB) h will be mapped to cache address, if

(i) Direct cache mapping is used

(ii) Associative cache mapping is used

(iii)Two way set associative cache mapping is used.

You must clearly identify tag, index, main memory block address and offset, etc. in your answer.

(c) Explain the process of Interrupt handling and Return from interrupt with the help of a diagram. You must answer this question in your own words.

(d) Differentiate between the working of DMA and I/O processor. Explain the DMA configurations and I/O channel structures.

(e) Assume that a disk has 2000 tracks with each track having 256 sectors and each sector is of size 2M. A file having the name openUni.txt is of size 32 M. Assume that disk has 16 free – continuous clusters of 4 sectors each at different locations on the disk. How can this file be allotted space on the disk? Also, show the content of FAT after the space allocation to this file. You may make suitable assumptions. You may assume the cluster size as 4 sectors if needed.

(f) Explain the following giving their uses and advantages/disadvantages. (Word limit for answer of each part is 50 words ONLY)

(i) SCSI and IDE in the context of Interfaces

(ii) Scanner and its resolution

(iii) Scan codes in the context of keyboard

(iv) Access time on disks

(v) Virtual Memory

(vi) RAID level 0, 3 and 5

Q3. (Covers Block 3)

(a) A computer has a single-core processor having 16 General purpose registers and 4 additional special-purpose registers. The machine has 1MB RAM. The size of each register and memory word is 32 bits each. An instruction of the machine is of fixed length and is equal to one memory word. Each instruction of the machine can have two operands – one memory operand and second register operand (register operand can be in General purpose registers only). Memory operand either uses direct addressing or is an immediate operand; however, register operand can use either register direct or register indirect addressing. (Please note that if register operand uses indirect addressing, then stated register contains the address of the operand in the memory.) An instruction of a machine consists of operation code bits, two addressing mode bit, one register operand and one memory operand. The addressing mode bits specifies addressing mode as:

Addressing mode bit Register Operand Memory Operand
00 Indirect Direct
01 Direct Direct
10 Indirect Immediate Operand
11 Direct Immediate Operand

The special-purpose registers are – Program Counter (PC), Memory Address Register (MAR), Data Register (DR) and Flag registers (FR). The first register of the General purpose registers can be used as Accumulator Register. The size of Integer operands on the machine is 32 bits and it may be assumed to be equal to size of accumulator register. In order to execute instructions, the machine has an additional Instruction Register (IR) of size 32 bits as each instruction is of this size. Perform the following tasks for the machine.

(i) Design suitable instruction formats for the machine. Specify the size of different fields that are needed in the instruction format. Also, indicate how many different operations can be coded for this machine. Give reasons in support of your answer.

(ii) Put some valid values in registers and memory locations and demonstrate examples of different addressing modes of this machine.

(iii) Assuming that the instructions are first fetched to Instruction Register (IR) and memory operands is brought to DR register; indirect operand is brought to Accumulator register; and result of operation is stored in the Accumulator register; write and explain the sequence of micro-operations that are required for fetch and execute cycles of an instruction which performs subtraction of two operands having addressing mode bits as 00. Please note that one of the operands is Indirect Register Operand and the second is a direct memory operand. Make and state suitable assumptions, if any.

(b) Assume that you have a machine as shown in section 3.2.2 of Block 3 having the micro-operations as given in Figure 10 on page 62 of Block 3. Consider that R1 and R2 both are 8-bit registers and contain 11000011 and 11100101 respectively. What will be the values of select inputs, carry-in input, and result of operation (including carry out bit) if the following micro-operations are performed? (For each micro-operation you may assume the initial value of R1 and R2 as given above)

(i) Add R1 and R2 with carry

ii) Decrement R1

(iii)Shift right R1 twice

(iv) AND R1 and R2

(c) What is the role of Control Signal in execution of an Instruction? Block 3, page number 68-70, explains the timing sequence for execution of ISZ instruction. Explain execution of an ADDITION instruction with the help of micro-operations and timing sequences.

(d) What is the role of micro-programmed Control Unit? How a micro-program is executed? Explain with the help of a diagram.

(e) List and explain the characteristics of RISC machines. A RISC machine has 256 registers out of which 64 registers are reserved for the Global variables and 64 for Instruction related tasks. This machine has been designed to have 12 registers for storing three input parameters, three output parameters and six local variables for a function call. Explain with the help of a diagram, how the overlapped register window can be implemented in this machine for function/procedure calls. You must explain how the parameters will be passed when a function calls another function. How many levels of procedural calls, such a machine can support?

Q4. (Covers Block 4)

(a) Write a program using 8086 assembly Language (with proper comments) that accepts an input of ten characters from the keyboard and store them in the memory. It then converts all the lower case alphabets of this stored string to uppercase alphabets. Make suitable assumptions, if any.

(b) Write a program using 8086 assembly Language (with proper comments) that finds the sum and average of 10-byte numbers stored in two different arrays of size 5 each.

(c) Explain the following in the context of 8086 Microprocessor

(i) Use of Segment Registers

(ii) Use of Interrupts in Input/output

(iii).com and .exe programs

Contact Us:

Email Address: [email protected]

WhatsApp No.: 7980608289

Related Post

Previous years’ papers for bcs-12 (ignou), online class for ignou bcs 12, class 12 abta test paper 2021-22 geography page 115, one thought on “mcs-012 computer organisation and assembly language programming solved assignment 2019-20”, leave a reply cancel reply.

Your email address will not be published. Required fields are marked *

Save my name, email, and website in this browser for the next time I comment.

Koshe dekhi 5.1 Class 8

Koshe dekhi 20.3 class 8, koshe dekhi 20.2 class 8, koshe dekhi 20.1 class 8.

mcs 012 solved assignment 2019 20

  • +91-8882309876 24/7 Call and WhatsApp Support
  • Direct Payment
  • Request a Callback
  • Product Detail

mcs 012 solved assignment 2019 20

University 
Service Type
Course
Semester
Short Name or Subject Code
Product
Pattern
Price

There are four questions in this assignment, which carries 80 marks. Rest 20 marks are for viva voce. You may use illustrations and diagrams to enhance the explanations. Please go through the guidelines regarding assignments given in the Programme Guide for the format of presentation. Answer to each part of the question should be confined to about 300 words. Make suitable assumption, if any.

Q1. (Covers Block 1)

(a) Please refer to Figure 4 of Unit 1 of Block 1 on page 11. Assuming the same machine to be used for execution of the following three consecutive instructions:

LOAD C ; Loads the content of Memory location C into the Accumulator Register. ADD B ; Adds the content of memory location B in the Accumulator Register.

STORE A ; Stores the content of Accumulator register AC in memory location A.

The following are the details about the instructions, data and registers:

  •  Each word of memory is of 32 bits in length. Each instruction is also 32 bits long.
  •  Main Memory has 256 words.
  •  The three consecutive instructions as shown above starts from memory location (1F)h ; A is at location (FD)h and contains a value (1000)h, B is at location (FE)h and contains a value (FF3B)h and C is at location (FF)h and contains a value (2A2F)h.
  •  The AC, IR and MBR registers are of size 32 bits, whereas PC and MAR registers are of size 8 bits. The initial content of PC register is (1F)h

Draw the diagrams showing addresses and content of memory locations and Registers. Show how the content of memory locations and registers will change with the execution of the three instructions. Show all the addresses and values in hexadecimal notations. You must also perform the necessary arithmetic using signed 2's complement notation and show the results indicating overflow, if any. Also explain the process of execution of the instructions.

(b) Perform the following conversion of numbers: 

i) Decimal (3412454512)10 to binary and hexadecimal

ii) Hexadecimal (FEDCBA9)h into Octal.

iii) String “In file name % means blank.” into UTF 8

iv) Octal (7766432) O into Decimal

(c) Assuming that inverse is represented as ', simplify the following Boolean functions: F= ((A' + B)' + (A'+B')')' (1)

(d) Simplify the following function using K-map: F(A, B, C, D) = Σ (0, 2, 6, 8, 10, 14) Draw the circuit using NAND gates. (2)

(e) Consider the Adder-Subtractor circuit as shown in Figure 3.15 page 76 of Block 1. Explain how this circuit will perform subtraction, if the value of A is 1111 and B is 1100. You must list all the bit values including Cin and Cout and overflow condition. (1)

(f) Explain the functioning of a 2× 1 Multiplexer. You must draw its truth table and explain its logic diagram with the help of an example input. (2)

(g) Assume that a data value 1111 was received as 1011. Explain how use of Hamming's ErrorCorrecting code will send this data value from source and correct error at the destination. (2)

(h) Explain functioning of S-R flip flop with the help of logic diagram, characteristic table and excitation table. (2)

(i) Explain the functioning of Asynchronous and Synchronous counter. Explain how they are different from each other. (2)

(j) Differentiate between fixed point numbers and floating point numbers? Explain the representation for Zero in IEEE 754 single precision standard. Represent (-32.25)10 and (0.000125)10 in IEEE 754 single precision format.

Q2. (Covers Block 2)

(a) Reference Figure 2(b) on page 8 in Unit 1 of Block 2. Draw the Internal organisation of a 64×8 RAM. Also answer the following:

(i) How many data input and data output lines does this RAM needs? Explain your answer.

(ii)How many address lines are needed for this RAM? Give reason in support of your answer. 

(b) A computer has 16 MB RAM and has a word size of 32 bits. It has cache memory having 16 blocks having a block size of 64 bits. Show how the main memory address (17F0AB)h will be mapped to cache address, if

(i) Direct cache mapping is used

(ii) Associative cache mapping is used

(iii)Two way set associative cache mapping is used. You must clearly identify tag, index, main memory block address and offset etc. in your answer. 

(c) Explain the process of Interrupt handling and Return from interrupt with the help of a diagram. You must answer this question in your own words.

(d) Differentiate between the working of DMA and I/O processor. Explain the DMA configurations and I/O channel structures. (3)

(e) Assume that a disk has 2000 tracks with each track having 256 sectors and each sector is of size 2M. A file having the name openUni.txt is of size 32 M. Assume that disk has 16 free - continuous clusters of 4 sectors each at different locations on the disk. How can this file be allotted space on the disk? Also show the content of FAT after the space allocation to this file. You may make suitable assumptions. You may assume the cluster size as 4 sectors, if needed. (4)

(f) Explain the following giving their uses and advantages/disadvantages. (Word limit for answer of each part is 50 words ONLY) (6)

(i) SCSI and IDE in the context of Interfaces

(ii) Scanner and its resolution

(iii) Scan codes in the context of keyboard

(iv) Access time on disks

(v) Virtual Memory (vi) RAID level 0, 3 and 5

Q3. (Covers Block 3)

(a) A computer has a single core processor having 16 General purpose registers and 4 additional special purpose registers. The machine has 1MB RAM. The size of each register and memory word is 32 bits each. An instruction of the machine is of fixed length and is equal to one memory words. Each instruction of the machine can have two operands – one memory operand and second register operand (register operand can be in General purpose registers only). Memory operand either uses direct addressing or is an immediate operand; however, register operand can use either register direct or register indirect addressing. (Please note that if register operand uses indirect addressing, then stated register contains the address of the operand in the memory.) An instruction of a machine consists of operation code bits, two addressing mode bit, one register operand and one memory operand. The addressing mode bits specifies addressing mode as:

                                                                                  Addressing mode bit                                   Register Operand                                    Memory Operand

                                                                                               00                                                           Indirect                                                      Direct

                                                                                                01                                                           Direct                                                        Direct

                                                                                               10                                                           Indirect                                              Immediate Operand           

                                                                                               11                                                              Direct                                              Immediate Operand

The special purpose registers are - Program Counter (PC), Memory Address Register (MAR), Data Register (DR) and Flag registers (FR). The First register of the General purpose registers can be used as Accumulator Register. The size of Integer operands on the machine is 32 bits and it may be assumed to be equal to size of accumulator register. In order to execute instructions the machine has an additional Instruction Register (IR) of size 32 bits as each instruction is of this size. Perform the following tasks for the machine.

(i) Design suitable instruction formats for the machine. Specify the size of different fields that are needed in the instruction format. Also indicate how many different operations can be coded for this machine. Give reasons in support of your answer.

(ii) Put some valid values in registers and memory locations and demonstrate examples of different addressing modes of this machine. (1)

(iii) Assuming that the instructions are first fetched to Instruction Register (IR) and memory operands is brought to DR register; indirect operand is brought to Accumulator register; and result of operation is stored in the Accumulator register; write and explain the sequence of micro-operations that are required for fetch and execute cycles of an instruction which performs subtraction of two operands having addressing mode bits as 00. Please note that one of the operand is Indirect Register Operand and the second is a direct memory operand. Make and state suitable assumptions, if any.

(b) Assume that you have a machine as shown in section 3.2.2 of Block 3 having the microoperations as given in Figure 10 on page 62 of Block 3. Consider that R1 and R2 both are 8 bit registers and contains 11000011 and 11100101 respectively. What will be the values of select inputs, carry-in input and result of operation (including carry out bit) if the following micro-operations are performed? (For each micro-operation you may assume the initial value of R1 and R2 as given above) (2)

(i) Add R1 and R2 with carry

(ii) Decrement R1

(iii)Shift right R1 twice

(iv)AND R1 and R2

(c) What is the role of Control Signal in execution of an Instruction? Block 3, page number 68- 70, explains the timing sequence for execution of ISZ instruction. Explain execution of an ADDITION instruction with the help of micro-operations and timing sequence. (3)

(d) What is the role of micro-programmed control Unit? How a micro-program is executed? Explain with the help of a diagram. (2)

(e) List and explain the characteristics of RISC machines. A RISC machine has 256 registers out of which 64 registers are reserved for the Global variables and 64 for Instruction related tasks. This machine has been designed to have 12 registers for storing three input parameters, three output parameters and six local variables for a function call. Explain with the help of a diagram, how the overlapped register window can be implemented in this machine for function/procedure calls. You must explain how the parameters will be passed when a function calls another function. How many levels of procedural calls, such a machine can support? (3)

Q4. (Covers Block 4)

(a) Write a program using 8086 assembly Language (with proper comments) that accepts an input of ten characters from the keyboard and store them in the memory. It then converts all the lower case alphabets of this stored string to uppercase alphabets. Make suitable assumptions, if any. (7)

(b) Write a program using 8086 assembly Language (with proper comments) that finds the sum and average of 10 byte numbers stored in two different arrays of size 5 each. (7) 10

(c) Explain the following in the context of 8086 Microprocessor (6)

(i) Use of Segment Registers

(ii) Use of Interrupts in Input/output

(iii).com and .exe programs

Request for Demo and Sample

IGNOUHelp.in

A Leading Portal for IGNOU Students

IGNOU MCS-012 Study Material

IGNOU MCS-012 Study Materials/Books – If you come to this page for download each course of MCS-012 Study Material so you are come at right place. Here you will get everything for which you have come to here. We have downloaded all available Study Materials of MCS-012 to our System and it is ready and available for all MCS-012 Students.

We provide all study materials to IGNOU Computer Application student with free of cost and it can download easily and without registration need.

List of Available MCS-012 Study Materials:

Block-01
Block-02
Block-03
Block-04

Is it required to download MCS-012 Materials?

For attend IGNOU MCS-012 TEE Examination, it is necessary to first submit your Assignments to IGNOU and it is possible from IGNOU Study Material . You can solve your MCS-012 Assignments with using Books/Materials. Not only Assignments, but you can use it for preparation of Examination and you can get good marks in your Computer Application Programme Annual Exams with good grade.

8 thoughts on “IGNOU MCS-012 Study Material”

Please send me pdf material with diagrams

plz send me pdf material mca ebooks hindi and english

how to get old question papers solved.

plz send me PDF material

Pdf doesn’t show any diagram please fix this issue as soon as possible 🙏

in this material figure is not showing…

Have you received textbook with figures? Unbelievable carelessness from textbook makers!

Yes in my physical book there are diagrams, LOTS OF THEM

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

IGNOU BABA

IGNOU MCS-012 Previous Year Question Papers-Last 10 Years

  • February 4, 2024

If you’re preparing for the  IGNOU MCS-012 Computer Organization and Assembly Language Programming  exam of BCA/BCAOL 2nd semester, and are looking for old exam question paper, then below you’ll find a link to download IGNOU MCS-012 Previous Year Question Papers. We have uploaded the last 10-years question paper, simply click on the link below to download.

June 2013
December 2012June 2012

MCS-1 2 Previous Paper Details

ProgrammeBCA, BCAOL
Course CodeMCS12
Course TitleComputer Organization and Assembly Language Programming
UniversityIGNOU
Paper LanguageEnglish
YearsLast 10 year June 2012 to December 2021
Doc typePrevious year Question Papers PDF’s

Leave a Comment Cancel reply

Save my name, email, and website in this browser for the next time I comment.

All Courses PrevIous Papers

Download old papers (all courses), bca old papers, bag old papers, bcomg old papers, mca old papers, mba old papers, meg old papers, ignou query, download front page, ignou helpline details, check assignment status, how to submit assignments, download assignment papers, assignments submission link, how to write ignou assignments.

IGNOU MCS-012 Computer Organization and Assembly Language Programming Question Paper Download

Are you trying to prepare for your IGNOU BCA MCS-012 Computer Organization and Assembly Language Programming exams but struggling to find the right resources? Look no further! In this article, we’ll provide you with a step-by-step guide on how to download IGNOU MCS-012 Computer Organization and Assembly Language Programming Question Paper and sample papers easily. Read on to learn more about where to find these resources and how you can use them to effectively prepare for your upcoming exams.

Introduction to IGNOU BCA MCS12

IGNOU BCA or Bachelor of Computer Applications is a three-year undergraduate course offered by the Indira Gandhi National Open University. The course has been designed to provide students with a strong foundation in computer applications.

The following steps will help you download IGNOU BCA MCS-012 question papers and sample papers easily:

  • Visit the official website of IGNOU at www.ignou.ac.in.
  • On the homepage, click on the ‘Student Zone’ tab and then select ‘Downloads’ from the drop-down menu.
  • Now, under the ‘Question Papers’ section, select your programme i.e., ‘BCA’ and then choose your desired year and semester.
  • Finally, click on the ‘Submit’ button to download the question paper or sample paper.
Course NameFoundation course in English -2
Course CodeFEG-02
ProgrammeBCA (Revised)
Maximum Marks100
Time3 Hours

Benefits of Downloading IGNOU MCS-012 Solved Question Paper

There are many benefits of downloading MCS-012 Computer Organization and Assembly Language Programming question papers and sample papers from the internet.

  • Firstly, it saves a lot of time as you do not have to go through the entire syllabus to find the relevant topics.
  • Secondly, you can get an idea about the pattern of questions asked in the examination by solving these papers.
  • Thirdly, it helps in building up confidence as you know what to expect in the examination.
  • Finally, it provides an opportunity to revise the concepts before appearing for the actual examination.

Download Last 5 Year’s Question Paper on  MCS-012 

FEG-02 Question Papers 2018
FEG-02 Question Papers 2019
FEG-02 Question Papers 2020
FEG-02 Question Papers 2021
FEG-02 Question Papers 2022

IGNOU BCA Previous Year Question Papers Download

Where to Find the Official IGNOU BCA Question Paper in PDF

The official IGNOU MCS-012 Computer Organization and Assembly Language Programming Previous question papers and sample papers can be found on the university website. However, these are not always easy to find. Here is a quick guide on how to download them:

  • Go to the IGNOU website (ignou.ac.in) and click on the ‘Student Zone’ tab at the top of the page.
  • On the next page, scroll down to the ‘Examination’ section and click on the ‘Downloads’ link.
  • On the downloads page, scroll down to the ‘BCA’ section and click on the ‘Question Papers’ link.
  • This will take you to a page with all of the available BCA question papers. You can either download them individually or as a ZIP file.

How to Download IGNOU MCS-012 Computer Organization and Assembly Language Programming Question Paper and Sample Papers

If you are looking for IGNOU BCA Question Papers and Sample Papers, then this article will help you. Here we will provide you detailed information on how to download these papers easily.

  • IGNOU MCS-012 Computer Organization and Assembly Language Programming Question Paper and Sample Papers can be downloaded from the official website of IGNOU.
  • To download the papers, firstly visit the website and then click on the ‘Student Zone’ tab given at the top of the page.
  • After that, select ‘Question Papers’ from the drop-down menu. Now, a list of all available question papers and sample papers will be displayed on your screen.
  • You can either select the paper you want to download or can search for it by using the provided search box.
  • Once you have found the paper, click on the ‘Download’ button given next to it. The paper will now start downloading automatically.
  • You can also take a printout of the downloaded paper for future reference.

Tips for Preparing for IGNOU BCA MCS-012 Exams

It is always better to be prepared for exams in advance and IGNOU BCA Exams are no different. Here are some tips that will help you prepare for your exams:

  • परीक्षा पैटर्न और पाठ्यक्रम समाधान: हर परीक्षा के लिए तैयार होना का पहला चरण परीक्षा पैटर्न और पाठ्यक्रम समझ है। जब आपको पता चलता है कि परीक्षा में कौनसे टॉपिक कवर होंगे, तो आप उसके हिसाब से तैयार शुरू कर सकते हैं।
  • स्टडी मटेरियल कलेक्ट करना: अब आपको स्टडी मटेरियल कलेक्ट करना है जो आपको एग्जाम के लिए तैयार करने में मदद करें। ऑनलाइन और ऑफलाइन डोनो जगह ढेर सारी किताबें और संसाधन उपलब्ध हैं जो आपके लिए तैयारी के लिए मददगार हो सकती है।
  • मॉक टेस्ट अभ्यास करना: और एक महत्वपूर्ण टिप है मॉक टेस्ट अभ्यास करना, वास्तविक परीक्षा के पहले। ये आपको पता चलता है कि परीक्षा में कौनसे टाइप के प्रश्न पूछे जाएंगे और आपको आत्मविश्वास भी बढ़ाता है। ऑनलाइन बहुत सारे सैंपल पेपर और पिछले साल के प्रश्न पत्र उपलब्ध हैं जो आप इस उद्देश्य के लिए उपयोग कर सकते हैं।

Follow these tips and you will surely be able to crack IGNOU BCA Exams with flying colours!

Downloading the IGNOU MCS-012 Computer Organization and Assembly Language Programming Question Paper in PDF and MCS-012 sample papers is not a difficult task as long as you know the right steps and resources. We have provided detailed instructions on how to do this so that you can easily find the correct material for your studies.

Leave a Comment Cancel reply

Save my name, email, and website in this browser for the next time I comment.

Original on Transparent.png

IGNOU MCS-012 Study Material & Textbook Download

If you are looking for MCS-012 IGNOU Study Material or Textbook entitled Computer Organization and Assembly Language Programming you have come to the right place. This is because eGyankosh allows you to download single units at a time but we provide you with the fully combined pdf with all blocks and units. Click on the image or the button below to download the study material for free! We have also provided you with an option to get verified and easy to understand guide books from Gyaniversity Publications which contain answers to previous year questions, predicted list of most important questions for upcoming term end exams, paper pattern, etc. The books are applicable for the following course(s) in IGNOU: Bachelor of Computer Applications (BCA)

MCS-012: Computer Organization and Assembly Language Programming

Download MCS-012 Guidebook

IGNOU Study Guide Book

IGNOU MCS-012 Study Material & Textbook Download

IGNOU Textbook

MCS-012 Guidebook v/s Textbook

IGNOU textbook for MCS-012: Computer Organization and Assembly Language Programming is freely available to all students. However, it is very long, confusing and hard to understand. If you are a busy working professional looking to pass your exams easily, we suggest you to go for Guidebooks made by Gyaniversity Publications instead as they are prepared using historical data from previous 20 question papers. They provide you with accurate list of the important questions are most likely to appear in your upcoming exams along with proof points based on previous year exam questions. The answers are written in simple English too. This helps you pass your exams easily!

100% Verified solved assignments from ₹ 40  written in our own words so that you get the best marks!

Don't have time to write your assignment neatly? Get it written by experts and get free home delivery

Get Guidebooks and Help books to pass your exams easily. Get home delivery or download instantly!

Download IGNOU's official study material combined into a single PDF file absolutely free!

Download latest Assignment Question Papers for free in PDF format at the click of a button!

Download Previous year Question Papers for reference and Exam Preparation for free!

Need More Help?

To get additional help, please post your question in our student community forum. Our IGNOU Advisors will respond to you within 48 hours.

  • privacy policy
  • Terms and Conditions
  • Refund policy
  • +918504059601

IGNOU-Help master

  • Study Materials
  • _IGNOU BA/BDP
  • Student Zone
  • _HALL TICKETS
  • _GRADE CARD
  • _IGNOU ADMISSION
  • _EXAM DATE-SHEET
  • GUESS PAPERS
  • SOLVED ASSIGNMENTS
  • _NEW ASSIGNMENTS
  • HANDWRITTEN ASSIGNMENT
  • _MCA Handwritten copy
  • _BCA Handwritten copy

Friday, September 8, 2023

Ignou mcs-012 solved assignment for 2023-24 session, ignou mcs-012 solved assignment for 2023-24 session students could simply realize their assignment topics by clicking on the official link of ignou. all-important links are shared on the online panel. this is the space university which is why students square measure required to create their assignments at their home. if you're feeling any doubt, then ask from us by below comment box ignou bca/mca  free solved assignment for 2023-24 session ignou bca/mca  mcs-012 2nd  semester solved assignments 2023-24 mcs-012   computer organization and assembly language programming   download ignou  bca  solved all free  assignment  for 2023-24 session the important guidelines to write the assignment answers is mentioned in the programme guide or assignment booklet. have you not applied for  ignou admission  for distance learning yet do, it now to save your money and time it should be noted that the ignou  mcs-012   assignment 2023-24 session solution provided here are just for reference to help in making the assignments.   ignou bca mcs-012  computer organization and assembly language programming workplace  course is related to english, therefore, the assignment is available in english medium only. are you also looking for  ignou mcs-012  solved assignment  as well students have to solve all the mandatory questions mentioned in the tutor marked assignment mcs-012  course. students who have taken admission in july 2022, they can submit this assignment to appear in june 2023 examination. so, the students should try to write the assignments in their own words. while asking for solved assignments through email, do not forget to mention the course code, course name, student name, enrollment number, address, etc. the ignou  mcs-012   assignment 2023-24 sessionis valid for july 2022 and january 2023 admission cycle.   the assignment is valid for december 2022 examination for the students who have registered them in january 2023 session.   ignou bca/mca  mcs-012 2nd semester solved assignments 2022-23     2nd semester solved assignment/questions paper download (mcs021 solved assignments download 2023-24 session pdf downloads,mcs022 solved assignments download 2023-24 session pdf downloads mcs053 solved assignments download 2023-24 session pdf downloads, mcse011 solved assignments download 2023-24 session pdf downloads, mcse003 solved assignments download 2023-24 session pdf downloads,mcse004 solved assignments download 2023-24 session pdf downloads,mcsl054 solved assignments download 2023-24 session pdf downloads) assignments/questions paper download has been added. july 2022 and january 2021 session.2023-24 session pdf downloads ignou help master ignou solved assignment. mca ignou july-january 2023-24 session pdf downloads assignment solution free download   ignou bca 1st semester solved assignments 2023-24 session pdf downloads session download, ignou bca 2nd semester solved assignments 2023-24 session pdf downloads session download, ignou bca 3rd semester solved assignments 2023-24 session pdf downloads session download, ignou bca 4th semester solved assignments 2023-24 session pdf downloads session download, bcs052 solved assignment download 2023-24 session pdf downloads session, bcs053 solved assignment download 2023-24 session pdf downloads session, bcs054 solved assignment download 2023-24 session pdf downloads session, solved assignments and solved term-end exam questions paper free download. ignou help master ignou solved assignments.new latest solved assignment download. bca ignou july-january 2023-24 session pdf downloads session assignment solution free download 2023-24 session pdf downloads session, mcs024 solved assignment download 2023-24 session pdf downloads session, bcsl043 solved assignment download 2023-24 session pdf downloads session, bcsl044 solved assignment download 2023-24 session pdf downloads session, bcsl045 solved assignment download 2023-24 session pdf downloads session, mcsl016 solved assignment download 2023-24 session pdf downloads session, bcs051 solved assignment download 2023-24 session pdf downloads session,  ignou bca 6th semester solved assignments 2023-24 session pdf downloads session download free download/paper free download 2023-24 session pdf downloads session,2023-24 session pdf downloads,2022-23.    ,mcs023 solved assignments download 2023-24 session pdf downloads,mcs024 solved assignments download 2020- 21,mcsl-025 solved assignments download 2023-24 session pdf downloads)3rd semester solved assignment/questions paper download (mcs031 solved assignments download 2023-24 session pdf downloads,mcs032 solved assignments download 2020- 21,mcs033 solved assignments download 2023-24 session pdf downloads,mcs034 solved assignments download 2023-24 session pdf downloads,mcs035 solved assignments download 2023-24 session pdf downloads,mcsl036 solved assignments download 2023-24 session pdf downloads) ignou bca/mca  mcs-012 2nd semester solved assignments 2022-23   4th semester solved assignment/questions paper download (mcs041 solved assignments download 2023-24 session pdf downloads,mcs042 solved assignments download 2023-24 session pdf downloads,mcs043 solved assignments download 2023-24 session pdf downloads,mcs044 solved assignments download 2020- 21,mcsl045 solved assignments download 2023-24 session pdf downloads) 5th semester solved assignment/questions paper download (mcs051 solved assignments download 2023-24 session pdf downloads, mcs052 solved assignments download 2023-24 session pdf downloads, ignou bca/mca  mcs-012 2nd semester solved assignments 2022-23   ignou mca 1st semester solved assignments 2023-24 session pdf downloads download, ignou mca 2nd semester solved assignments 2020- 21 download, ignou mca 3rd semester solved assignments 2023-24 session pdf downloads download,ignou mca 4th semester solved assignments 2023-24 session pdf downloads download, ignou mca 5th semester solved assignments 2023-24 session pdf downloads ignou bca/mca  mcs-012 2nd semester solved assignments 2022-23   download,ignou mca 6th semester solved assignments 2023-24 session pdf downloads download/paper free download. ignou mca/bca 1st,2nd,3rd,4th,5th semester solved assignments 2019-20,2023-24 session pdf downloads,2023-24 session pdf downloads,2023-24 sessiondownload and solved questions paper,solved term-end exam questions paper download. fully solved 1st semester solved assignment/questions paper (mcs011 solved assignments download 2023-24 session pdf downloads,mcs012 solved assignments download 2023-24 session pdf downloads,mcs013 solved assignments download 2020- 21,mcs014 solved assignments download 2023-24 session pdf downloads,mcs015 solved assignments download 2023-24 session pdf downloads,mcsl016 solved assignments download 2023-24 session pdf downloads,mcsl017 solved assignments download 2023-24 session pdf downloads).  ,   ignou bca/mca  mcs-012 2nd  semester solved assignments 2023-24 how to download ignou mca/bca solved assignment   1.         send your subject code / enter your assignment code . 2.        click on assignments codes types /screen shoot . 3.        enter your right subjects code. 4.        click on “sent ”. 5.         select (all payments methods available) 6.        success your transaction than check your whats app  automatically download 7.        download the assignment., ignou more assignments b.a/bdp/bag/bca/mca/pgdca/mba  also avilable, below  ignou programmes select ignou all solved  assignments click here ignou bca solved assignments click here ignou mca solved assignments click here ignou bag/bdp/ba solved assignments click here ignou pgdca   solved assignments click here ignou mba  solved assignments click here ignou other assignments click here ignou mca/mca new handwriting pdf available 2023-24  whats app:-+918504059601 ignou solved assignments 2023-24  bag mca bca pgdca mba ba/bdp b.com m.com m.a, below  ignou programmes select ignou all solved  assignments click here ignou bca solved assignments click here ignou mca solved assignments click here ignou bag/bdp/ba solved assignments click here ignou pgdca   solved assignments click here ignou mba  solved assignments click here ignou other assignments click here solutions available call/whats app-+918504059601 thanks&regard ignou help master team mobile number: +918504059601 email:- ignouhelpmaster @gmail.com all-important links are going to be shared on the online panel. this is the gap university which is why students square measure required to create their assignments at their home. if you're feeling any doubt, then raise from north american nation by below comment box, no comments:, post a comment, ignou exam help notes.

  • IGNOU BAG Notes/guess Paper
  • IGNOU MBA Exam Notes

IGNOU LATEST NEWS

  • BCA_New Solved assignment 2024-25 Session Click Here

new

  • IGNOU M.A solved assignment 2024-25 Session Click Here
  • IGNOU BAG solved assignment 2024-25 Session Click Here
  • MBA solved assignment 2024-25 Session Click Here

IGNOU SOLVED ASSIGNMENTS

  • IGNOU PDF Assignments
  • IGNOU Handwriting Assignments
  • IGNOU Hard Copy Home delivery Assignments
  • IGNOU Projects + synopsis

Popular Posts

  • IGNOU New Students Whats App Groups new Students IGNOU 2024-25 All Students Whats App  Free Links Join .  The solve ignou students problem below, you get a list of active IGNOU Whats App gr...
  • IGNOU BAG Solved assignment July-2024 Session And January-2025 Session IGNOU  BAG  Solved Assignment  For  2024-25 Session :  If you were finding out the IGNOU  BAG  Semester solved Assignment for July-20234/Jan...
  • IGNOU BA/BAG Solved Assignment January-2024 Session Free IGNOU BA/BAG (NEW) Solved Assignment For July- 2024-25 Session: If you were searching for the IGNOU  BA/BAG Semester Solved Assignment for J...
  • IGNOU BAM Solved Assignment Free Download For 2024-25 session IGNOU B.A/BAM (NEW) Solved Assignment For  July/January- 2024 Session : If you were searching for the IGNOU  BA/BAM Semester Solved Assignme...

Breaking News

Fully Solved Assignments

SUPPORT STUDENTS

 IGNOU HELP MASTER

 RAJASTHAN JHUNJHUNU-333029  Email id: ignouhelpmaster @gmail.com  WhatsApp us: +918504059601

' height=

IGNOU Assignment Wala

IGNOU SOLVED ASSIGNMENT 2019-20 FREE DOWNLOAD

  • Post author: IGNOU ASSIGNMENT WALA
  • Post published: June 19, 2023
  • Post category: Updates
  • Post comments: 0 Comments

Download IGNOU Solved Assignment 2019-20 Session. Assignment Solutions are available in PDF Format for all semesters. Ignou carefully check the Assignment work put together by the understudies, subsequently you ought to present your best work. We comprehend that this is a difficult work, accordingly here we have gathered these completely Solved Assignments for you. These Ignou Solved Assignments are for the direction, which you should utilize it as a source of perspective. We prompt you not to duplicate 100% from arrangements and utilize some outside sources likewise to gather more data about the point.

You can download IGNOU solved assignment 2019-20  from below links. All subjects are listed below for IGNOU click on the Download link next to course code and course title to download solved assignment. These assignments are for July 2019 and January 2020 admission cycle students.

IGNOU MBA Solved Assignments Check Here
IGNOU Foundation Course Solved Assignment Check Here
IGNOU BCA Solved Assignment Papers Check Here
IGNOU B.Sc. Solved Assignment Papers Check Here
IGNOU B.Com Solved Assignment Papers Check Here
IGNOU MCA Solved Assignment Papers Check Here
IGNOU MA Solved Assignment Papers Check Here
IGNOU BA Solved Assignment Papers Check Here
IGNOU M.Com Solved Assignment Papers Check Here
IGNOU Bachelor of Social Work
Solved Assignment Papers
Check Here
IGNOU Bachelor of Degree Programme
Solved Assignment Papers
Check Here

Read more:  IGNOU UAE – IGNOU Assignment Wala

Read more : Assignments (ignou.ac.in)

ACC-1 Organizing Child Care Services Click here
AED-1 Export Procedures and Documentation Click here
AHE-1 Human Environment Click Here
AMK-1 Marketing Click Here
ANC-1 Nutrition for the Community Click Here
AOM-1 Office Organisation & Management Click Here
ASP-1 Secretarial Practice Click Here
IGNOU BCA 1ST SEMESTER SOLVED ASSIGNMENTS 2018-19
CODE COURSE TITLE LINK
BCS-012 Basic Mathematics Download
BCS-011 Computer Basics Download
FEG-02 Foundation Course In English Download
ECO-01 Business Organization Download
BCSL-013 Computer Basics and PC Software Lab Download
IGNOU BCA 2ND SEMESTER SOLVED ASSIGNMENTS 2018-19
CODE COURSE TITLE LINK
ECO-02 Accountancy Download
MCS-011 Problem Solving and Programming Download
MCS-012 Computer Organization Download
MCS-015 Communication Skills Download
MCS-013 Discrete Mathematics Download
BCSL-021 C Language Programming Lab Download
BCSL-022 Assembly Language Programming Lab Download
IGNOU BCA 3RD SEMESTER SOLVED ASSIGNMENTS 2018-19
CODE COURSE TITLE DATE
MCS-023 DBMS Download
BCS-031 Programming In C++ Download
MCS-021 Data File Structures Download
MCS-014 System Analysis Download
BCSL-032 C++ Programming Lab Download
BCSL-033 Data and File Structures Lab Downoad
BCSL-034 DBMS LAB Download
IGNOU BCA 4TH SEMESTER SOLVED ASSIGNMENTS 2018-19
CODE COURSE TITLE DATE
BCS-040 Statistical Techniques Download
MCS-024 Object Oriented Technologies Download
BCS-042 Algorithm Design Donload
BCS-041 Computer Networks Download
BCSL-043 Java Programming Lab Download
BCSL-044 Statistical Techniques Lab Download
BCSL-045 Algorithm Design Lab Download
MCSL-016 Internet Concepts and Web Design (Lab Course) Download
IGNOU BCA 5TH SEMESTER SOLVED ASSIGNMENTS 2018-19
CODE COURSE TITLE LINK
BCS-051 Software Engineering Download
BCS-55 Business Communication Download
BCS-053 Web Programming Download
BCS-054 Computer Numericals Download
BCS-052 Network Programing Download
BCSL-056 Network Programming and Administration Lab Download
BCSL-057 Web Programming Lab Download
BCSL-058 Computer Oriented Numerical Techniques Lab Download
IGNOU BCA 6TH SEMESTER SOLVED ASSIGNMENTS 2018-19
CODE COURSE TITLE LINK
MCS-022 Operating System Concepts Download
BCS-062 E-Commerce Download
BCSL-063 Operating System Concepts and Networking Management Lab Download

You Might Also Like

Read more about the article Explain the emergence of Rajputs during the early medieval period.

Explain the emergence of Rajputs during the early medieval period.

Read more about the article IGNOU DIPLOMA IN TOURISM STUDIES  DTS UAE

IGNOU DIPLOMA IN TOURISM STUDIES DTS UAE

Read more about the article IGNOU MADP Study material

IGNOU MADP Study material

Leave a reply cancel reply.

You must be logged in to post a comment.

Chat on WhatsApp

IGNOU Assignment Wala

SOLVED ASSIGNMENT 2023-24 | IGNOU Solved Papers and Solved Assignment 2023-2024

Shopping cart

  • Your cart is empty
  • Continue Shopping

mcs 012 solved assignment 2019 20

Recently Viewed

mcs 012 solved assignment 2019 20

MCS-012 Computer Organisation and Assembly Solved Assignment 2018-2019

₹ 30.00

Course Code : MCS-012 Course Title : Computer Organisation and Assembly Language Programming Assignment Number : BCA(2)/012/Assignment/2018-19 Maximum Marks : 100 Weightage : 25% Last Dates for Submission : 15th October, 2018 (For July, 2018 Session) 15st April, 2019 (For January, 2019 Session)

Out of stock

  • Description
  • Reviews (0)

There are four questions in this assignment, which carries 80 marks. Rest 20 marks are for viva voce. You may use illustrations and diagrams to enhance the explanations. Please go through the guidelines regarding assignments given in the Programme Guide for the format of presentation. Answer to each part of the question should be confined to about 300 words. Make suitable assumption, if any.

Question 1 (Covers Block 1) (a) What are fixed point numbers in a computer system? Why are negative fixed point numbers represented in complement form? Give examples of fixed point numbers (positive as well as negative) assuming the size of the notation to be 8 bits (including sign bit). Perform the following arithmetic operations using signed 2’s complement 8 bit representation. (Please note that the numbers given below are in decimal notation) i) Add –30 and –98 ii) Subtract –79 from 45 Please indicate overflow if it is occurs. Explain how have you identified the overflow? (2 Marks) (b) Perform the following conversion of numbers: i) Decimal (56789123)10 to binary and hexadecimal ii) Hexadecimal (ABCDEF0)H into Octal. iii) ASCII string “Subject: Computer %$ Sc.” into UTF 8 string iv) Octal (345123)O into Decimal (2 Mark) (c) Design a circuit for the following function: F(A, B, C, D) = Σ (2,3,4, 5, 10, 11, 12, 13) Draw the truth table. Use the Karnaugh’s map to design the circuit and draw it using AND, OR and NOT gates. (4 Marks) (d) What is the need of a parity bit? Explain with the help of an example. How many parity bits are needed to detect and correct a single bit error in a 8-bit data? Explain the process of correction of Single bit error with the help of an example which is not from your Unit. (4 Marks) (e) Design a two bit down counter (a sequential circuit). The counter states are 11, 10, 01, 00, 11, 10, 01, 00, 11…You should show the state table, state diagram, the k-map for circuit design and logic diagram of the resultant design using D flipflop or J-K flip flop. (4 Marks) (f) What is floating point number? What is the difference between Single precision and double precision floating point numbers? What is a representation for Zero in IEEE 754 single precision standard. Represent (-23456.05)10 and (0.00025)10 in IEEE 754 single precision format. (4 Marks) Question 2 (Covers Block 2) (a) A RAM has 1M rows each having 16 cells: (i) How many data input and data output lines does this RAM needs? Explain your answer. (ii) What is the capacity of RAM in bytes. (iii) How many address lines are needed for this RAM? Give reason in support of your answer. (2 Marks) (b) A computer has 1 MB RAM and has a word size of 16 bits. It has cache memory having 8 blocks having a block size of 32 bits. Show how the main memory address 0001 1001 1110 1101 0001 will be mapped to cache address, if (i) Direct cache mapping is used (ii) Associative cache mapping is used (iii)Two way set associative cache mapping is used. (4 Marks) (c) What is the need of DMA in a Computer? How is DMA different than that of Interrupt driven I/O technique? Assume that a new computer supports few bytes of input from multiple user’s, which of the three I/O techniques is most suitable for this computer? Justify your answer. (4 Marks) (d) Assume that a disk has 1000 tracks with each track having 64 sectors and each sector is of size 512 K. A file having the name bcamca.txt is of size 16 M. Assume that disk has four free continuous clusters of 8 sectors each. How can this file be given the space on the disk? Also show the content of FAT after the space allocation to this file. You may make suitable assumptions. You may assume the cluster size as 2 sectors, if needed. (4 Marks) (e) Explain the following giving their uses and advantages/disadvantages. (Word limit for answer of each part is 50 words ONLY) (6 Marks) (i) Memory Interleaving (ii) RAID (iii) IDE interface (iv) CAV and CLV in the context of disks (v) Passive and Active matrix display (vi) Advantages and disadvantages of Ink-jet printers Question 3 (Covers Block 3) (a) A computer has a single core processor having 8 General purpose registers and 8 additional special purpose registers. The machine has 64 KB RAM. The size of each register and memory word is 16 bits each. An instruction of the machine is of fixed length and is equal to two memory words. Each instruction of the machine has two operands – one memory operand and second register operand. Memory operand uses direct addressing; however, register operand can use either register direct or register indirect addressing. (Please note that if register operand uses indirect addressing, then stated register contains the address of the operand in the memory.) An instruction of a machine consists of operation code bits, One addressing mode bit and one register operand and one memory operand. The addressing mode bit specifies addressing mode as: Addressing mode bit Register Operand Memory Operand 0 Indirect Direct 1 Direct Direct Five of the special purpose registers perform the task as Program Counter (PC), Accumulator (AC), Memory Address Register (MAR), Data Register (DR) and Flag registers (FR). The size of Integer operands on the machine may be assumed to be of equal to size of accumulator register. In order to execute instructions the machine has an Instruction Register (IR) of size 32 bits as each instruction is of this size. Perform the following tasks for the machine. (i) Design suitable instruction formats for the machine. Specify the size of different fields that are needed in the instruction format. Also indicate how many different operations can be coded for this machine. Give reasons in support of your answer. (3 Marks) (ii) Put some valid values in certain registers and memory locations and demonstrate examples of different addressing modes of this machine. (1 Mark) (iii)Assuming that the instructions are first fetched to Instruction Register (IR) and memory operands is brought to DR register; indirect operand is brought to AC; and result of operation is stored in the AC register; write and explain the sequence of micro-operations that are required for fetch cycle and execute cycle of an instruction which performs addition of two operands having addressing mode bits as 0. Please note that one of the operand is Indirect Register Operand and the second is a direct memory operand. Make and state suitable assumptions, if any. (6 Marks) (b) Assume that you have a machine as shown in section 3.2.2 of Block 3 having the micro-operations as given in Figure 10 on page 62 of Block 3. Consider that R1 and R2 both are 8 bit registers and contains 01111011 and 10000100 respectively. What will be the values of select inputs, carry-in input and result of operation (including carry out bit) if the following micro-operations are performed? (For each micro-operation you may assume the initial value of R1 and R2 as given above) (2 Marks) (i) Subtract R2 from R1with borrow (ii) Exclusive OR of R1 and R2 (iii)Shift Left R1 twice (iv)Increment R1 (c) Explain the structure of Control Unit with the help of block diagram. What is the role of control signals in instruction execution? (3 Marks) (d) Explain the reasons of reducing complexity in a RISC machine. What are the advantages of using large register file in RISC? How RISC machine’s instruction pipelining different from other machine’s instruction pipelining? (2 Marks) (e) A RISC machine has 128 registers out of which 32 registers are reserved for the Global variables and 32 for Instruction related tasks. This machine has been designed to have 8 registers for storing two input parameters, two output parameters and four local variables for function call. Explain with the help of a diagram, how the overlapped register window can be implemented in this machine for function/procedure calls. You must explain how the parameters will be passed when a function calls another function. How many levels of calls such a machine can support? (3 Marks) Question 4 (Covers Block 4) (a) Write a program using 8086 assembly Language (with proper comments) that accepts four characters entered using the keyboard. It checks if all these characters are decimal digits. If all of them are decimal digits, then program calculates the equivalent hexadecimal value of the four digit number that has been input. The program then displays this hexadecimal number on the screen. Make suitable assumptions, if any. (7 Marks) (b) Write a program using 8086 assembly Language (with proper comments) that passes AL register value as parameter to a near procedure named DIVZERO, which checks if this passed AL value is zero or not. In case this value is ZERO program is terminated, otherwise same value is returned in AL register. Make suitable assumptions, if any. (7 Marks) (c) Explain the following in the context of 8086 Microprocessor (6 Marks) (i) The supported memory in 8086 is 1 MB whereas instruction offset is only 16 bits (ii) Processing of Interrupts using IVT (iii) Indirect addressing modes of 8086 microprocessor

There are no reviews yet.

Your email address will not be published. Required fields are marked *

Your review  *

Name  *

Email  *

Related products

mcs 012 solved assignment 2019 20

BPY-011 Philosophy of Human Person in English Solved Assignment 2018-2019

mcs 012 solved assignment 2019 20

BPYE-001 Philosophy of Religion in English Solved Assignment 2018-2019

mcs 012 solved assignment 2019 20

BSWE-002 व्यक्तियों और समूहों के साथ समाज कार्य अंत:क्षेप in Hindi Solved Assignment 2018-2019

mcs 012 solved assignment 2019 20

BPYE-002 Tribal and Dalit Philosophy in English Solved Assignment 2018-2019

  • Email Us : [email protected]
  • OFFICE : 0661-3560046 , 08984722691
  • All B. A. B. C. A. B. Com. B. Ed. B. J. M. C. B. Lib. B. P. P. B. S. C. B. T. S. B. Tech B.S.W.E. C. I. C. C. T. E. CETM 2020 CFN CNCC 2019-20 CRUL 2019-20 D. EI. Ed. D. P. E. DECE ASSIGNMENTS DIPLOMA E-NOTES FOR JUNE 2020 Entrance Exam HANDWRITTEN ASSIGNMENTS IGNOU NOTES M. A. (M.E.C.) M. A. (M.H.I.) M. A. (M.P.C.) M. B. A. M. C. A. M. Ed M. S. W. M.A. (M.E.S.) M.A. (M.H.D.) M.A. (M.P.A.) M.A. (M.P.S.) M.A. (M.R.D) M.A.(M.E.G.) M.A.(M.S.O.) M.A.(M.S.W.) M.A.(M.T.M.) M.A.(PHY) MADE MAFCS MEMBERSHIP MIR SOLVED ASSIGNMENTS 2019-20 MJMC 2020 MSC.CFT/PGDCFT NIOS NIOS DELED ASSIGNMENTS ODIA ASSIGNMENTS 2019-20 P.G.D.I.B.O. P.G.D.I.P.R. P.G.D.R.D. P.G.J.M.C. PGDAST PGDBP PGDDM PGDEMA PGDESD PGDET PGDFCS PGDFCS-2020 PGDSLM 2019-20 PGDSS Primary Education (Diploma) SECONDARY SR. SECONDARY Search for:
  • Login / Register

No products in the cart.

  • IGNOU BA HINDI
  • IGNOU BA SOCIOLOGY
  • IGNOU PHYSICS
  • IGNOU HINDI
  • IGNOU FRESH ADMISSION
  • IGNOU PREVIOUS QUESTION
  • IGNOU ASSIGNMENTS QUESTION
  • IGNOU RE-REGISTRATION
  • IGNOU RE-EVALUTION
  • TERM & EXAM
  • ENTRANCE EXAM
  • CONVOCATION
  • NIOS 10TH SOLVED TMA SOFT COPY
  • NIOS 10TH SOLVED TMA HARD COPY
  • NIOS 10TH SOLVED HANDWRITTEN TMA
  • NIOS 12TH SOLVED TMA SOFT COPY
  • NIOS 12TH SOLVED TMA HARD COPY
  • CLASS 10TH NOTES FOR EXAMS
  • BA ( BAVTM)
  • ANTHROPOLOGY
  • BCOM ASSIGNMENTS
  • BA SOCIOLOGY
  • FOUNDATION ASSIGNMENTS
  • AOC ASSIGNMENTS
  • Life sciences
  • life science
  • PUBLIC ADMINISTRATION
  • POLITICAL SCIENCE
  • MEG ASSIGNMENTS
  • MSW ASSIGNMENTS
  • M.A.(Psychology)
  • MA (Education)
  • MSCENV ASSIGNMENTS
  • DBI ASSIGNMENTS
  • PGDCA ASSIGNMENTS
  • PGDCS ASSIGNMENTS
  • CCCSD ASSIGNMENTS
  • DBPOFA ASSIGNMENTS

mcs 012 solved assignment 2019 20

MCS-012 (2019-20) EM ISC

₹ 200 ₹ 150

  • Reviews (0)

There are no reviews yet.

Be the first to review “MCS-012 (2019-20) EM ISC” Cancel reply

Your review  *

Name  *

Email  *

Save my name, email, and website in this browser for the next time I comment.

Related products

mcs 012 solved assignment 2019 20

1ST SEMESTER

MCS-013 (2019-20) EM ISC

MCS-011 (2019-20) EM ISC

MCS-015 (2019-20) EM ISC

MCSL-17 (2019-20) EM ISC

MCSL-016 (2019-20) EM ISC

MCS-014 (2019-20) EM ISC

Username or email address  *

Password  *

Remember me Log in

Lost your password?

Email address  *

  • IGNOU CBCS BAG SOLVED ASSIGNMENT 2023-2024
  • IGNOU CBCS BCOM(G) SOLVED ASSIGNMENT 2023-2024
  • IGNOU CBCS BSC(G) SOLVED ASSIGNMENT 2022-2023
  • IGNOU BA Hindi (BAHDH) SOLVED ASSIGNMENT
  • IGNOU B.A English SOLVED ASSIGNMENT
  • IGNOU B.A Sociology SOLVED ASSIGNMENT
  • IGNOU B.A History SOLVED ASSIGNMENT
  • IGNOU B.A Psychology SOLVED ASSIGNMENT
  • IGNOU B.A Public Administration SOLVED ASSIGNMENT
  • IGNOU B.A Political Science SOLVED ASSIGNMENT
  • IGNOU BAECH (Economics) SOLVED ASSIGNMENT
  • IGNOU B.A Philosophy SOLVED ASSIGNMENT
  • IGNOU M.A Hindi SOLVED ASSIGNMENT
  • IGNOU M.A English SOLVED ASSIGNMENT
  • IGNOU M.A History SOLVED ASSIGNMENT
  • IGNOU M.A Sociology SOLVED ASSIGNMENT
  • IGNOU M.A Public Administration SOLVED ASSIGNMENT
  • IGNOU M.A Political Science SOLVED ASSIGNMENT
  • IGNOU M.A Psychology SOLVED ASSIGNMENT
  • IGNOU M.A Economics SOLVED ASSIGNMENT
  • IGNOU M.A RURAL DEVELOPMENT SOLVED ASSIGNMENT
  • BCA 1st Semester
  • BCA 2nd Semester
  • BCA 3rd Semester
  • BCA 4th Semester
  • BCA 5th Semester
  • BCA Question Papers
  • Study Material
  • Whatsapp Group
  • RESULT TERM-END
  • +919811854308

mcs 012 solved assignment 2019 20

MCS-012 IMPORTANT QUESTION, SELECTED QUESTIONS NOTES

DOWNLOAD NOW FREE

RELATED ARTICLES MORE FROM AUTHOR

Mcs-012 computer organization and assembly language programming previous year question papers, ignou bca 2nd semester solved assignment for 2018-2019 session, mcs-012 computer organization and assembly language programming solved assignment (for 2017-2018 session), leave a reply cancel reply.

Save my name, email, and website in this browser for the next time I comment.

  • Terms & Condition
  • Privacy Policy
  • Refund & Cancellation
  • Paid Solved Assignment

COMMENTS

  1. MCS-012 Computer Organisation and Assembly Language Programming Solved

    IGNOU BCA(2)/MCA(1) MCS-012 Computer Organisation and Assembly Language Programming Solved Assignment 2019-20. Course Code: MCS-012 Course Title: Computer Organisation and Assembly Language Programming Assignment Number: MCA(2)/012/Assignment/ 2019-20 Maximum Marks: 100 . Weightage: 25% . Last Dates for Submission: 15th October 2019 (For July 2019 Session) : 15th April 2020 (For January 2020 ...

  2. Computer Organisation and Assembly Language Programming (MCS-012)

    MCS-012-C - Important questions for the term end examination for better results. Lecture notes 100% (1) 24. MCS-012 Solved Assignment 2018-19. Mandatory assignments 81% (302) 4. - MCS-012 compressed - paper solution. Lecture notes 100% (1) 4.

  3. MCS-012 Solved Assignment 2018-19

    MCS-012-C - Important questions for the term end examination for better results. MCS012 Important Question Ignou BCA assignment 2023 Computer organization and assembly language Questions and Answers

  4. MCS-012 Guide Book With Solved Question Papers

    This Guide Book Contains Chapter wise Reference including many solved question papers of MCS-012 (Computer Organisation and Assembly Language Programming) for IGNOU BCA and MCA Programs. Title : MCS-12, Computer Organisation and Assembly Language Programming. ASIN : B089GY584L.

  5. Ignou Solved Assignment for MCS-012 Computer Organisation and Assembly

    There are four questions in this assignment, which carries 80 marks. Rest 20 marks are for viva voce. You may use illustrations and diagrams to enhance the explanations. Please go through the guidelines regarding assignments given in the Programme Guide for the format of presentation.

  6. IGNOU MCS-012 Study Material

    You can solve your MCS-012 Assignments with using Books/Materials. Not only Assignments, but you can use it for preparation of Examination and you can get good marks in your Computer Application Programme Annual Exams with good grade. ... how to get old question papers solved. Reply. Sanjay kumar says: February 25, 2020 at 4:50 pm. plz send me ...

  7. Mcs-012-Assignment

    Mcs-012-Assignment - MCS 12 Course: Bachelor of computer application (bca) 999+ Documents. ... BCSL 058 Computer oriented Numerical techniques Lab solved assignment 2019 20. Bachelor of computer application 100% (10) 40. BCS-011 (2022-23) solved assignment. Bachelor of computer application 94% (17) 2.

  8. IGNOU MCS-012 Previous Year Question Papers-Last 10 Years

    Shiva. If you're preparing for the IGNOU MCS-012 Computer Organization and Assembly Language Programming exam of BCA/BCAOL 2nd semester, and are looking for old exam question paper, then below you'll find a link to download IGNOU MCS-012 Previous Year Question Papers. We have uploaded the last 10-years question paper, simply click on the ...

  9. IGNOU MCS-012 Previous Year Exam Question Papers

    Since MCS-012 is a complicated subject, simply checking the question papers might not be enough to pass easily. You might want to consider getting the below guidebook which takes each and every question in the past 20 question papers and performs a thorough research and analysis on it to tell you the exact probability of which questions were repeated the most and are most likely to appear in ...

  10. IGNOU MCS-012 Computer Organization and Assembly Language ...

    The following steps will help you download IGNOU BCA MCS-012 question papers and sample papers easily: On the homepage, click on the 'Student Zone' tab and then select 'Downloads' from the drop-down menu. Now, under the 'Question Papers' section, select your programme i.e., 'BCA' and then choose your desired year and semester.

  11. IGNOU MCS-012 Study Material & Textbook Download

    Top Resources for IGNOU Students. If you are looking for MCS-012 IGNOU Study Material or Textbook entitled Computer Organization and Assembly Language Programming you have come to the right place. This is because eGyankosh allows you to download single units at a time but we provide you with the fully combined pdf with all blocks and units.

  12. MCS-012 Solved Assignment 2019-20

    MCS-012: Course Title : Computer Organisation and Assembly Language Programming: Assignment Number (Code) : BCA(2)/012/Assignment/2019-20. MCA(I)/012/Assignment/2019-20: Last Date of Submission : 15th October, 2019 (for July 2019 session) 15th April, 2020 (for January 2020 session)

  13. MCS-012 (2022-23) Solved Assignment

    MCS-012 (2022-23) solved assignment - Free download as PDF File (.pdf), Text File (.txt) or read online for free. The document provides information about a computer organization and assembly language programming course, including: - An example question that asks the student to draw diagrams showing the state of a machine during execution of three instructions (load, add, store).

  14. MCS-012 Computer Organization and Assembly Language Programming

    Comprehensive Solutions: The solved assignments provide comprehensive answers to the questions asked in the assignments, which makes it easier for students to understand and study the topics. Cost-Effective: The solved assignments are available at a very economical rate, which makes them a great option for those who are on a budget.

  15. MCS -012 Dec 2022 Question Paper

    MCS-012 December 2022 Question Paper no. of printed pages master of computer applications bachelor of computer applications (revised) examination december, 2022 ... BCSL 058 Computer oriented Numerical techniques Lab solved assignment 2019 20. Bachelor of computer application 100% (10) 65. 2 - Project file (By- Nikhil Bandari)

  16. IGNOU MCS-012 solved Assignment For 2023-24 Session

    IGNOU BCA/MCA MCS-012 solved Assignment solution provided here are just for reference to help in making the assignments. ... IGNOU MCA/BCA 1st,2nd,3rd,4th,5th Semester Solved Assignments 2019-20,2023-24 session pdf downloads,2023-24 session pdf downloads,2023-24 sessiondownload and solved questions paper,solved term-end exam questions paper ...

  17. IGNOU MCS-012 Previous Year Question Paper Solved

    Don't let uncertainty hold you back! Gain a competitive edge with our comprehensive collection of IGNOU MCS-012 Previous Year Question Paper Solved Download PDF.Our meticulously crafted solutions provide you with the perfect roadmap to success. We have analyzed and decoded each question, enabling you to understand the exam pattern, identify ...

  18. MCS-012 Solved Assignment 2018-19 For BCA and MCA

    MCS-012 Solved Assignment 2018-19 For IGNOU BCA 2nd Semester and MCA 1st Semester. This solution is valid for July 2018 and January 2019 Sessions. Course Code : MCS-012 Course Title : ... BCSL-033 Solved Assignment 2019-20 (Data and File Structures Lab) 85 % OFF. Save ₹55.00

  19. Ignou Solved Assignment 2019-20 Free Download

    students can download ignou solved assignment 2019-20 from this link in easy way. ignou solved assignment 2019-20. Note: Free sample available here. All services are paid. ... MCS-012: Computer Organization: Download: MCS-015: Communication Skills: Download: MCS-013: Discrete Mathematics: Download: BCSL-021: C Language Programming Lab: Download:

  20. MCS-012 Computer Organisation and Assembly Solved Assignment 2018-2019

    Course Code : MCS-012 Course Title : Computer Organisation and Assembly Language Programming Assignment Number : BCA(2)/012/Assignment/2018-19 Maximum Marks : 100 Weightage : 25% Last Dates for Submission : 15th October, 2018 (For July, 2018 Session) 15st April, 2019 (For January, 2019 Session). There are four questions in this assignment, which carries 80 marks.

  21. Mcs 012 , assignment helper,check all answer before writing

    BCSL 058 Computer oriented Numerical techniques Lab solved assignment 2019 20. Bachelor of computer application. Mandatory assignments. 100% (10) 40. BCS-011 (2022-23) solved assignment. ... Mcs-012-Assignment - MCS 12 Synopsis; MCS-021 solved assignment; Numbers system and their usage; Related documents. Assignment; Synopsis sample;

  22. MCS-012 (2019-20) EM ISC

    mir solved assignments 2019-20; mjmc; mjmc 2020; msc.cft/pgdcft; nios. nios 10th solved tma soft copy; nios 12th solved tma soft copy; nios deled assignments; odia assignments 2019-20; osou. bachelor degree. ... mcs-012 (2019-20) em isc quantity. add to cart. category: 1st semester. reviews (0) reviews.

  23. Mcs-012 Important Question, Selected Questions Notes

    MCS-012 IMPORTANT QUESTION, SELECTED QUESTIONS NOTES. DOWNLOAD NOW FREE. Facebook. Twitter. Pinterest. WhatsApp. Telegram. Copy URL. Previous article IGNOU Previous Year Question Papers OLD PAPER. Next article IGNOU B.A SOLVED ASSIGNMENT 2019-2020. RELATED ARTICLES MORE FROM AUTHOR. ... Ask For Solved Assignment 2023-2024 Click Here. Call us ...