diff options
Diffstat (limited to '911/CH11')
-rw-r--r-- | 911/CH11/EX11.1.a/ex_11_1_a.pdf | bin | 0 -> 108049 bytes | |||
-rw-r--r-- | 911/CH11/EX11.1.a/ex_11_1_a.sce | 10 | ||||
-rw-r--r-- | 911/CH11/EX11.1.b/ex_11_1_b.pdf | bin | 0 -> 108371 bytes | |||
-rw-r--r-- | 911/CH11/EX11.1.b/ex_11_1_b.sce | 12 | ||||
-rw-r--r-- | 911/CH11/EX11.1.c/ex_11_1_c.pdf | bin | 0 -> 108096 bytes | |||
-rw-r--r-- | 911/CH11/EX11.1.c/ex_11_1_c.sce | 12 | ||||
-rw-r--r-- | 911/CH11/EX11.4/ex_11_4.pdf | bin | 0 -> 110264 bytes | |||
-rw-r--r-- | 911/CH11/EX11.4/ex_11_4.sce | 11 |
8 files changed, 45 insertions, 0 deletions
diff --git a/911/CH11/EX11.1.a/ex_11_1_a.pdf b/911/CH11/EX11.1.a/ex_11_1_a.pdf Binary files differnew file mode 100644 index 000000000..fbfe2b3b4 --- /dev/null +++ b/911/CH11/EX11.1.a/ex_11_1_a.pdf diff --git a/911/CH11/EX11.1.a/ex_11_1_a.sce b/911/CH11/EX11.1.a/ex_11_1_a.sce new file mode 100644 index 000000000..c8c7e960e --- /dev/null +++ b/911/CH11/EX11.1.a/ex_11_1_a.sce @@ -0,0 +1,10 @@ +//example 11.1(a)//
+clc
+//clears the screen//
+clear
+//clears all existing variables//
+a=2*4;
+//given no of inputs//
+s=2^8*8;
+//size of prom//
+disp(s,'size of PROM =')
\ No newline at end of file diff --git a/911/CH11/EX11.1.b/ex_11_1_b.pdf b/911/CH11/EX11.1.b/ex_11_1_b.pdf Binary files differnew file mode 100644 index 000000000..5163e4732 --- /dev/null +++ b/911/CH11/EX11.1.b/ex_11_1_b.pdf diff --git a/911/CH11/EX11.1.b/ex_11_1_b.sce b/911/CH11/EX11.1.b/ex_11_1_b.sce new file mode 100644 index 000000000..d56f98abb --- /dev/null +++ b/911/CH11/EX11.1.b/ex_11_1_b.sce @@ -0,0 +1,12 @@ +//example 11.1(b)//
+clc
+//clears the screen//
+clear
+//clears all existing variables//
+a=8+8+3;
+//given no of inputs//
+o=2;
+//given no of outputs//
+s=2^a*o;
+//size of prom//
+disp(s,'size of PROM =')
\ No newline at end of file diff --git a/911/CH11/EX11.1.c/ex_11_1_c.pdf b/911/CH11/EX11.1.c/ex_11_1_c.pdf Binary files differnew file mode 100644 index 000000000..ea9a84102 --- /dev/null +++ b/911/CH11/EX11.1.c/ex_11_1_c.pdf diff --git a/911/CH11/EX11.1.c/ex_11_1_c.sce b/911/CH11/EX11.1.c/ex_11_1_c.sce new file mode 100644 index 000000000..1f9c45556 --- /dev/null +++ b/911/CH11/EX11.1.c/ex_11_1_c.sce @@ -0,0 +1,12 @@ +//example 11.1(c)//
+clc
+//clears the screen//
+clear
+//clears all existing variables//
+a=4+4+1+1;
+//given no of inputs//
+o=4+1;
+//given no of outputs//
+s=2^a*o;
+//size of prom//
+disp(s,'size of PROM =')
\ No newline at end of file diff --git a/911/CH11/EX11.4/ex_11_4.pdf b/911/CH11/EX11.4/ex_11_4.pdf Binary files differnew file mode 100644 index 000000000..aac29a506 --- /dev/null +++ b/911/CH11/EX11.4/ex_11_4.pdf diff --git a/911/CH11/EX11.4/ex_11_4.sce b/911/CH11/EX11.4/ex_11_4.sce new file mode 100644 index 000000000..e2879fe18 --- /dev/null +++ b/911/CH11/EX11.4/ex_11_4.sce @@ -0,0 +1,11 @@ +//example 11.4//
+clc
+//clears the screen//
+clear
+//clears all existing variables//
+disp('From the given function table, we can write the boolean expressions for the four output as follows:')
+disp('P=A''BC''D+A''BCD''+A''BCD+AB''C''D''+AB''C''D')
+disp('Q=A''BC''D''+A''BC''D')
+disp('R=A''B''CD''+A''B''CD+A''BC''D''+A''BC''D+A''BCD''+A''BCD')
+disp('S=A''B''C''D+A''B''CD''+A''BCD+AB''C''D''')
+disp(' minimizing them we get, P= BD + BD + A, Q= BC'', R= B+C AND S= A''B''C''D + BCD + AD''+ B''CD''')
\ No newline at end of file |