XUS_IN_Java

Posted 16 Days Ago
IN
1-3 Years Experience
Artificial Intelligence • Cloud • Information Technology • Software • Consulting • Data Privacy
The Role
Xebia is seeking a Java developer to join their team in providing end-to-end IT solutions to leading brands worldwide. The role involves working on technology consulting, software engineering, AI, digital products, data, cloud, and more. No prior experience required for this entry-level position.
Summary Generated by Built In
About Xebia

Xebia is a trusted advisor in the modern era of digital transformation, serving hundreds of leading brands worldwide with end-to-end IT solutions. The company has experts specializing in technology consulting, software engineering, AI, digital products and platforms, data, cloud, intelligent automation, agile transformation, and industry digitization. In addition to providing high-quality digital consulting and state-of-the-art software development, Xebia has a host of standardized solutions that substantially reduce the time-to-market for businesses.

Xebia also offers a diverse portfolio of training courses to help support forward-thinking organizations as they look to upskill and educate their workforce to capitalize on the latest digital capabilities. The company has a strong presence across 16 countries with development centres across the US, Latin America, Western Europe, Poland, the Nordics, the Middle East, and Asia Pacific.


Java

Key Skills

Java developer with a firm knowledge in object-oriented design and software development. Experience in building distributed, service oriented, micro-service-style and cloud-based solutions using Java Spring boot.


  • Must have 5+ years of experience in Enterprise Java 8 and above.
  • Strong in Core Java (Collections, Threads, Regular Expressions, concurrency, Lambdas, Reactive, Exception handling).
  • Strong experience in microservices and event driven processing systems.
  • Experience with architecting and implementing apps using Spring Boot, Spring Cloud including Spring MVC, Spring Boot, Spring JDBC, and Spring Cloud.
  • Good knowledge on Relational database (Oracle / MySQL / Postgres) or NOSQL database is preferred.
  • Mandatory knowledge of Cloud AWS/GCP Services.
  • Experience in writing & automating test scripts using Mockito/JUnit, SpringbootTest etc.
  • Must have experience working with concepts like Domain Driven Design, Microservices, Reactive Architecture etc.
  • Must be capable of doing code reviews and mentor the junior developers to drive towards high quality deliverables.
  • Strong background culture of delivering projects with first time right / Zero defects in Production.
  • Very good analytical, problem solving ability, verbal, and written communication skills.






Screening  Questions  



What is a functional interface in Java 8. ? Example of Functional interface in java  

Answer : 

A functional interface is an interface with a single abstract method, such as Runnable, Callable, Comparator 


Can we create custom Functional Interface ? 

Answer : yes 


What are Streams API ?   

Answer :  Streams allow you to process collections in a functional style, with operations like map, filter, reduce, and collect. 


What are default methods in interfaces, and why were they introduced in Java 8? 

Answer:  

Default methods allow interfaces to have methods with implementations. They were introduced to support backward compatibility so that interfaces could be updated without breaking existing implementations. 


What is Method Overloading and Method overriding ? is it determined at runtime or compile time  

Answer:  

Method overloading  

  • Allows a class to have more than one method with the same name, but with different parameter lists (different type, number, or both of parameters).  
  • Methods can be overloaded in the same class or in a subclass.  
  • Overloading is determined at compile time  


Method Overriding  

  • Method overriding occurs when a subclass provides a specific implementation for a method that is already defined in its superclass.  
  • The method in the subclass must have the same name, return type, and parameter list as the method in the superclass.  
  • Overriding is determined at runtime 


Which collection would you choose when you need to maintain unique elements but also need to maintain order  

Answer:  Linked Hashset 


What is Executor Service in java 

Manages a pool of threads to execute tasks asynchronously and supports task scheduling and thread pool management. 





What are Spring boot profiles  

Aswer :  Spring Boot profiles allow you to segregate parts of your application configuration and make it available only in certain environments (e.g., development, testing, production). 


How do you handle exceptions in a Spring Boot application, both global and controller-specific exception handling? 

Answer: 

In Spring Boot, exceptions can be handled at the controller level using @ExceptionHandler and globally using @ControllerAdvice. 


How do Microservices Communicate with each other  

Microservices typically communicate via APIs using protocols like HTTP/REST, gRPC, or message brokers for asynchronous communication (e.g., RabbitMQ, Kafka). 


What is the role of an API Gateway in a microservices architecture. 

An API Gateway acts as a single entry point for clients, routing requests to appropriate microservices, handling load balancing, security, request transformation, and response aggregation. 




L1 Interview  

  1. Evaluate Java concepts like inheritance, polymorphism, exception handling, collections and algorithms (35 min) 
  1. Provide code snippets asking for program outputs checking the above concepts 
  1. Ask to write program testing collections , multithreading  
  1. List the words in order of number of times they are repeated in the list if repeat count is same use alphabetical order  

["apple", "banana", "apple", "orange", "banana", "apple", "grape", "orange", "banana", "grape"] 

Output : apple banana grape orange 

  1. Split a large product list into sublist in (chunks of 10 ) . Sequence of the sublist should be maintained .  Ask for approach, look for multithreaded approach 

Output  

chunk 1: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]  

Chunk 2: [11, 12, 13, 14, 15, 16, 17, 18, 19, 20]  

Chunk 3: [21, 22, 23, 24, 25, 26, 27, 28, 29, 30] 

 Chunk 4: [31, 32, 33, 34, 35, 36, 37, 38, 39, 40]  

