JAVA - Module 12 - Arrays
You will learn everything about Arrays in Java
Part 1 - Theory - One Dimensional Array (1D)
Part 2 - Very simple programs on 1D Array
Part 3 - Complex programs on 1D Array
Part 4 - Searching & Sorting Techniques on 1D Array
Part 5 - Two Dimensional Array
Your Instructor
My name is Saravanan G and I along with my friends Mohan and Nahush passed out of engineering college about 10 years ago.
We started as software engineers in MNC companies and at the same time started teaching computers to students during our free time. We felt that in a world where the future is a lot about Automation, when the next generation and machines/computers will work together, our system of teaching may not be really helping our children learn, get attracted to and love computers and programming, the way it should.
Slowly, through experience we found that our doubts are real and also that the students we were teaching with our raw passion, were indeed getting transformed. We started getting busy. Soon, we were not able to balance the job and our passion and in Jan of 2014, we quit our jobs, invested our savings and started TechSparx to now full time get into our passion, which we have now made it our mission.
We have now created a module and deliver it with the same passion such that 100+ programs we can impart knowledge around programming, such that our students may walk in with a fear or dislike of this topic but will walkaway having dispelled their fears and most important start loving this subject. Once this class is over, there will be no looking back. We will teach the foundations and then slowly but surely build interest and knowledge.
We also feel happy that we thus also play a part in nation building as we help create a confident and knowledgeable next generation who will be at ease in the new world where computers and programming will be required to survive and thrive.
The 2 quotes which inspire us are :
1. "A good teacher can inspire hope, ignite the imagination and instil a love of learning" - Brad Henry
2. "Tell me and I forget. teach me and I remember. Involve me and I learn." - Benjamin Franklin.
Course Curriculum
-
StartTHEORY-01 - Why arrays? (4:12)
-
StartTHEORY-02 - What is an array? (9:06)
-
StartTHEORY 03 - Declare an array of floating point, character and boolean array (5:19)
-
StartTHEORY 04 - Declare an array Strings (3:46)
-
StartTHEORY 05 - Errors and exceptions while declaring (4:23)
-
StartTHEORY 06 - Static Initialisation of an array during declaration (4:52)
-
StartTHEORY 07 - Find the sum of all array elements (6:33)
-
StartTHEORY 08 - Display array elements (4:20)
-
StartTHEORY 09 - Arrays Summary (6:22)
-
StartTHEORY 10 - Best Practices (2:49)
-
StartINTRO (1:17)
-
StartPGM01 - Program to declare, initialize, calculate sum and display sum along with the array elements (10:07)
-
StartPGM02 - Program to declare, Initialize , calculate sum of array elements at even index and the display the sum (3:07)
-
StartPGM03 - Program to declare, initialize, calculate sum of array elements at ODD index and the display the sum (3:28)
-
StartPGM04 - Program to declare an array of 10 floating point numbers use double data type, find the sum of all array elements at odd index and even index and display them. (12:54)
-
StartPGM05 - Program to accept an array of integers from the user as a function parameter, find the sum of all even array elements and display the sum. (7:46)
-
StartPGM06 - Program to accept an array of integers from the user as a function parameter, find the sum of all odd array elements and display the sum. (2:18)
-
StartPGM07 - Program to accept an array of integers( as a parameter), find the sum of all odd array elements and sum of all even array elements and display them. (0:50)
-
StartPGM08 - Program to read 10 numbers from user and store it in an array and display them. (9:33)
-
StartPGM09 - Program to read n numbers from user and store it in an array, find the sum and display the sum along with array elements (11:56)
-
StartPGM10 - Program to input an array of n integers and find the sum of all the even elements. (2:21)
-
StartPGM11 - Program to input an array of n integers and find the sum of all the odd elements (0:45)
-
StartPGM12 - Program to input an array of n integers and find the sum of all even elements and odd elements separately (0:49)
-
StartOUTRO (1:22)
-
StartPGM01 - Program to find the quadruple of each element of an array (6:59)
-
StartPGM02 - Program to replace even array elements with its square and odd array elements with its square root (5:27)
-
StartPGM03 - Program to generate 10 fibonacci series using arrays (10:06)
-
StartPGM04 - Program to generate n tribonacci numbers using arrays (4:43)
-
StartPGM05 - Program to reverse an array of n integers and store it in a new array (12:50)
-
StartPGM06 - Program to reverse an array of n integers and store it in the same array (11:40)
-
StartPGM07 - Program to find the highest marks along with its index (12:08)
-
StartPGM08 - Program to find the lowest marks along with its index (3:28)
-
StartPGM09 - Program to find the highest and lowest marks along with its index (3:57)
-
StartPGM10 - Program to merge two arrays (13:58)
-
StartPGM11 - Program to merge two arrays (9:54)