Skip to main content

cs302 GDB 2016


For more discuss and ask question join this group
 
Posted By : Tahir Siddiqui(Mani)
 

Total Marks

5
Starting Date Wednesday, July 27, 2016
Closing Date Thursday, July 28, 2016
Status Open
Question Title Graded Discussion Board


Graded Discussion Board Topic
Binary language or machine language is the basic language of computer system and it consists of zeros and ones. As it is a universal fact that modern digital computers understand and store data in the form of binary language i.e. 0, 1. Where ‘0’ represents OFF/Absent while ‘1’ represents ON/Present in electronic circuits.
Now assume that you are designing a computer system that is supposed to operate on tertiary language i.e. -1, 0, 1. 
In your opinion how will it affect the storage of computer systems?Support your answer with valid arguments.

Read the following instructions carefully before sending your comments
  1. Your discussion must be based on logical facts.
  2. Your comments should be relevant to the topic i.e. clear and concise (Maximum 4-5 lines answer).
  3. You should post your comments on Graded Discussion Board & not on the Regular MDB. Both will run parallel to each other during the time specified above.
  4. Books, websites and other reading material may be consulted before posting your comments. (Do not copy the material as it is.)
  5. GDB will have weight-age of 5% of your total subject marks.
  6. No extra time will be given for discussion.
  7. You cannot participate in the discussion after the due date or through e-mail.

Solution 

  IDea Solution by Tahir Siddiqui(Mani)

For more discuss and ask question join this group
 
Posted By : Tahir Siddiqui(Mani)
IDea Solution :

We take in account the binary system and consider
1MB has 1,048,576 bytes which is equivalent to 8,388,608 bits as 1 byte is made of 8bits

If 1 and 0 are the only type (state) of storage values which will have a total combination is equal to 2 raised to the total number of bits present in the data or memory size.

 If we increase the type (state) of storage value to 1, 0 to -1,0, 1 we will more number of combinations as the bit size of the same memory has increased to 13,295,629 form 8,388,608 which is an increase of 1.58 magnitude of bits which is equivalent to 1,661,953 bytes which will store data as compared to binary system 1.58 times.

Comments

  1. 1MB m 1024 bytes hoty hain i think so why u write in this 1MB has 1048566 bytes can u tell me which caluculation is used in this gdb

    ReplyDelete
  2. Some researchers are trying to get a memory cell capable of having 3 states instead of 2.
    1) How many memory cells, in principle and as a rough estimate, does a typical 1 megabyte memory chip has? is it 8*1024 cells?
    2) If you have N memory cells, each has x logical levels, what is the number of possible representations that we can get out of it? is it x^N representations?
    Let's take Binary system as an example. Say we have 8*1024 memory cells. We can store only one of the possible 2^N representations in each cell, so at the end the number of stored bits is just N=8*1024. Now, for Ternary system, the gain is log2(3) ~ 1.58 times so we can store ~ 1.58 * 8 * 1024 "bits" or 8*1024*1024 "trits".

    ReplyDelete

Post a Comment

Popular posts from this blog

cs302 Solved Quiz

estion # 1 of 10 ( Start time: 03:03:55 PM )  Total Marks: 1    Divide-by-32 counter can be acheived by using   Select correct option:   Flip-Flop and DIV 10  Flip-Flop and DIV 16   Flip-Flop and DIV 32  DIV 16 and DIV 32 Question # 2 of 10 ( Start time: 03:05:20 PM )  Total Marks: 1   The counter states or the range of numbers of a counter is determined by the formula. (“n” represents the total number of flip-flops)   Select correct option:   (n raise to power 2)  (n raise to power 2 and then minus 1)  (2 raise to power n) (2 raise to power n and then minus 1) Question # 3 of 10 ( Start time: 03:06:36 PM )  Total Marks: 1   A 4- bit UP/DOWN counter is in DOWN mode and in the 1010 state. on the next clock pulse, to what state does the counter go?   Select correct option:   1001  1011  0011  1100 Question # 4 of 10 ( Start time: 03:07:37 PM )  Tot...

CS401 Assignment#1 Solution Spring 2018

Assignment No. 1 Graded Semester Spring 2018 Computer Architecture and Assembly Language Programming– CS401 Total Marks: 15 Due Date: 10/05/2018 Question: 1                                                                                                                                        [15...

Array Basic

TOPIC : ARRAY Array is used to store collection of variables of same data type. It may be single dimensional type or multidimensional type.Arrays help a lot ,instead of defining variables again and again , use a single array with multiple variables you want to define. It consists of contiguous memory locations, lowest address corresponds to first element in the array. Single dimensional arrays Syntax: type arrayname[ array size] = {}; Type:  type can be any c++ data type Array size:  array size must be integer constant greater than zero Array name:  valid c++ identifier Example :    int x[1]={10};             ==>  Note:   x is an array of one integer with array size one. Example :    int x[10];                     ==>  Note:   here x is an array of 10 integers                 ...