@CodingNinjasIndia

The winner of the quiz is Shibshankar Samanta. Please check your comment for the steps on how to get your Amazon voucher of Rs. 500! The correct answer to the Quiz at 5:55 is A. RANDOMLY

Answer the Quiz at 5:55 and 1 lucky winner who answers correctly stands a chance to win an Amazon voucher of Rs. 500. Comment your answers in the comment section below. Winner will be announced in 7 days from the upload date of this video. We will reply to the winner's comment with the steps to receive the Amazon voucher of Rs. 500. Happy learning!

Get COURSES For FREE Using This Scholarship Test. Register Here Now: https://www.codingninjas.com/landing/scholarship-test/?utm_source=youtube&utm_medium=organic&utm_campaign=scholarship

BEST FREE Resource To Learn DSA, C++, Python, Java, Web Development, Competitive Programming, CLICK HERE: https://www.codingninjas.com/codestudio/guided-paths?utm_source=youtube&utm_medium=organic&utm_campaign=september22

PLAYLIST: Success Stories By Coding Ninjas: https://www.youtube.com/playlist?list=PLrk5tgtnMN6QKbODGF49a6vGFWzmAS21J

PLAYLIST: DSA in PYTHON Full Course by Coding Ninjas:  https://www.youtube.com/playlist?list=PLrk5tgtnMN6TYBW0-U4YhIRyYEVpqVEnJ

PLAYLIST: WEB DEVELOPMENT Full Course by Coding Ninjas: https://www.youtube.com/playlist?list=PLrk5tgtnMN6TNuhUEf5-UgPxa1wu-l6kP

(Playlist) Top DSA Interview Questions By Coding Ninjas: https://www.youtube.com/playlist?list=PLrk5tgtnMN6QpjNWjAym3wbqe8dhj5x_x

(Playlist) Data Structures And Algorithms In C++ Full Course By Coding Ninjas: https://www.youtube.com/playlist?list=PLrk5tgtnMN6RROlCDCwFVlbtuB9yHDpzw

(Playlist) Data Structures And Algorithms in Java Full Course by Coding Ninjas: https://www.youtube.com/playlist?list=PLrk5tgtnMN6StFV60jlQ9W-RXyHppbp8G

Practice Coding On Top Interview Questions For FREE: https://www.codingninjas.com/codestudio/problems?utm_source=youtube&utm_medium=organic&utm_campaign=companies19may22

In this video, we will be talking about How Can You Really Learn Java.

@sumeshsingh8241

We can access elements of an array randomly, but the memory allocation is sequential.
 let's understand it with an example:
#include<iostream>
using namespace std;
int main(){
//declare an array.
 int arr[5]={1,2,3,4,5};
//accessing randomly
court<<arr[0]<<" "<<arr[2];

return 0;
}

//OUTPUT
1 3

@ddev_Sharma

In array, we have contiguous memory which means we can access the elements by adding the value to the base address.
It's known as index based accessing.
That's why we don't need to traverse the array to access a particular element.
We can access it using its index in the array.
Hence, we can access elements of array randomly.

@sukhpreetsingh5200

ANS:->Sequentially->as elements in array are stored in contigous memory.

@ArvindKumar-ji1ij

5:55  b)sequentially

@kashyapprajapati4700

2: sequenceally

@ai36naveedshaikh

Array can be access SEQUENTIALLY because  this data structure fall into linear data structure that means we can acess  'SEQUENTIALLY'.

@saurabhmishra-nn5xs

I know java core and little bit about JEE 
can i also take this course or other course Regarding DSA

@chandanmandal3941

Sequentially because the .  Memory allocation is in a sequential manner in java

@_shikhar_chauhan_

Ans is A Randomly!!

@anurag8693

Randomly, you can access any element of array by its indices.

@vaibhavnimkar6252

i am using your coding platform codestudio but while editing old code a letter is getting erased and  for editing i letter i have to delete whole line and this frustating while coding it was very irratating the question was search in rotated array plz do fix this . ASAP

@mobeenkhan1037

randomly and sequentially both

@MrNast1234

Ans is A, Randomly

@mohammedsufiyan3877

a) Randomly

@DeteroyteGaming

Ans-> sequentially

@learnerboy2247

Eligibility for dsa Java course? I am not from science background

@Jv_Singh37

Sequentially

@Deepak-ip1se

Answer is b-sequentially .

@smritiKumari9977

Randomly is the correct answer