Premium Employer

i

This company page is being actively managed by Presidio Solutions Pvt Ltd Team. If you also belong to the team, you can get access from here

Presidio Solutions Pvt Ltd Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Presidio Solutions Pvt Ltd Full Stack Software Developer Interview Questions and Answers

Updated 6 Jun 2024

Presidio Solutions Pvt Ltd Full Stack Software Developer Interview Experiences

3 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Project related full stack
Round 2 - Technical 

(2 Questions)

  • Q1. DSA mid point array
  • Q2. Resume questions mostly mern
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Coding test was conducted based on full stack development

Round 2 - Technical 

(1 Question)

  • Q1. Mostly questions asked were based on resume

Interview Preparation Tips

Topics to prepare for Presidio Solutions Pvt Ltd Full Stack Software Developer interview:
  • Full Stack

Full Stack Software Developer Interview Questions Asked at Other Companies

asked in Synergy
Q1. Oops in Java Patterns in Java JDK,JRE,JVM MVC Array questions str ... read more
asked in UST
Q2. If a application is running slow what process would you follow to ... read more
asked in Cognizant
Q3. Briefly explain the method you will use to execute an array linke ... read more
Q4. How do we link our stylesheet with the HTML?
asked in Cognizant
Q5. What is the difference between primary key, foreign key, candidat ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Es there a aptitude test with codng and technical

Round 2 - Coding Test 

4 coding question basuc

Interview Preparation Tips

Interview preparation tips for other job seekers - relax and stud Full stack web development

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed before Sep 2023. There were 5 interview rounds.

Round 1 - Aptitude Test 

Aptitude questions and 3 coding questions

Round 2 - Communication 

(2 Questions)

  • Q1. Reading, Writing and Audio listening and Speaking test
  • Q2. Platform was Mercel Mettle
Round 3 - Technical 

(2 Questions)

  • Q1. Projects based questions and Job experience
  • Q2. CS Fundamentals
Round 4 - Behavioral 

(1 Question)

  • Q1. Job experience related questions
Round 5 - HR 

(2 Questions)

  • Q1. Why choose Hexaware
  • Ans. 

    Hexaware offers a collaborative work environment, cutting-edge technologies, and opportunities for growth and learning.

    • Hexaware provides a collaborative work environment where developers can work together to solve complex problems.

    • The company uses cutting-edge technologies and tools, allowing developers to stay up-to-date with the latest trends in software development.

    • Hexaware offers opportunities for growth and learni...

  • Answered by AI
  • Q2. What do you know about Hexaware
  • Ans. 

    Hexaware is a global IT services company providing automation, cloud, and digital solutions.

    • Hexaware was founded in 1990 and is headquartered in Mumbai, India.

    • They offer services in areas such as application transformation, infrastructure management, and business process services.

    • Hexaware has a strong focus on automation and digital technologies to help clients improve efficiency and innovation.

    • The company has a global...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Hexaware Technologies Full Stack Software Developer interview:
  • DSA
  • CS Fundamentals
  • Mern
  • OOPS
  • OS
  • DBMS
Interview preparation tips for other job seekers - Keep you basics clear and be confident
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all Resume tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Introduce yourself,core java
Round 3 - One-on-one 

(1 Question)

  • Q1. Coding test, java , spring boot, Microservice,hibernate

Interview Preparation Tips

Interview preparation tips for other job seekers - Explain in deep any question, don’t hesitate for asking again
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is dependency injection
  • Ans. 

    Dependency injection is a design pattern in which components are given their dependencies rather than creating them internally.

    • Dependency injection helps in achieving loose coupling between classes.

    • It allows for easier testing and swapping of dependencies.

    • There are three types of dependency injection: constructor injection, setter injection, and interface injection.

  • Answered by AI
  • Q2. What is solid principles
  • Ans. 

    SOLID principles are a set of five design principles that help developers create more maintainable and scalable software.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open/Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Objects of a superclass should be replaceable with objects of its subclasses with...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Since it's a full stack they asked angular , .net , sql , c# questions
