diff options
Diffstat (limited to '911/CH1/EX1.6.a')
-rw-r--r-- | 911/CH1/EX1.6.a/ex_1_6_a.pdf | bin | 0 -> 109892 bytes | |||
-rw-r--r-- | 911/CH1/EX1.6.a/ex_1_6_a.sce | 14 |
2 files changed, 14 insertions, 0 deletions
diff --git a/911/CH1/EX1.6.a/ex_1_6_a.pdf b/911/CH1/EX1.6.a/ex_1_6_a.pdf Binary files differnew file mode 100644 index 000000000..c5ab7a7b1 --- /dev/null +++ b/911/CH1/EX1.6.a/ex_1_6_a.pdf diff --git a/911/CH1/EX1.6.a/ex_1_6_a.sce b/911/CH1/EX1.6.a/ex_1_6_a.sce new file mode 100644 index 000000000..8bf0d8234 --- /dev/null +++ b/911/CH1/EX1.6.a/ex_1_6_a.sce @@ -0,0 +1,14 @@ +// example 1.6 (a) / /
+//conversion of octal to binary//
+clc
+//clears the screen//
+clear
+//clears all existing variables//
+a=374.26;
+b=floor(a);
+t=oct2dec('374');
+z = dec2bin (t);
+disp ('binary conversion of given no is : ' )
+// conversion of octal number to binary //
+disp (z)
+// answer in binary form//
\ No newline at end of file |