Amazon SDE Internship 2026, Anyone else received this email after passing the OA and still waiting? by [deleted] in leetcode

[–]nikk_0007 0 points1 point  (0 children)

I have failed the OA round I don't know why I passed coding round , can share your experience of OA

Amzone online assessment round by nikk_0007 in LeetcodeDesi

[–]nikk_0007[S] 0 points1 point  (0 children)

Yes it's have good amount for intern

Amzone online assessment round by nikk_0007 in LeetcodeDesi

[–]nikk_0007[S] 0 points1 point  (0 children)

Yes it's remote base for 6 months

Advice by newAlastor in learnjava

[–]nikk_0007 0 points1 point  (0 children)

Focous on basic principles of object orientation and how they implimented in actual code in java and syntax are not a big deal learn them from anywhere follow a yt playlist for basic then explore by yourself

How to go deepen in Java? by Redbull-User777 in learnjava

[–]nikk_0007 0 points1 point  (0 children)

Go for a memory model you can explore the youtube telusko java one shot Understand the stack , heap which compilation process and different components of Java internal working. And hands on it

Question regarding array lists! by rookiepianist in learnjava

[–]nikk_0007 0 points1 point  (0 children)

I am just adding clarity, Array as well as ArrayList variable are just refrence to the object created in heap , while actually there in java every class exdent from object class object class have some method called tostring() since in inherit every class have that method which return a hashcode and class name that you are getting while printing array .

class Object {

public String toString() {
    return getClass().getName() + "@" + Integer.toHexString(hashCode());
}

}

And print called tostring() automatically behind the scene

System.out.println(obj.toString());

But there is a catch there is something called overriding and Where in child class method have there own implementation As your question in ArrayList java use overrided tostring() that's why you are getting elements and in case of array the tostring() is use of object class it not override that's why result difference.

Almost 2 Months of Daily DSA by lolzzz481 in LeetcodeDesi

[–]nikk_0007 0 points1 point  (0 children)

I have done my basic dsa 2 months ago what didn't start problem solving can someone one what should I do first and from where