Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Zensar Technologies Team. If you also belong to the team, you can get access from here

Zensar Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Zensar Technologies Interview Questions and Answers

Updated 5 Jun 2025
Popular Designations

186 Interview questions

A Java Developer was asked 2mo ago
Q. What are the OOP concepts in Java?
Ans. 

OOP concepts in Java include Encapsulation, Inheritance, Polymorphism, and Abstraction, enabling modular and reusable code.

  • Encapsulation: Bundling data and methods. Example: Using private variables with public getters/setters.

  • Inheritance: Deriving new classes from existing ones. Example: Class 'Dog' inherits from class 'Animal'.

  • Polymorphism: Ability to take many forms. Example: Method overriding in subclasses.

  • Abst...

View all Java Developer interview questions
A Senior Java Developer was asked 2mo ago
Q. Explain API Gateway.
Ans. 

An API Gateway acts as a single entry point for managing and routing requests to various microservices.

  • Centralized access point for multiple microservices.

  • Handles request routing, composition, and protocol translation.

  • Provides security features like authentication and rate limiting.

  • Can aggregate responses from multiple services into a single response.

  • Examples include AWS API Gateway, Kong, and Apigee.

View all Senior Java Developer interview questions
A Power Automate Architect was asked 5mo ago
Q. What are the best practices for Power Automate?
Ans. 

Power Automate best practices involve proper planning, testing, and documentation.

  • Plan your flows before creating them to ensure they meet your requirements.

  • Test your flows thoroughly to identify and fix any issues before deployment.

  • Document your flows, including their purpose, inputs, outputs, and any dependencies.

  • Use naming conventions and comments to make your flows easier to understand and maintain.

  • Consider se...

A Power Automate Architect was asked 5mo ago
Q. How do you use multiple data sources in Power Automate?
Ans. 

Power Automate allows for multiple data sources to be used in a single flow.

  • Power Automate supports connecting to various data sources such as SharePoint, Excel, SQL Server, and more.

  • You can use multiple data sources in a single flow by adding multiple actions to connect to different sources.

  • For example, you can retrieve data from a SharePoint list and then update a SQL Server database in the same flow.

A Software Developer was asked 5mo ago
Q. What is the difference between volatile and atomic variables?
Ans. 

Volatile variables are used to indicate that a variable's value can be changed unexpectedly, while atomic variables ensure that operations on the variable are executed as a single, indivisible unit.

  • Volatile variables are used when a variable's value can be changed by multiple threads or external factors, and the compiler should not optimize access to that variable.

  • Atomic variables ensure that operations on the var...

View all Software Developer interview questions
A Software Developer was asked 5mo ago
Q. How can caching be implemented?
Ans. 

Caching can be implemented by storing frequently accessed data in a temporary storage area to improve performance.

  • Use caching libraries like Redis or Memcached to store data in memory for quick access

  • Implement caching at different levels such as application-level caching, database query caching, and HTTP caching

  • Set expiration times for cached data to ensure freshness and prevent stale data

  • Use caching strategies li...

View all Software Developer interview questions
An Order Processing Executive was asked 5mo ago
Q. How soon can you join?
Ans. 

I can join immediately or within a week, depending on your needs and my current commitments.

  • I am available to start immediately if required.

  • If you need some time for onboarding, I can join within a week.

  • I can adjust my schedule to meet your timeline.

  • For example, if you need someone urgently, I can prioritize this role.

View all Order Processing Executive interview questions
Are these interview questions helpful?
An Order Processing Executive was asked 5mo ago
Q. Are you comfortable working night shifts without a night allowance?
Ans. 

I am open to working night shifts without additional allowances, as I prioritize the job's responsibilities and growth opportunities.

  • Flexibility: I have previously worked night shifts in retail, adapting my schedule to meet business needs.

  • Commitment: My focus is on contributing to the team's success, regardless of the shift timing.

  • Work-Life Balance: I manage my time effectively to ensure personal commitments are m...

View all Order Processing Executive interview questions
A QA Engineer was asked 6mo ago
Q. Tell me about yourself and your work experience.
Ans. 

