From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 911/CH1/EX1.6.a/ex_1_6_a.sce | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 911/CH1/EX1.6.a/ex_1_6_a.sce (limited to '911/CH1/EX1.6.a/ex_1_6_a.sce') 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 -- cgit