Vaibhav Wani (@_vaibhav1106_) 's Twitter Profile
Vaibhav Wani

@_vaibhav1106_

Software Developer@PTC | Data Science | Web-dev | Java
#Tech_geek🔥

ID: 1158960589563035648

linkhttps://www.linkedin.com/in/vaibhav1106?utm_source=share&utm_campaign=share_via&utm_content=profile& calendar_today07-08-2019 04:38:31

577 Tweet

73 Takipçi

773 Takip Edilen

Rohit Lakhotia 🚢 (@rohitlakh) 's Twitter Profile Photo

Looking to learn System Design? Engineers from Google, Amazon, Microsoft and more read our System Design content. Subscribe for Free!

Anu Sharma (@o_anu_o) 's Twitter Profile Photo

These topics are asked in Google screening round! ✅ I got rejected here twice because most eliminations happen at this stage, so clearing it should be your priority. Focus on: 🔹 Arrays: Sliding window, two pointers, binary search, sorting, greedy algorithms 🔹 Strings:

Bishal Nandi (@learnwithbishal) 's Twitter Profile Photo

🚨 Tech is advancing faster than ever What seemed impossible a decade ago is now reality. The next wave of innovation will redefine everything we know. 🧵THREAD🧵

🚨 Tech is advancing faster than ever

What seemed impossible a decade ago is now reality.

The next wave of innovation will redefine everything we know.

🧵THREAD🧵
Hitesh Choudhary (@hiteshdotcom) 's Twitter Profile Photo

Don’t gamble small like in those apps. Gamble big, gamble on yourself. Take that next big decision that you are thinking. Build that product, build that company, apply for that job. Go for it champ.

SumitM (@sumitm_x) 's Twitter Profile Photo

Two microservices, A and B, share the same database for some entities due to legacy design. Microservice A makes a change to the entity, but Microservice B does not reflect the change immediately, leading to inconsistent behavior. How would you refactor the system to solve the

Toha Khan (@heytoha) 's Twitter Profile Photo

After 1.5 years of using ChatGPT, I can say that it is the technology that has revolutionized my life the most, along with the Internet. So here are 12 prompts that have transformed my day-to-day life and that could do the same for you.

After 1.5 years of using ChatGPT, I can say that it is the technology that has revolutionized my life the most, along with the Internet.

So here are 12 prompts that have transformed my day-to-day life and that could do the same for you.
Sneha Pandey (@snhpndy) 's Twitter Profile Photo

Morgan Stanley interview questions: > project related > 2 DSA 1. leetcode.com/problems/minim… 2. leetcode.com/problems/flatt… > OOPS

Abhishek (@abhishekcode42) 's Twitter Profile Photo

stop watching reels. read books. walk 10k steps. explore curiosity. learn new things. be grateful. do something. practice doing nothing. turn notifications off. lift weights. learn logic. learn probability. don't badmouth people. ignore the trolls. don't be jealous. be

SumitM (@sumitm_x) 's Twitter Profile Photo

Static keyword is discussed a lot in Java interviews. 5 beginner level questions that you can't afford to mess up in interviews 👇 - What happens if two threads access and modify a static variable? - Can you override a static method in Java? - What is the output if a static

SumitM (@sumitm_x) 's Twitter Profile Photo

I get this question frequently : What interview questions are asked for Junit ? 3 common ones are : - How & should you test private methods in JUnit? - How would you test asynchronous methods with JUnit? - Describe how you would mock static methods using JUnit. Add more 👇

SumitM (@sumitm_x) 's Twitter Profile Photo

Preparing for a Backend Engineer tech interview ? Just DSA isn't enough You’ll need to scale, secure, and design under pressure. Here are 10 topics that you must learn 👇 1. Concurrency & Parallelism Threads vs async, race conditions, locks, deadlocks, queues- know how to

SumitM (@sumitm_x) 's Twitter Profile Photo

Your Spring Boot app performs operations on both Kafka and MySQL in the same flow. How do you ensure data consistency if the app crashes halfway?

SumitM (@sumitm_x) 's Twitter Profile Photo

3 important Java Generics questions that you won't find googling but would get in interviews👇 - Can you overload methods that differ only by generic type parameters? - Why can't we add elements to a List<? extends T>? - What's the difference between List<?>, List<Object>, and

SumitM (@sumitm_x) 's Twitter Profile Photo

Java Microservices is one of the hottest skills in the current job market .. Make sure you prepare answers to the below 20 questions before going for an interview 👇 1. Monolith vs Microservices differences and when to choose which. 2. How to design a microservice from

SumitM (@sumitm_x) 's Twitter Profile Photo

In interviews, Don’t stop at what something does. Always talk about why you used it. Examples: Q: Have you worked with Spring Boot Actuator? Answer something like this : "Yes, used it for health and metrics in production apps. Enabled /health, /metrics, added a custom

SumitM (@sumitm_x) 's Twitter Profile Photo

Two microservices, A and B, share the same database for some entities due to legacy design. Microservice A makes a change to the entity, but Microservice B does not reflect the change immediately, leading to inconsistent behavior. How would you refactor the system to solve the

SumitM (@sumitm_x) 's Twitter Profile Photo

Which exception will be thrown ? try { throw new RuntimeException("fail"); } finally { throw new Exception("from finally"); }

SumitM (@sumitm_x) 's Twitter Profile Photo

What is a DTO(Data Transfer Object) and Why Use Them? Let’s say you have two entity classes in your Spring Boot app: class Account { Long id; String type; Double balance; Customer customer; } class Customer { Long id; String name; String email; }