From 28dddb3aafbe5f585fe2180380134b9195aa1850 Mon Sep 17 00:00:00 2001 From: jeeva827 <5002517.jeevanandam10@gmail.com> Date: Fri, 15 May 2026 11:28:10 +0530 Subject: [PATCH 1/2] Add numpy array operations and print statements --- jee1 | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 jee1 diff --git a/jee1 b/jee1 new file mode 100644 index 0000000..e19e8f9 --- /dev/null +++ b/jee1 @@ -0,0 +1,23 @@ +import numpy as np + +# Create an array + +array = np.array([[1, 2, 3], [4, 5, 6]]) + +# 1. Type of array + +array_type = type(array) + +print("Type of array:", array_type) + +# 2. Shape of array + +array_shape = array.shape + +print("Shape of array:", array_shape) + +# 3. Type of elements in array + +element_type = array.dtype + +print("Type of elements in array:", element_type) From 20536f01dc83e378d807ed179fc0d1c5838fe296 Mon Sep 17 00:00:00 2001 From: jeeva827 <5002517.jeevanandam10@gmail.com> Date: Fri, 15 May 2026 11:31:49 +0530 Subject: [PATCH 2/2] Add basic C program to sum two integers --- jeev2 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 jeev2 diff --git a/jeev2 b/jeev2 new file mode 100644 index 0000000..9eb5c45 --- /dev/null +++ b/jeev2 @@ -0,0 +1,10 @@ +#include +#include +void main() +{ +Int a=10, b=10, c; +clrscr(); +c=a+b; +printf("C=%d", c) +getch(); +}