Interview Experience of Publicis Sapient | Java interview Live !!

preview_player
Показать описание
Join this channel to get access to perks:

Welcome to Code With Roy !!

Here, we dive deep into the world of IT, covering a wide range of topics including Core Java concepts, Spring Boot, Microservices, Java interview experiences for both freshers and experienced professionals, and insights into the dynamic IT life.

Whether you're just starting your IT journey or looking to enhance your skills and knowledge, you'll find valuable content tailored to your needs. Our goal is to provide comprehensive resources, tutorials, tips, and real-world experiences to help you succeed in the ever-evolving technology field.

🎯 Ready to ace your interviews and level up your career? Book a personalized 1:1 mentorship session with me!

In this exclusive mentorship program, you'll get tailored guidance and expert insights to help you excel in your interviews and achieve your career goals. Whether you're preparing for a job interview, seeking career advice, or aiming for professional growth, I'm here to support you every step of the way.

Book Here ⬇️

Don't forget to hit the subscribe button and turn on notifications so you never miss out on our latest uploads. Thank you for joining us on this exciting journey through the IT world!
Рекомендации по теме
Комментарии
Автор

This should have been the code for the first question from my understanding.

import java.util.Date;

interface Behaviour {
public abstract void doEat();
public abstract void doSleep();
public abstract void doWork();
}

interface Driver extends Behaviour {}
interface Manager extends Behaviour {}

class Address {}

public class Person implements Manager, Driver {

private String name;
private Integer age;
private Date dob;
private Address address;

@Override
public void doEat() {

}

@Override
public void doSleep() {

}

@Override
public void doWork() {

}
}

tabrezshaikh
Автор

Nice Job . It will help to clear the interview who is preparing it

mohitpant
Автор

Sir if you can provide some important topics for 2.9 year experience for java developers

AjeetSingh-qisf
Автор

Did you get selected? If yes, how much did they offer ?

humanplanet
Автор

at 7:09, class should implements interface, you are extending the interface which is wrong.

yogeshsharma-dioy
Автор

why is he interviewing for 2 hours? if it mentioned in mail, then fine. Also 2 hours for L1 is completely not acceptable

mansoor_
Автор

1-2 ghante Interview liya hai, 1-2 minute me nikal bhi sakte hai ye Publicis wale agar project na ho to., worst company hai bhaii, job security nahi hai, No matter how much talented you are.

TechPs_pankaj
Автор

At 38:15 You answered the question correctly. I dont know why the interviewer asked you to "brush up" your concepts.

A heterogeneous list would look something like:
List list = new ArrayList<>();
list.add(5); // Compiles
list.add("String"); // Compiles

And a homogeneous would look something like:
List<Integer> list = new ArrayList<>();
list.add(5); // Compiles
list.add("String"); // Error

tabrezshaikh