summaryrefslogtreecommitdiff
path: root/1301/CH2/EX2.14
diff options
context:
space:
mode:
Diffstat (limited to '1301/CH2/EX2.14')
-rwxr-xr-x1301/CH2/EX2.14/ex2_14.sce7
1 files changed, 7 insertions, 0 deletions
diff --git a/1301/CH2/EX2.14/ex2_14.sce b/1301/CH2/EX2.14/ex2_14.sce
new file mode 100755
index 000000000..0d6ffdf15
--- /dev/null
+++ b/1301/CH2/EX2.14/ex2_14.sce
@@ -0,0 +1,7 @@
+clc;
+g=9.8; //gravitational constant in m/sec square
+t=2.5; //time in sec
+v=g*t;
+disp(v,"Velocity in m/sec = "); //displaying result
+h=(1/2)*g*t*t; //kinematical equation
+disp(h,"Height in m = "); //displaying result \ No newline at end of file