Skip to main content

Arrays In Java



Question: What is Array in Java ?

Ans: java me Array ek Non primitive data type ek data structure hota hai jo multiple variable ko ek sath store krne me help karta hai .

Syntax of Array


Syntax of Array - - - -
type [] arryName = new type[size];

1) type=  Type ka mtlb hame jis type ka array chahiye jaise int,float, double 
2) [ ] = ye square bracket jaha v honge java me iska mtlb hai we are creating a array
3) arrayName = arrayName just like a variable name 
4) new = new ek keyword hai, new ka use ham krte hai ek non primite data type ke liye memory me space allocate krne ke liye.

Example: 

int [ ] studentMarks = new int[3];





Isme Index 0 se hota hai isliye ham 0 se likh rhe

package HelloWorld;

import java.util.Scanner; //this is a Scanner class

public class LearningJava {

public static void main (String [] args) {

int [ ] Marks = new int[3];

Marks [0] = 93;

Marks [1] = 10;

Marks [2] = 12;

System.out.print(Marks);

}

}

Output: [I@1ddc4ec2 

Yaha jab aap print karoge to ek jargon print hoga jo ki class and array ka mixture hoga dssd

agr actual data print krna hai to ham [] bracket ke sath print krenge 

package HelloWorld;

import java.util.Scanner; //this is a Scanner class

public class LearningJava {

public static void main (String [] args) {

int [ ] Marks = new int[3];

Marks [0] = 93;

Marks [1] = 10;

Marks [2] = 12;

System.out.print(Marks[1]);

}

}


Kuch is trh to print me 1 st index me jo value hogi wo print ho jayegi

10

Output ye rhega


How to get input array from user 

package HelloWorld;

import java.util.Scanner; //this is a Scanner class

public class LearningJava {

public static void main (String [] args) {

// how to get input array from user

Scanner scan = new Scanner (System.in); // this is scanner class for take input

int size = scan.nextInt(); //take input fro size from user

// hamne user se integer input size le liya

int [] numBer = new int[size]; // usi size ke liye hamne ek array bna diya

for(int i = 0 ;i<=size;i++) { //hamne ek loop banaya hai jo 0 index se start krke size jitni user dega tb tk chlayenge

// this is for output System.out.println(numBer[i]);

}

}

}



  • Agar ham kisi bhi array ki value assign nhi krte hai to uski default value hi print hoti hai 
  • int ki default value 0 hoti hai 
  • char ki default value false
  • isi trh double and float ki 0.0 default value hoti hai 



  • Question: how i can take input from user in Array ?
    Ans: 

package aRray;

import java.util.*;

public class myArray {


public static void main(String[] args) {

Scanner scan = new Scanner(System.in);

int size = scan.nextInt(); ///Size for array

int [] aRray = new int[size];

/* 1) yaha ham int ka array bana rhe

2) array me ham [] square bracket laga rhe it will represent that this is array


3) array ka variable name aRray rkha hai , int type ka array banaya hai jiska

name hamne aRray rha hai , ise ham declaration of array kehenge

4) memory allocation karenge new int ke name se jisme new memory hai aur memory space type

int hai

5) size hamne user se liya hai isliye us variable ka name hamne yaha identifier bna diya hai*/

for(int i = 0; i < size ; i++) {

/* 6) yaha ham ek loop le rhe for loop jise ham zero se initialize kr rhe, kyo ki index value zero hoti hai*/

aRray[i] = scan.nextInt();

} for(int i = 0 ; i < size; i++) {

/* is loop se ham aRray[i] me store kiye gaye values ko ek ek karke print kr rhe */

System.out.println(aRray[i]);

}

}


}


This is way to take input

Note: In Array there is no any pre defined functions or methods nhi hota hai jisse kisi bhi array ko direct remove kiya ja sake .

Comments

Popular posts from this blog

Python Final Lectures

 Q- how to Print Hello World print("Hello World") Variables in python ------- age = 30   #variable should be intutive so that we can learn any time print(age) Note: Shift+Enter is shortcut to run command 2) ' #' this is for writing the comment in python Rules for Variables--- Variable can not be start with any number like - 1age  Number can use in between and end with variable like - age1 age2 Special characters are not allowed expect _ (underscore) like - age_my Space not allowed in variable  Python is case sensitive  Way to define Variable --- age1,age2 = 30,25  age1 = 30 age2 = 25 age1=age2=30   #if 30 age for both variable   >> Data type the type of data is basically data type Integer = age1 to age3 is basically integer   , Integer is basically full number lets check = type(age1)  #it will give u print int float=  basically decimal values Interest =  30.24 type(Interest) #answer is float Message = ...

Add CSS using external CSS

>>> U just need to create a another page and save it with the name style.css >>> and then go to link that style page with your html docs how to link your css with html page ? >>> You can find code below , it will help you to link your external page with your html docs <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Divyanshu Khare || MERN Developer</title> <meta description = "description" content="Divyanshu Khare's website"> <link rel="stylesheet" type="text/css" href="style.css">   <!----------link external css page ---------> </head> <body> </body> </html>

Python

Indexing--  it will help u to fetch single character  string= "Python" string[2] # slicing process of fetching a sub-string from the given string  #sequence of charater we can fetch means more than 1 character string="Divyanshu" string[2:4+1]   #basically here number is index value #string[start_index:end+index+1] string = "Hunny"   #indexing agr positive hai to left se count hoga #right se negative me string[:]  #it will give u entire string #now If i want to any characterwise index like string is Hunny and I want un only #string[start_index:end_index+1:step] string[1:4:2] #reverse your string #string[:: -1] string="Baba hunny" string[:: -1] # to convert into lowecase string="New Divyanshu" new_string=string.lower()  #new_string becase we've to create another string print(new_string) s1={1,2,3,4,5}    s2={3,2,8,67,85} s3=s1.union(s2) s3   #isme add hota hai whole value lekin common value update nhi hongi #intersection - ...