Chunk 5: [41, 42, 43, 44, 45, 46, 47, 48, 49, 50] Chunk 6: [51, 52, 53, 54, 55] 

  1. Medium level coding problem 


  1. Java 8 Features ( 
  1. Ask to write a program that test concepts like lambda, streams , method references, Functional interface  
  1. e.g. Given a list of Employee objects, write a program to return a map with key as city and the value as employee above 40 years with highest salary 


  1. Database -  Relational Query / ORM – JPA mapping  

(20 min)  

  1. Unit testing  -  code snippet and ask to write JUNIT test . Check how they mock DB object, Ask how they cover code coverage in their project  
  1. Spring boot -   Question on Spring boot components , Async Method calling ,JDBC Template , Spring Data  
  1. Spring Cloud  concepts  





L2  

  1. 1-2 Generic coding exercise . look for problem solving approach , code optimization (15 min) e.g.                  
  1.  finding the longest substring without repeating characters 
  1. Given a string containing  expression '(', ')', '{', '}', '[' and ']', determine if the input expression  is valid. i.e opening braces are correctly closed 
  1. Longest Palindromic Substring 
  1. Given an array of integers and a target sum, write a program to find all unique pairs of integers in the array whose sum equals the target sum. 

Nested loop approach resulting in O(n^2) complexity 


  1. Ask to write Spring Boot Skeleton for basic steps and annotations (15 min) 
  1. Include starter dependency  
  1. Use of auto configure ,auto wire for service,Repository, Entity object  
  1. If db credential in application properties file , followup if this is best practice  
  1. Ask about JDBC Template, Spring Data 
  1. Consume external API using Rest Template  
  1. Approach if need to consume from Multiple APIs , Multithreaded Approach 
  1. Exception handling  
  1. Caching startegies 

(15 min) 

  1. How they implement Fault Tolerance -  retry pattern , Circuit breaker pattern  
  1. Current project Architecture , Ask about event driven flow , is it on cloud/ on prem what message broker they using . how service discovery and communication between services was done 
  1. How they debug an issue in Distributed environment, Logging , Tracing . what technology they use 
  1. How they do Service Discovery  
  1. What they do for security Oauth, JWT  
  1. Distributed Transaction strategies (are they use any framework like Apache Camel,Axon , Spring Cloud Data Flow, Spring Cloud Stream) 
  1. Saga pattern  
  1. Choreography – compensating transaction 
  1. Orchestration –  
  2. Handling Idempotency 

Some useful links:

Xebia | Creating Digital Leaders.

https://www.linkedin.com/company/xebia/mycompany/

http://twitter.com/xebiaindia

https://www.instagram.com/life_at_xebia/

http://www.youtube.com/XebiaIndia


Top Skills

Java
The Company
HQ: Atlanta, GA
3,254 Employees
On-site Workplace
Year Founded: 2001

What We Do

We are a pioneering IT consultancy company, following 1 mission, 4 values, and 4 business principles.

WHO WE ARE
With over 20 years of experience, our global network of passionate technologists and pioneering craftsmen deliver cutting-edge technology and game-changing consulting to companies on the brink of transformation.

Founded in 2001, Xebia was the first Dutch organization to embrace the Agile way of working, with gurus like Jeff Sutherland. Since then, we have grown from a Java company into a full-service digital consulting company with 4500+ professionals working on a worldwide ambition.

We are organized in complementary chapters – teams with a tremendous amount of knowledge and experience within a particular field, such as Agile, DevOps, Data and AI, Cloud, Software Technology, Low Code, and Microsoft.

We help the world’s top 250 companies and category leaders overcome digital challenges, embrace innovation, adopt new technology, and implement new business models. In addition to high-quality consulting, we also provide offshoring and nearshoring services.

WHAT WE DO
★ Digital Strategy
★ DevOps and SRE
★ Agile
★ Data and AI
★ Cloud
★ Microsoft Solutions
★ Software Technology
★ Security
★ Low Code
★ Xebia Academy

HOW WE ARE ORGANIZED
Xebia has launched specific labels, like GoDataDriven, Binx, Xpirit, Qxperts, Stackstate, Instruqt, Xccelerated, and Xebia Academy Complementing our organic growth, other specialized companies join our successful journey and also operate within the Xebia network under their own brand name, like Appcino, coMakeIt, g-company, Oblivion, PGS Software, and SwissQ. Together we are Xebia.

With 17 offices in Atlanta, San Francisco, UK, Vietnam, Canada, Amsterdam, and Hilversum (the Netherlands), Belgium, Germany, Gurgaon, Jaipur, Hyderabad, Pune, Bangalore, Poland, Melbourne, Mexico, and Dubai.

✉️ [email protected]

Jobs at Similar Companies

Silverfort Logo Silverfort

Head of Global Channel & Field Marketing

Information Technology • Sales • Security • Cybersecurity • Automation
Remote
United States
357 Employees

MassMutual India Logo MassMutual India

Intern - IT Support

Big Data • Fintech • Information Technology • Insurance • Financial Services
Hyderabad, Telangana, IND

Cencora Logo Cencora

Engineer III - Software Engineering (IN)

Healthtech • Logistics • Software • Pharmaceutical
Pune, Maharashtra, IND
46000 Employees

Similar Companies Hiring

MassMutual India Thumbnail
Insurance • Information Technology • Fintech • Financial Services • Big Data
Hyderabad, Telangana
Silverfort Thumbnail
Security • Sales • Information Technology • Cybersecurity • Automation
GB
357 Employees
Cencora Thumbnail
Software • Pharmaceutical • Logistics • Healthtech
Conshohocken, PA
46000 Employees

Sign up now Access later

Create Free Account

Please log in or sign up to report this job.

Create Free Account