Posts

Python Full Material Download

 Python Full Material Download Download note :- use for educational purposes

J2EE Full Material Download

 J2EE Full Material Download Download note :- use for educational purposes

ASP.NET Full Material Download

 ASP.NET Full Material Download Download note :- use for educational purposes

JAVA PART - #6 ARRAYS

  Youtube channel :-  madhavgediya   Java playlist :-  java playlist link This video like  :-  video   -: ARRAY :- - An array is a collection of elements of the same size and same datatype. - Types :-      One-Dimensional Arrays      Multidimensional Arrays   -:  One-Dimensional Arrays  :- Declaration :- [ 1 ]    type var-name[ ];     array-var=newtype[size];  [ 2 ]    datatype var[] = new var[size]; [ 3 ]     datatype var[] = {11,22,33,44,55,66}; CODING :-  class arrayone {     public static void main ( String args [])     {         int arr [] = new int [ 5 ];         arr[ 0 ] = 123 ;         arr[ 1 ] = 456 ;         arr[ 2 ] = 789 ;         arr[ 3 ] = 1011 ;         arr[ 4 ] = 1213 ;   ...

JAVA PART - #5 FOR LOOP, WHILE LOOP, DO-WHILE LOOP.

Youtube channel :-  madhavgediya   Java playlist :-  java playlist link This video like :-  video   LOOPING  STATEMENT  Main Three Type of Loop :- 1) for loop 2) while loop 3) do_while loop -: FOR LOOP :- - A for loop is useful when you know how many times a task is to be repeated. - For loop Syntax :- For (initialization; condition; increment/decrement)  { //Statements  } -: WHILE LOOP :- - A while loop is a control structure that allows you to repeat a task a certain number of                times.  - while loop is one type entry control loop. - While Loop Syntax :- Variable declaration while(condition)  { //Statements  // increment / decrement }  -: DO WHILE LOOP :- - A do...while loop is similar to a while loop. - Do…while loop is exit control loop. -  Do While Syntax :- do { //Statements  // Increment / Decremen...

JAVA BASIC PART - 4 SWITCH CASE

Youtube channel :-  madhavgediya   Java playlist :-  java playlist link This video like :-  video -: SWITCH CASE STATEMENT :-     - A switch statement allows a variable to be tested for equality against a list of values.          -   Each value is called a case, and the variable being switched on is checked for each case.  Syntax:   The syntax of enhanced for loop is:  switch(expression) {       case value :                      //Statements                           break;      //optional       case value :                      //Statements                         break; ...