summaryrefslogtreecommitdiff
path: root/911/CH1/EX1.8.a/ex_1_8_a.sce
diff options
context:
space:
mode:
Diffstat (limited to '911/CH1/EX1.8.a/ex_1_8_a.sce')
-rw-r--r--911/CH1/EX1.8.a/ex_1_8_a.sce13
1 files changed, 13 insertions, 0 deletions
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