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 --- 2993/CH1/EX1.2/Ex1_2.sce | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 2993/CH1/EX1.2/Ex1_2.sce (limited to '2993/CH1/EX1.2') diff --git a/2993/CH1/EX1.2/Ex1_2.sce b/2993/CH1/EX1.2/Ex1_2.sce new file mode 100644 index 000000000..94c0e1c3b --- /dev/null +++ b/2993/CH1/EX1.2/Ex1_2.sce @@ -0,0 +1,12 @@ + +clc; +clear; + +//Required storage space in Bytes +Storage_space = 1024 * 1024 * 3 ; + +//Required storage space in Kilo Bytes +Storage_space = Storage_space / 1000; //1 KB = 1000 Byte + +format('v',9) +disp(Storage_space,"The storage space required for a 1024 x 1024 24-bit colour image (in KB) is ") -- cgit