I am a dedicated QA Engineer with a passion for ensuring software quality through meticulous testing and process improvement.

  • Over 5 years of experience in software testing, focusing on both manual and automated testing.

  • Proficient in using tools like Selenium and JIRA for test automation and bug tracking.

  • Led a team in a project that reduced the bug rate by 30% through improved testing strategies.

  • Strong understandin...

View all QA Engineer interview questions
A Data Engineer was asked 6mo ago
Q. Why Zensar and not another company?
Ans. 

Zensar offers innovative solutions, a collaborative culture, and growth opportunities that align with my career goals.

  • Zensar's commitment to digital transformation aligns with my passion for leveraging data to drive business insights.

  • The company's focus on emerging technologies like AI and machine learning excites me, as I want to work on cutting-edge projects.

  • Zensar's collaborative work environment fosters teamwo...

View all Data Engineer interview questions

Zensar Technologies Interview Experiences

258 interviews found

I applied via Naukri.com

Round 1 - Technical 

(14 Questions)

  • Q1. Difference between display: inline, display: block and display: inline-block in CSS?
  • Ans. 

    display: inline, block and inline-block are CSS properties that define how an element is displayed on a webpage.

    • display: inline - element is displayed inline with the text and other inline elements. It does not start on a new line.

    • display: block - element is displayed as a block-level element, starting on a new line and taking up the full width available.

    • display: inline-block - element is displayed inline with the text...

  • Answered by AI
  • Q2. What are pseudo classes and pseudo elements in CSS?
  • Ans. 

    Pseudo classes and pseudo elements are CSS selectors that target specific states or parts of an element.

    • Pseudo classes target specific states of an element, such as :hover, :active, and :focus.

    • Pseudo elements target specific parts of an element, such as ::before and ::after.

    • Pseudo classes and pseudo elements are denoted by a colon (:) or double colon (::) preceding the selector.

    • They can be used to add special effects, ...

  • Answered by AI
  • Q3. What are the ways to create objects in JS?
  • Ans. 

    There are several ways to create objects in JS, including object literals, constructor functions, and ES6 classes.

    • Object literals: var obj = {key1: value1, key2: value2}

    • Constructor functions: function Person(name, age) {this.name = name; this.age = age}; var person1 = new Person('John', 30)

    • ES6 classes: class Car {constructor(make, model) {this.make = make; this.model = model}}; var car1 = new Car('Toyota', 'Corolla')

  • Answered by AI
  • Q4. What are some of the string methods in JS?
  • Ans. 

    JS has various string methods to manipulate and extract information from strings.

    • toUpperCase() - converts string to uppercase

    • toLowerCase() - converts string to lowercase

    • charAt() - returns character at specified index

    • indexOf() - returns index of specified substring

    • slice() - extracts a section of a string

    • replace() - replaces specified substring with another string

    • split() - splits a string into an array of substrings

    • trim(...

  • Answered by AI
  • Q5. What are the new input types in HTML5?
  • Ans. 

    New input types in HTML5 include color, date, email, number, range, tel, and more.

    • Color: Allows users to select a color.

    • Date: Provides a date picker for selecting dates.

    • Email: Ensures that the input is a valid email address.

    • Number: Restricts input to numeric values.

    • Range: Allows users to select a value within a specified range.

    • Tel: Ensures that the input is a valid telephone number.

  • Answered by AI
  • Q6. What are forwardRefs in React?
  • Ans. 

    ForwardRefs allow React components to pass refs to their children.

    • Used to access child component's DOM node or instance

    • Used with functional components

    • Helps in avoiding prop drilling

    • Can be used with React.memo for performance optimization

  • Answered by AI
  • Q7. What is a z-index in CSS?
  • Ans. 

    z-index is a CSS property that controls the stacking order of elements on a webpage.

    • z-index only works on positioned elements (position: absolute, position: relative, position: fixed, or position: sticky)

    • Higher z-index values stack on top of lower ones

    • Negative z-index values can be used to place elements behind other elements

    • z-index can be used to create layered effects on a webpage

  • Answered by AI
  • Q8. What is function currying in JS?
  • Ans. 

    Function currying is a technique of transforming a function that takes multiple arguments into a sequence of functions that each take a single argument.

    • Currying allows partial application of a function.

    • It helps in creating reusable functions.

    • Curried functions can be composed easily.

    • It can be achieved using bind() or closures.

    • Example: const add = x => y => x + y; add(2)(3) returns 5.

  • Answered by AI
  • Q9. What is the difference between element and components in React?
  • Ans. 

    Elements are the smallest building blocks of React UI, while components are made up of one or more elements.

    • Elements are immutable and cannot be changed once created

    • Components are reusable and can be composed of other components

    • Elements are represented by tags, while components are represented by functions or classes

    • Examples of elements include

      , , and , while examples of components include
      ,
      , and
Answered by AI
  • Q10. What are the type of functions in JS?
  • Ans. 

    JS has two types of functions: named and anonymous.

    • Named functions are declared with a name and can be called anywhere in the code.

    • Anonymous functions are declared without a name and are usually assigned to a variable.

    • Arrow functions are a shorthand for anonymous functions.

    • Higher-order functions take one or more functions as arguments or return a function as a result.

  • Answered by AI
  • Q11. What is a dynamic import in React?
  • Ans. 

    Dynamic import is a feature in React that allows loading components or modules on demand.

    • Used to improve performance by loading components only when needed

    • Implemented using the 'import()' function

    • Returns a Promise that resolves to the module

    • Can be used with React.lazy() to lazy load components

  • Answered by AI
  • Q12. What is bubbling and capturing in JS?
  • Ans. 

    Bubbling and capturing are two phases of event propagation in JavaScript.

    • Bubbling is the default phase where the event starts from the innermost element and propagates outwards to the outermost element.

    • Capturing is the opposite phase where the event starts from the outermost element and propagates inwards to the innermost element.

    • Both phases can be used to handle events on parent and child elements.

    • Event.stopPropagatio...

  • Answered by AI
  • Q13. What is position: absolute vs position: relative in CSS?
  • Ans. 

    position: absolute takes element out of normal flow, position: relative keeps element in normal flow but allows for positioning

    • position: absolute removes element from normal flow and positions it relative to the nearest positioned ancestor

    • position: relative keeps element in normal flow but allows for positioning relative to its normal position

    • position: absolute elements are positioned relative to the nearest positioned...

  • Answered by AI
  • Q14. What is canvas and SVGs?
  • Ans. 

    Canvas and SVGs are two different ways to create graphics on the web.

    • Canvas is a bitmap-based drawing technology that allows for dynamic, scriptable rendering of 2D shapes and bitmap images.

    • SVG is a vector-based drawing technology that allows for scalable, resolution-independent graphics.

    • Canvas is best suited for complex, interactive graphics, while SVG is best suited for static, high-resolution graphics.

    • Canvas is supp...

  • Answered by AI

    Interview Preparation Tips

    Topics to prepare for Zensar Technologies UI Frontend Developer interview:
    • Html5
    • CSS3
    • Javascript
    • React
    • Bootstrap
    Interview preparation tips for other job seekers - Be confident, answer what you know, accept what you don't. They only had 1 round for React Frontend Developer role.

    Skills evaluated in this interview

    UI Frontend Developer Interview Questions asked at other Companies

    Q1. What are pseudo classes and pseudo elements in CSS?
    View answer (1)

    Interview Questions & Answers

    user image Anonymous

    posted on 13 Jan 2025

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

    I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.

    Round 1 - Technical 

    (5 Questions)

    • Q1. API related questions. focused on RPA
    • Q2. POwer Automate best practice
    • Ans. 

      Power Automate best practices involve proper planning, testing, and documentation.

      • Plan your flows before creating them to ensure they meet your requirements.

      • Test your flows thoroughly to identify and fix any issues before deployment.

      • Document your flows, including their purpose, inputs, outputs, and any dependencies.

      • Use naming conventions and comments to make your flows easier to understand and maintain.

      • Consider securit...

    • Answered by AI
    • Q3. Deployment related questions
    • Q4. Diff types of API
    • Ans. 

      Different types of APIs include REST, SOAP, GraphQL, and gRPC.

      • REST API: Uses HTTP methods like GET, POST, PUT, DELETE for communication.

      • SOAP API: Uses XML for message format and WSDL for service description.

      • GraphQL API: Allows clients to request only the data they need.

      • gRPC API: Uses Protocol Buffers for serialization and supports bidirectional streaming.

    • Answered by AI
    • Q5. Multiple datasource use in PA
    • Ans. 

      Power Automate allows for multiple data sources to be used in a single flow.

      • Power Automate supports connecting to various data sources such as SharePoint, Excel, SQL Server, and more.

      • You can use multiple data sources in a single flow by adding multiple actions to connect to different sources.

      • For example, you can retrieve data from a SharePoint list and then update a SQL Server database in the same flow.

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Moderate difficult. Asked about API, custom connector, high level qus related to power automate.
    Interview experience
    2
    Poor
    Difficulty level
    Moderate
    Process Duration
    2-4 weeks
    Result
    Not Selected

    I applied via Approached by Company and was interviewed in Dec 2024. There were 3 interview rounds.

    Round 1 - Technical 

    (1 Question)

    • Q1. Android interview asked about coroutines, flow, why we use MVVM instead of MVP, viewmodel pros and cons, security and how to hide keys in package
    Round 2 - Group Discussion 

    2nd round was about again Android but more focused on security features of android

    Round 3 - Coding Test 

    3rd round was live coding . I was asked to make an app from scratch in 1 hour without even using google.

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Even after clearing all rounds I was rejected by HR because of salary issue. HR didn't communicated this before interviews and wasted our time and kept me as a backup plan. It is painful to get rejected after clearing all rounds and putting soo much efforts.

    Senior Software Engineer Interview Questions asked at other Companies

    Q1. Nth Prime Number Problem Statement Find the Nth prime number given a number N. Explanation: A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exactly two distinct positive divisors: 1... read more
    View answer (3)

    Fullstack Java Developer Interview Questions & Answers

    user image Sagar kumar singh

    posted on 26 Nov 2024

    Interview experience
    1
    Bad
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Technical 

    (2 Questions)

    • Q1. Java and angular
    • Q2. Coding questions
    Round 2 - Technical 

    (2 Questions)

    • Q1. Again coding and your FE Skills
    • Q2. Some questins from Spring & other

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Please don't go for this company as they will conduct the interview process and once you clear everything then they will ask you for HR Discussions then after the they will send you email that they have not considered your profile .this is hell and fully waste of time.

    Fullstack Java Developer Interview Questions asked at other Companies

    Q1. If needed, will you work on an older technology stack?
    View answer (2)
    Interview experience
    3
    Average
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    No response

    I applied via Naukri.com and was interviewed in Aug 2024. There were 2 interview rounds.

    Round 1 - Technical 

    (5 Questions)

    • Q1. Tell me about yourself
    • Q2. Explain Spring Boot flow in your project
    • Ans. 

      Spring Boot simplifies the development of Java applications by providing a set of tools and conventions.

      • Spring Boot eliminates the need for manual configuration by providing defaults and auto-configuration.

      • It includes embedded servers like Tomcat, Jetty, or Undertow for easy deployment.

      • Spring Boot starters help in quickly setting up dependencies and configurations.

      • Annotations like @SpringBootApplication and @RestContro...

    • Answered by AI
    • Q3. Explain Spring Security flow in your project
    • Q4. What is @SpringBootApplication
    • Ans. 

      Annotation used to mark a class as a Spring Boot application

      • Main annotation in Spring Boot to indicate the starting point of the application

      • Combines @Configuration, @EnableAutoConfiguration, and @ComponentScan annotations

      • Used to enable the auto-configuration feature in Spring Boot

      • Reduces the need for XML configuration in Spring applications

    • Answered by AI
    • Q5. Coding Question - Find frequency of all the all the elements in Given String
    Round 2 - HR 

    (5 Questions)

    • Q1. Introduce yourself
    • Q2. What is Success according to you
    • Ans. 

      Success is achieving personal goals, feeling fulfilled, and making a positive impact on others.

      • Success is subjective and can vary from person to person.

      • It is not just about achieving wealth or fame, but also about personal growth and happiness.

      • Success can be measured by the impact one has on others and the legacy they leave behind.

      • Examples of success include reaching career milestones, maintaining healthy relationships...

    • Answered by AI
    • Q3. What are your strengths and weekness
    • Ans. 

      My strengths include strong problem-solving skills and attention to detail. My weakness is sometimes being too critical of my own work.

      • Strength: Strong problem-solving skills - I enjoy tackling complex problems and finding efficient solutions.

      • Strength: Attention to detail - I take pride in producing high-quality work and ensuring accuracy.

      • Weakness: Being too critical of my own work - I strive for perfection and sometim...

    • Answered by AI
    • Q4. Tell me about your Family Background
    • Ans. 

      I come from a close-knit family with a strong emphasis on education and hard work.

      • Family is supportive and values education

      • Parents are both professionals

      • Have a sibling who is also in the tech industry

    • Answered by AI
    • Q5. How do you solve any problem

    Skills evaluated in this interview

    Java Developer Interview Questions asked at other Companies

    Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
    View answer (7)
    Interview experience
    5
    Excellent
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Technical 

    (2 Questions)

    • Q1. What is the difference between volatile and atomic variables?
    • Ans. 

      Volatile variables are used to indicate that a variable's value can be changed unexpectedly, while atomic variables ensure that operations on the variable are executed as a single, indivisible unit.

      • Volatile variables are used when a variable's value can be changed by multiple threads or external factors, and the compiler should not optimize access to that variable.

      • Atomic variables ensure that operations on the variable...

    • Answered by AI
    • Q2. How can caching be implemented?
    • Ans. 

      Caching can be implemented by storing frequently accessed data in a temporary storage area to improve performance.

      • Use caching libraries like Redis or Memcached to store data in memory for quick access

      • Implement caching at different levels such as application-level caching, database query caching, and HTTP caching

      • Set expiration times for cached data to ensure freshness and prevent stale data

      • Use caching strategies like la...

    • Answered by AI

    Software Developer Interview Questions asked at other Companies

    Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
    View answer (43)

    Intern Interview Questions & Answers

    user image Anonymous

    posted on 1 Jan 2025

    Interview experience
    5
    Excellent
    Difficulty level
    Moderate
    Process Duration
    -
    Result
    Not Selected

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

    Round 1 - Coding Test 

    The coding test consisted of easy to medium difficulty questions: 1. Find the Kth largest element. 2. Print an array based on the sequence specified in a different array. Additionally, there was a classical stack problem involving valid parentheses.

    Round 2 - Hackathon 

    (1 Question)

    • Q1. Build web app, inventory management

    Interview Preparation Tips

    Topics to prepare for Zensar Technologies Intern interview:
    • Javascript
    • recat

    Intern Interview Questions asked at other Companies

    Q1. There is a housing society “The wasteful society”. You collect all the household garbage and sell it to 5 different businesses: a. Compost Manufacturer, b. Plastic Recycler, c. Paper Recycler, d. Metal Recycler, e. Miscellaneous. Determine ... read more
    View answer (8)
    Interview experience
    5
    Excellent
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Technical 

    (1 Question)

    • Q1. Question on Spark and python and sql
    Round 2 - Technical 

    (1 Question)

    • Q1. Questions on sql and python and spark
    Round 3 - HR 

    (1 Question)

    • Q1. General HR questions

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Prepare well on spark more

    Software Engineer Interview Questions asked at other Companies

    Q1. Four people need to cross a bridge at night with only one torch that can only illuminate two people at a time. Person A takes 1 minute, B takes 2 minutes, C takes 7 minutes, and D takes 10 minutes to cross. When two people cross together, t... read more
    View answer (273)
    Interview experience
    1
    Bad
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    No response

    I applied via Naukri.com and was interviewed in Aug 2024. There were 2 interview rounds.

    Round 1 - Coding Test 

    MCQ'S on Core Java, Java8, SQL, Microservices and Coding question in Java.

    Round 2 - One-on-one 

    (2 Questions)

    • Q1. Java 8 concepts, Multi threading, Collections, Microservices, SOLID PRINCIPLES, Design Patterns and Java 8 coding and SQL queries
    • Q2. Take a list and find the list containing prime numbers in list, Find the highest salary of employees using streams and also basic SQL queries on joins
    • Ans. 

      Use Java streams to filter prime numbers from a list, find highest employee salary, and demonstrate basic SQL joins.

      • Use Java streams to filter prime numbers from the list

      • Use streams to find the highest salary of employees

      • Demonstrate basic SQL queries for joins

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Prepare on Java 8, Multi threading, Core Java, Solid principles and Design patterns.
    Anyhow how much you prepare they will reject straight away by finding some silly reasons they don't have intentions to hire just conducting interviews for sake and publicity, finally ghosting candidates.
    Don't attend and apply for this company

    Skills evaluated in this interview

    Backend Java Developer Interview Questions asked at other Companies

    Q1. What is the program to filter employees who have a salary greater than 40,000 from the employee list?
    View answer (1)
    Interview experience
    4
    Good
    Difficulty level
    Easy
    Process Duration
    Less than 2 weeks
    Result
    Not Selected

    I applied via Naukri.com and was interviewed in Oct 2024. There was 1 interview round.

    Round 1 - Technical 

    (2 Questions)

    • Q1. How you differentiate authorization and authentication ?
    • Ans. 

      Authorization determines what a user can access, while authentication verifies the user's identity.

      • Authorization controls access to resources based on user permissions

      • Authentication verifies the user's identity through credentials like passwords or biometrics

      • Authorization comes after authentication in the access control process

      • Example: After logging into a system (authentication), a user is authorized to view certain f...

    • Answered by AI
    • Q2. What is SSO ?
    • Ans. 

      SSO stands for Single Sign-On, a method of access control that allows a user to log in with a single ID and password to access multiple applications.

      • SSO eliminates the need for users to remember multiple passwords for different applications.

      • It improves user experience by reducing the number of times a user has to log in.

      • SSO can be implemented using technologies like SAML, OAuth, or OpenID Connect.

      • Example: A user logs i...

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - very easy questions on IAM in general.

    Project Manager Interview Questions asked at other Companies

    Q1. How did you manage the software release and deployment?
    View answer (2)

    Senior Software Engineer Interview Questions & Answers

    user image Shreyansh Srivastava

    posted on 26 Nov 2024

    Interview experience
    1
    Bad
    Difficulty level
    Moderate
    Process Duration
    -
    Result
    No response

    I applied via Job Fair and was interviewed in Oct 2024. There was 1 interview round.

    Round 1 - Technical 

    (1 Question)

    • Q1. Implement Microservice for inserting record
    • Ans. 

      Implement a microservice to handle record insertion using RESTful API principles.

      • Choose a programming language (e.g., Node.js, Python, Java) for the microservice.

      • Use a framework (e.g., Express for Node.js, Flask for Python) to simplify API creation.

      • Define a RESTful endpoint (e.g., POST /records) for inserting records.

      • Implement data validation to ensure the integrity of incoming data.

      • Connect to a database (e.g., MongoDB...

    • Answered by AI

    Senior Software Engineer Interview Questions asked at other Companies

    Q1. Nth Prime Number Problem Statement Find the Nth prime number given a number N. Explanation: A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exactly two distinct positive divisors: 1... read more
    View answer (3)

    Top trending discussions

    View All
    Interview Tips & Stories
    2w (edited)
    timepasstiwari
    ·
    A Digital Markter
    Nailed the interview, still rejected
    Just had the BEST interview ever – super positive and encouraging! But got rejected. Interviewer said I was the most prepared, knew it was a full-time role (unlike others), and loved my answers. One of my questions was even called "the best ever asked!" He showed me around, said I was exactly what they wanted, and would get back by Friday. I was so hyped! Then today, I got the rejection email. No reason given, just "went with someone else." Feels bad when your best isn't enough. Anyone else been there? How'd you cope?
    Got a question about Zensar Technologies?
    Ask anonymously on communities.

    Zensar Technologies Interview FAQs

    How many rounds are there in Zensar Technologies interview?
    Zensar Technologies interview process usually has 2-3 rounds. The most common rounds in the Zensar Technologies interview process are Technical, HR and Coding Test.
    How to prepare for Zensar Technologies interview?
    Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Zensar Technologies. The most common topics and skills that interviewers at Zensar Technologies expect are Agile Coaching, Software Configuration Management, Technology Consulting, SQL and Javascript.
    What are the top questions asked in Zensar Technologies interview?

    Some of the top questions asked at the Zensar Technologies interview -

    1. Feature of oop, difference between function overloading and overriding, constru...read more
    2. What are pseudo classes and pseudo elements in C...read more
    3. Which computer languages are you comfortable wit...read more
    What are the most common questions asked in Zensar Technologies HR round?

    The most common HR questions asked in Zensar Technologies interview are -

    1. What are your strengths and weakness...read more
    2. Where do you see yourself in 5 yea...read more
    3. Tell me about yourse...read more
    How long is the Zensar Technologies interview process?

    The duration of Zensar Technologies interview process can vary, but typically it takes about less than 2 weeks to complete.

    Tell us how to improve this page.

    Overall Interview Experience Rating

    3.8/5

    based on 200 interview experiences

    Difficulty level

    Easy 23%
    Moderate 72%
    Hard 5%

    Duration

    Less than 2 weeks 61%
    2-4 weeks 31%
    4-6 weeks 5%
    More than 8 weeks 3%
    View more

    Interview Questions from Similar Companies

    DXC Technology Interview Questions
    3.7
     • 832 Interviews
    Nagarro Interview Questions
    4.0
     • 788 Interviews
    NTT Data Interview Questions
    3.8
     • 653 Interviews
    Publicis Sapient Interview Questions
    3.5
     • 643 Interviews
    GlobalLogic Interview Questions
    3.6
     • 620 Interviews
    EPAM Systems Interview Questions
    3.7
     • 568 Interviews
    UST Interview Questions
    3.8
     • 539 Interviews
    View all

    Zensar Technologies Reviews and Ratings

    based on 2.7k reviews

    3.7/5

    Rating in categories

    3.5

    Skill development

    3.8

    Work-life balance

    3.4

    Salary

    3.4

    Job security

    3.6

    Company culture

    3.0

    Promotions

    3.5

    Work satisfaction

    Explore 2.7k Reviews and Ratings
    Change Management Specialist

    Hyderabad / Secunderabad,

    Pune

    +1

    7-10 Yrs

    ₹ 14-16 LPA

    Java Full Stack Developer

    Pune,

    Chennai

    +1

    5-10 Yrs

    Not Disclosed

    Explore more jobs
    Senior Software Engineer
    3.9k salaries
    unlock blur

    ₹7 L/yr - ₹26.7 L/yr

    Software Engineer
    3.8k salaries
    unlock blur

    ₹2 L/yr - ₹10.4 L/yr

    Technical Specialist
    1.5k salaries
    unlock blur

    ₹10 L/yr - ₹35 L/yr

    Softwaretest Engineer
    823 salaries
    unlock blur

    ₹2.4 L/yr - ₹9.4 L/yr

    Senior Technical Specialist
    818 salaries
    unlock blur

    ₹11.3 L/yr - ₹43 L/yr

    Explore more salaries
    Compare Zensar Technologies with

    DXC Technology

    3.7
    Compare

    Sutherland Global Services

    3.5
    Compare

    Optum Global Solutions

    4.0
    Compare

    Virtusa Consulting Services

    3.7
    Compare
    write
    Share an Interview