Skip to main content

Posts

PayPal Technical Interview Guide (3-4 Years Experience)

Core Java & Data Structures 1. Explain the internal working of ConcurrentHashMap. How does it achieve thread safety, and what are its performance trade-offs? Internal Working: Prior to Java 8, it used segment-based locking , where the map was divided into segments , each with its own lock. In Java 8+, it uses a bucket-level lock-free approach with CAS (Compare-And-Swap) for updates. The table is backed by Node<K, V>[] with each entry being a linked list or a tree (if size > 8). Uses synchronized blocks for initialization and volatile for visibility . Thread Safety Mechanism: Uses CAS for atomic updates and synchronized blocks where necessary. Prevents full-table locks by optimistic concurrency control . Buckets reduce lock contention compared to synchronizedMap . Trade-offs: Better scalability than Hashtable , synchronizedMap . Memory overhead due to linked-list/tree structures. More CPU cycles in highly concurrent scenarios. 2. WeakHashMap v...
Recent posts

What should a senior java sprint boot software engineer know and how to advance his skillset?

  A senior Java Spring Boot software engineer should have a deep understanding of the Java programming language, the Spring Boot framework, and best practices for software development. They should also be able to apply this knowledge to design, develop, test, and deploy complex software applications. Here are some specific skills that a senior Java Spring Boot software engineer should have: Java: Expert knowledge of the Java programming language, including object-oriented design principles, design patterns, and the Java Development Kit (JDK). Spring Boot: Deep understanding of the Spring Boot framework, including its core features, such as auto-configuration, starters, and embedded servers. Software development: Strong software development skills, including experience with agile development methodologies, unit testing, and continuous integration and delivery (CI/CD). Databases: Experience with relational and NoSQL databases, such as MySQL, PostgreSQL, and MongoD...

Being an Entrepreneur

Everybody has a idea to have/make/gain much more money in their life. However we are lack of something to make it real. I think we are lack of resources, It might be human resources, capital resources or right time or right place to start. I think NYC is the best place to open a small restaurant (any store). However I do not have money. :) Being rich is the right combination of all these resources come together and use it proper way I think. You cannot be rich if the people around you are poor. Buying a gas station is another common idea to make money or running a laundry store. (But laundry business is really frustrating business.) I generally think the ratio of your effort and your money you are making when discussing being entrepreneur. If it is close to zero, you did it. You can be called a great and successful entrepreneur in your business. (The money you are making in the business must afford your whole living cost, otherwise you cannot) My software developmen...

Small World

It is getting small with technologies we use everyday. Image a second. I was having video chat with one of my friends in Baku I was posting photo to one of social media app named Instagram and my brother liked it in Istanbul I am living in New York City. What the heck!!! Even if ancient kings have the greatest powers on the earth at their time, They were powerless about the distance of places. A single messenger have taken miles in a very long time. What about now?  

Thinking about going back

The questions about going back is in my brain all the time once I came to USA, New York City. It was really great experience for me to live in that city. The city, I think it is the peak of west civilizations right now, is the city millions of people want to live or even make a trip to see it. However you used to live in here as you used to live in everywhere even if you came from one of the worst place on the earth. The questions about going back raised in my brain again once one of best friends offered a position with a good salary in Turkey, Istanbul. What will happen when I go back? What will I gain beside money in there? What will I lose in here if I give up the green card? What kind of occasions am I not aware of right now? What does the US citizen mean for me or what are the benefits of being USA citizen even if you do not want to live in USA whole your life? What, What, What? Lets think together not to make a wrong decision. Take your time. Why did I c...

Welcome to board

"Welcome to board" said one of employers in my previous company located in Long Island, Lynbrook. I think he is Chinese origin. It was really hard to adapt the environment first, not place I am talking about. The way that how business works and how they behave each other. It was a very small company, 5-7 people was working over there. And I was only one who are immigrant, everybody has perfect English naturally. It was really hard to talk, explain yourself in your second language. You felt stuck in your brain and mouth. Your brain wants to tell everything, explain every phase of your project challenges However your mouth, tongue (which is controlled by your brain, I know) is stuck, the words, the sentences does not come up from your mouth, tongue. And then it is the time you screw up. Think a second, you are one of the greatest software developer on the earth however You are struggling to explain even simple things going on inside your project. So why ...