diff options
Diffstat (limited to '911/CH1/EX1.8.a')
-rw-r--r-- | 911/CH1/EX1.8.a/ex_1_8_a.pdf | bin | 0 -> 109153 bytes | |||
-rw-r--r-- | 911/CH1/EX1.8.a/ex_1_8_a.sce | 13 |
2 files changed, 13 insertions, 0 deletions
diff --git a/911/CH1/EX1.8.a/ex_1_8_a.pdf b/911/CH1/EX1.8.a/ex_1_8_a.pdf Binary files differnew file mode 100644 index 000000000..42926b243 --- /dev/null +++ b/911/CH1/EX1.8.a/ex_1_8_a.pdf diff --git a/911/CH1/EX1.8.a/ex_1_8_a.sce b/911/CH1/EX1.8.a/ex_1_8_a.sce new file mode 100644 index 000000000..4418bc2b9 --- /dev/null +++ b/911/CH1/EX1.8.a/ex_1_8_a.sce @@ -0,0 +1,13 @@ +// example 1.8(a)//
+//conversion hexadecimal number to octal number //
+clc
+//clears the screen //
+clear
+// clears already existing variables //
+x= hex2dec ('2F')
+//hexadecimal to decimal conversion //
+a= dec2oct (x)
+//decimal to octal conversion //
+disp ('conversion of given hexadecimal no to its octal form results in :' )
+disp (a)
+//answer in octal form//
\ No newline at end of file |