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

Polity

  1.    सन 1600 में ईस्ट इंडिया कंपनी भारत आई थी जिसका परमिशन ब्रिटिश की महारानी एलीजाबेथ ने दिया था 2.    परमिशन में चार्टर दिया गया था साथ ही मोनोपोली दी गयी थी अलीजाबेत के द्वारा 3.    बिटिश ईष्ट इंडिया कंपनी भारत शिप से आई थी जिस शिप का नाम था रेड ड्रैगन 4.    भारत में आने के बाद उन्होंने पहली फैक्ट्री 1611 मछलीपटनम में बनाई 5.    दूसरी फैक्ट्री 1612 में सूरत में बनाया था 6.    फैक्ट्री नियन्त्र के लिए तीन प्रेसीडेंसी बनायीं गयी जो थी बॉम्बे, बंगाल, मद्रास 7.    बंगाल का राजा था सिराजुदुल्ला और ब्रिटिश रोबर्ट clive युद्ध किया 1757 ऐसा जिसे battle of plasi कहा गया जिसमें रोबर्ट clive की जीत हुयी 8.    कंपनी का rule 1773 से 1858 तक चला था 9.    ताज का शाशन था 1858 से 1947 10.    Regulating act आया था 1773 में 11.    Act of settlement आया था 1781 में 12.    भारत परिषद् अधिनियम आया था 1861, 1892, 1909 13.    Govt of इंडिया act आया था 1858 में 14.                  ब्रिटिश सरकार ने 1773 में एक regulating act लाया गया जिसमें बंगाल को हेड बनाया गया जिसे गवर्नर जनरल कहा गया बंगा

Linked List Data Structure

Question: How to create without generic Int type Node ? Ans:  public class Node { // this is Node class without Generic int data ; // this is for data like array Element Node next ; //Node ek class hai , usi class ka khud ka variable hai, This is Node(Class) Type variable for //Node is basically refer to class , this is for next element Node ( int data ){ // this is constructor bcse user will pass data value and int because we want to create int type data constructor this . data = data ; // this is refer data next = null ; } }  

Test 2

 Question: You have made a smartphone app and want to set its subscription price such that the profit earned is maximised. There are certain users who will subscribe to your app only if their budget is greater than or equal to your price. You will be provided with a list of size N having budgets of subscribers and you need to return the maximum profit that you can earn. Lets say you decide that price of your app is Rs. x and there are N number of subscribers. So maximum profit you can earn is : m*x Sample input 1: 30 20 53 14 Output 60 import   java . util .*; import   java . util . Scanner ; public   class   solution   {      public   static   int   maximumProfit ( int   budget [])   {      Arrays . sort ( budget );          // int maxProfit = 0;          // // Iterate through each possible subscription price and calculate profit          // for (int i = 0; i < budget.length; i++) {          //     int currentProfit = budget[i] * (budget.length - i);          //     maxProfit = Mat