summaryrefslogtreecommitdiff
path: root/2021/CH15/EX15.4/EX15_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '2021/CH15/EX15.4/EX15_4.sce')
-rwxr-xr-x2021/CH15/EX15.4/EX15_4.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/2021/CH15/EX15.4/EX15_4.sce b/2021/CH15/EX15.4/EX15_4.sce
new file mode 100755
index 000000000..dc30e0942
--- /dev/null
+++ b/2021/CH15/EX15.4/EX15_4.sce
@@ -0,0 +1,11 @@
+//Finding of Speed
+//Given
+k=1.4;
+R=287;
+T=233;
+M=1.8;
+//To Find
+C=sqrt(k*R*T);
+C1=C*(18/5);
+V=C1*M;
+disp("Speed of Aeroplane ="+string(V)+" Km/hr");