What is pipes, Life cycle hooks , dependency injection, routers

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. What is concurrent hashmap
  • Ans. 

    ConcurrentHashMap is a thread-safe implementation of the HashMap class in Java.

    • ConcurrentHashMap allows multiple threads to read and write to the map concurrently without causing any data corruption.

    • It achieves thread-safety by dividing the map into segments, each of which can be locked independently.

    • ConcurrentHashMap is more efficient than using synchronized collections for concurrent access.

    • Example: ConcurrentHashMap

  • Answered by AI
  • Q2. How is dependency injection different from dependency inversion
  • Ans. 

    Dependency injection is a design pattern where dependencies are provided to a class from the outside, while dependency inversion is a principle that states high-level modules should not depend on low-level modules, but both should depend on abstractions.

    • Dependency injection is a technique to achieve dependency inversion.

    • Dependency injection involves providing dependencies to a class from the outside, typically through ...

  • Answered by AI
  • Q3. If I add 2 same attribute values for a object to a set...will I see 2 objects in the set, if yes what changes you make to the code to insert unique objects to a set
  • Ans. 

    No, you will not see 2 objects in the set. To insert unique objects to a set, you can override the equals() and hashCode() methods in the object class.

    • In a set, each element must be unique based on the equals() method. If you add 2 objects with the same attribute values, only one will be stored in the set.

    • To ensure uniqueness, override the equals() and hashCode() methods in the object class. This will define how object...

  • Answered by AI
  • Q4. What is serialisation, externalisation, serializable
  • Ans. 

    Serialisation is the process of converting an object into a format that can be easily stored or transmitted. Externalisation is a way to customize the serialization process. Serializable is an interface in Java that allows objects to be serialized.

    • Serialisation is the process of converting an object into a format that can be easily stored or transmitted

    • Externalisation is a way to customize the serialization process

    • Seri...

  • Answered by AI
  • Q5. Write a Generic method to add string or integer to List or List
  • Ans. 

    Create a generic method to add string or integer to List or List

    • Create a generic method that takes a List and an element as input

    • Use Java generics to specify the type of List and element

    • Check the type of List and element, then add the element to the List

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Preparation of core Java is needed...not even a single minute is used to tell any of your project experience

Skills evaluated in this interview

I applied via Naukri.com

Round 1 - Technical 

(2 Questions)

  • Q1. I applied online for the post of software developer, interview was conducted by First IPO on behalf of Mindtree.
  • Q2. Basics of OOPs, program o find out prime number, basic coding problem asks for output, closure, arrays in JavaScript

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic of oops like static and instance member, polymorphism, inheritance.

I applied via Naukri.com and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Oops concept, basic javascript and react js coding question

Round 2 - One-on-one 

(1 Question)

  • Q1. React js and asp.net basic interview questions

Interview Preparation Tips

Interview preparation tips for other job seekers - React js, asp.net
Prepare basic, oops concept, coding practice

I applied via Naukri.com and was interviewed in Jun 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops concepts, Core java, java 8 features, collection framework, spring boot, java microservices, angular framework

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview went on for about 45 minutes. Was asked questions mostly on Java with few questions on Angular. It would be useful to have clear idea of how an application is served on the browser and how frontend communicates with backend. Was also asked some questions related to current project role and on what I had mentioned on my resume.
Contribute & help others!
anonymous
You can choose to be anonymous

Presidio Solutions Pvt Ltd Interview FAQs

How many rounds are there in Presidio Solutions Pvt Ltd Full Stack Software Developer interview?
Presidio Solutions Pvt Ltd interview process usually has 2 rounds. The most common rounds in the Presidio Solutions Pvt Ltd interview process are Coding Test, Technical and One-on-one Round.
What are the top questions asked in Presidio Solutions Pvt Ltd Full Stack Software Developer interview?

Some of the top questions asked at the Presidio Solutions Pvt Ltd Full Stack Software Developer interview -

  1. Mostly questions asked were based on res...read more
  2. Project related full st...read more
  3. Resume questions mostly m...read more

Recently Viewed

INTERVIEWS

Lovely Professional University

No Interviews

INTERVIEWS

INDO-MIM

No Interviews

CAMPUS PLACEMENT

Sastra University

LIST OF COMPANIES

Discover companies

Find best workplace

INTERVIEWS

Presidio Solutions Pvt Ltd

No Interviews

INTERVIEWS

INDO-MIM

No Interviews

INTERVIEWS

Ernst & Young

20 top interview questions

INTERVIEWS

Code and Theory

No Interviews

INTERVIEWS

Presidio Solutions Pvt Ltd

No Interviews

INTERVIEWS

Ernst & Young

40 top interview questions

Tell us how to improve this page.

Presidio Solutions Pvt Ltd Full Stack Software Developer Interview Process

based on 3 interviews

Interview experience

4.3
  
Good
View more
Join Presidio Solutions Pvt Ltd Business Outcomes @ Disruptor Speed
Software Engineer
39 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
33 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Engineer
24 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Cloud Engineer
18 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Engineer
15 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Presidio Solutions Pvt Ltd with

Wipro

3.7
Compare

Tech Mahindra

3.5
Compare

HCLTech

3.5
Compare

TCS

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent