TechieTalkwithAditya

This channel is specifically made for those who have been involved in technology. Moreover, I will be posting job-related vacancies queries and much more valuable information. I will be covering tutorials on the technology used in the IT industry nowadays.


TechieTalkwithAditya

Hey everyone!

I recently attended a Java Developer interview for a role with 2 years of experience, and I was thinking—would you be interested if I shared my full interview experience, including the questions asked and how I answered them?

If you're someone preparing for Java interviews, let me know in the comments or hit the like button so I know to create that video for you!

4 months ago | [YT] | 0

TechieTalkwithAditya

Things every fresher needs to keep in mind

4 months ago | [YT] | 0

TechieTalkwithAditya

Important Message for Freshers Joining the IT Industry

Hey everyone! As a Java Developer and someone who’s been in the industry for a while, I want to share some advice for all freshers starting their first job:

1. Don’t Opt Out of Provident Fund (PF):

I know the in-hand salary might look better without PF, but please don't skip it. PF is your long-term saving, your future safety net, and an essential part of your employment record. Future employers often ask for PF details, Form 16, and UAN — it’s proof of your professional journey.

2. Always Research the Company:

Before joining any company, do a background check — visit their official website, check reviews on Glassdoor/LinkedIn, and talk to current or past employees if possible. Know about their work culture, pay structure, and policies.

3. Read the Bond Carefully Before Signing:

If the company asks you to sign a bond, read every clause properly. Understand the duration, penalty amount, and exit terms. If something seems unclear or unfair, ask questions before you commit.

Starting your career on the right foot is crucial. Don’t rush into decisions just for a quick salary — think long-term, ask the right questions, and secure your future wisely.

Share this message with your batchmates or anyone starting out — help them make informed choices.

Stay smart. Stay prepared.

4 months ago | [YT] | 0

TechieTalkwithAditya

Important Message for Freshers Joining the IT Industry

As a Java Developer and someone who's been in the industry for a while, I want to share a quick but important tip for all freshers joining their first job:

Please do not opt out of the Provident Fund (PF).

I know it might seem tempting to skip PF to increase your in-hand salary, but trust me — it's not a wise decision in the long run.

Here’s why you should opt for PF:

1. PF is your long-term saving — it helps you build a retirement corpus.


2. Future employers may ask for PF records, Form 16, and UAN details — having a PF account makes your employment history transparent and credible.


3. You lose employer contribution if you opt out — that's free money going into your savings.


4. PF helps during emergencies — it's a secure backup for tough times.



So, even if the in-hand salary feels a little low now, the long-term benefits of opting for PF are huge. Make the smart move from day one!

Share this with your friends who are starting their careers — help them make informed decisions.

Stay smart, stay secure.

4 months ago | [YT] | 0

TechieTalkwithAditya

Java Developers! I Need Your Help!

Hey everyone! I'm working on a video to help job seekers prepare for the Application Developer (Java) role. If you're preparing for interviews or have experience with Java-related job interviews, drop your questions below!

Topics can include:

Core Java

Spring Boot

Hibernate

Microservices

REST APIS

SQL & Databases

System Design

Any other Java-related interview questions!

I'll pick the most common and important ones to discuss in my upcoming video. Let's help each other grow!

Drop your questions in the comments!

5 months ago | [YT] | 0

TechieTalkwithAditya

To remove duplicate characters from a string in Java, you can use various approaches. Here are some common methods:

import java.util.LinkedHashSet;

public class RemoveDuplicates {
public static String removeDuplicates(String str) {
LinkedHashSet<Character> set = new LinkedHashSet<>();
StringBuilder result = new StringBuilder();

for (char c : str.toCharArray()) {
if (set.add(c)) {
result.append(c);
}
}

return result.toString();
}

public static void main(String[] args) {
String str = "java programming";
System.out.println(removeDuplicates(str)); // Output: "jav progmin"
}
}

5 months ago | [YT] | 0

TechieTalkwithAditya

🧠 Java Challenge Time!

Which of these doesn’t belong to the core principles of Object-Oriented Programming (OOP) in Java?

🤔 Options:
a) Polymorphism 🌀
b) Inheritance 🧬
c) Compilation 🖥️
d) Encapsulation 🎁

Drop your answer in the comments and let's see who's a true Java guru! 🚀

8 months ago | [YT] | 0

TechieTalkwithAditya

🌟 Coming Soon! 🌟

Hey everyone! 🎉 I’ll be uploading a new video soon where I share my interview experience for a Java Developer position.

I’d love to know if you’re interested in hearing about:
- Common interview questions I faced
- Tips for showcasing your skills
- My journey and key takeaways

Let me know what you’d like to see in the comments! Stay tuned, and thanks for your support! 💻✨

11 months ago | [YT] | 1

TechieTalkwithAditya

What will happen if you put the return statement or System.exit () on the ‘try‘ or ‘catch‘ block?

Will the ‘finally’ block execute?

1 year ago | [YT] | 0

TechieTalkwithAditya

"Update Needed: Cognizant Joining Status"

Hey everyone,

I just wanted to know whether you have received any mail from Cognizant ( I am talking about the 15th April batch )

If any of you have received an update or communication from Cognizant, could you please share it with the rest of us? It would be greatly appreciated, and it'll help ensure that we're all on the same page and adequately prepared for our transition.

Thank you all in advance for your cooperation and assistance. Let's keep each other informed and make this transition as smooth as possible.

1 year ago | [YT] | 0