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 Senior Technical Specialist Interview Questions and Answers for Experienced

Updated 20 Sep 2024

Zensar Technologies Senior Technical Specialist Interview Experiences for Experienced

1 interview found

I applied via Naukri.com and was interviewed in Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Role on the project and technologies i have worked on.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about your answers. Be prepared with the contents from your resume.
Content of you resume is important and you should be able to answer questions on that.
Be aware of the latest trends in your domain. If you have not worked on that still you will be in a position to say that you know about it but haven’t got opportunity to work on.

Interview questions from similar companies

I applied via Job Fair and was interviewed in Sep 2022. There were 3 interview rounds.

Round 1 - Group Discussion 

Tell me about your previous experience

Round 2 - One-on-one 

(1 Question)

  • Q1. Technical question. Scenario based
Round 3 - HR 

(1 Question)

  • Q1. Package discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Get the offer, hr discussion about the salary
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. I have given interview for forntend angular developer. Questions were related with basics of angular, javascript and javascript coding. then in second technical round advanced angular related questions wer...

Interview Preparation Tips

Topics to prepare for UST Senior Software Developer interview:
  • Angular
  • Javascript
  • HTML
  • CSS
  • Agile Methodology
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Oct 2024, where I was asked the following questions.

  • Q1. Can you introduce yourself?
  • Q2. Odoo question and some devops related question
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(4 Questions)

  • Q1. Java and spring boot questions
  • Q2. Sort the array in ascending order
  • Ans. 

    Sorts an array of strings in ascending order.

    • Use a sorting algorithm like bubble sort, insertion sort, or quicksort.

    • Compare adjacent elements and swap them if they are in the wrong order.

    • Repeat the process until the array is sorted.

  • Answered by AI
  • Q3. Java collections questions
  • Q4. Project agile , cicdpipeline
Round 2 - Technical 

(1 Question)

  • Q1. Brush up java and spring and sorting questions

Skills evaluated in this interview

I applied via Referral and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Fail safe fail fast Why is string immutable String buffer vs String builder Executor framework Lombok Transient Volatile Synchronized keyword Finally keyword Finalize Will finally execute if we return ...
  • Ans. 

    Questions related to Java concepts and frameworks

    • Fail safe fail fast - used in concurrent programming to handle exceptions and ensure thread safety

    • String is immutable to ensure thread safety and prevent unintended changes to the string

    • String buffer vs String builder - both are used to manipulate strings, but string builder is faster and not thread-safe

    • Executor framework - used for asynchronous task execution and thread...

  • Answered by AI
  • Q2. Spring bean scopes

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare core java thoroughly
Round 1 - Technical 

(1 Question)

  • Q1. Linked list,semaphores
Round 2 - Coding Test 

Pointers

Round 3 - Aptitude Test 

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

1hr,deep understanding of java , design patterns , spring boot , dsa , sql

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Oops java8 features Spring boot flow micro services architecture

I appeared for an interview before Feb 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

This round mainly revolved around concepts from Data Warehouse and Big Data.

  • Q1. Can you explain the ETL process in a data warehouse?
  • Ans. 

    ETL process involves extracting data from various sources, transforming it to fit the data warehouse schema, and loading it into the warehouse.

    • Extract: Data is extracted from different sources such as databases, files, APIs, etc.

    • Transform: Data is cleaned, filtered, aggregated, and transformed to match the data warehouse schema.

    • Load: Transformed data is loaded into the data warehouse for analysis and reporting.

    • Example:...

  • Answered by AI
  • Q2. What do you mean by a degenerate dimension?
  • Ans. 

    A degenerate dimension is a dimension that consists of only one attribute or column.

    • It is typically used when a dimension table has only one column and no other attributes.

    • It is often denormalized and included directly in the fact table.

    • Example: a date dimension with only a date column can be considered a degenerate dimension.

  • Answered by AI
Round 2 - Video Call 

(4 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

This round had questions from Data Warehouse and DBMS.

  • Q1. What is the difference between a Fact Table and a Dimension Table in a Data Warehouse?
  • Ans. 

    Fact Table contains quantitative data and measures, while Dimension Table contains descriptive attributes.

    • Fact Table contains numerical data that can be aggregated, such as sales revenue or quantity sold

    • Dimension Table contains descriptive attributes for analysis, such as product name or customer details

    • Fact Table typically has a many-to-one relationship with Dimension Table

    • Fact Table is usually normalized, while Dimen...

  • Answered by AI
  • Q2. What is the difference between OLAP and OLTP?
  • Ans. 

    OLAP is used for analyzing historical data for decision-making, while OLTP is used for managing real-time transactional data.

    • OLAP stands for Online Analytical Processing, used for complex queries and data analysis.

    • OLTP stands for Online Transaction Processing, used for managing real-time transactional data.

    • OLAP databases are optimized for read-heavy workloads, while OLTP databases are optimized for write-heavy workload...

  • Answered by AI
  • Q3. How do you delete duplicates from a table in SQL Server?
  • Ans. 

    Use a common table expression (CTE) with ROW_NUMBER() function to delete duplicates from a table in SQL Server.

    • Create a CTE with ROW_NUMBER() function to assign a unique row number to each row based on the duplicate column(s)

    • Use the DELETE statement with the CTE to delete rows where the row number is greater than 1

  • Answered by AI
  • Q4. What is the difference between INNER JOIN and OUTER JOIN in SQL?
  • Ans. 

    INNER JOIN returns rows when there is at least one match in both tables, while OUTER JOIN returns all rows from both tables.

    • INNER JOIN only returns rows that have matching values in both tables

    • OUTER JOIN returns all rows from both tables, filling in NULLs for unmatched rows

    • Types of OUTER JOIN include LEFT JOIN, RIGHT JOIN, and FULL JOIN

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.id = table2.id

    • Example: SEL...

  • Answered by AI
Round 3 - HR 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Easy

This was a typical HR round with some standard Behavioral questions.

  • Q1. Can you tell me something about yourself?
  • Q2. Why are you looking for a job change?

Interview Preparation Tips

Eligibility criteriaAbove 1+ years of experienceGlobal Logic interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Data Warehouse, DBMS, Java ,OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Zensar Technologies Interview FAQs

How many rounds are there in Zensar Technologies Senior Technical Specialist interview for experienced candidates?
Zensar Technologies interview process for experienced candidates usually has 2-3 rounds. The most common rounds in the Zensar Technologies interview process for experienced candidates are Technical, One-on-one Round and HR.
How to prepare for Zensar Technologies Senior Technical Specialist interview for experienced candidates?
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 Business Intelligence, Dashboards, OBIEE and Salesforce CRM.
What are the top questions asked in Zensar Technologies Senior Technical Specialist interview for experienced candidates?

Some of the top questions asked at the Zensar Technologies Senior Technical Specialist interview for experienced candidates -

  1. How to integrate widgets in backbase por...read more
  2. Backbase architecture as position for backbase develo...read more
  3. Few technical questions related to my dom...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

DXC Technology Interview Questions
3.7
 • 802 Interviews
Nagarro Interview Questions
4.0
 • 763 Interviews
NTT Data Interview Questions
3.8
 • 627 Interviews
Publicis Sapient Interview Questions
3.5
 • 621 Interviews
GlobalLogic Interview Questions
3.6
 • 592 Interviews
UST Interview Questions
3.8
 • 517 Interviews
CGI Group Interview Questions
4.0
 • 493 Interviews
View all
Zensar Technologies Senior Technical Specialist Salary
based on 725 salaries
₹11.5 L/yr - ₹40.3 L/yr
27% more than the average Senior Technical Specialist Salary in India
View more details

Zensar Technologies Senior Technical Specialist Reviews and Ratings

based on 82 reviews

3.4/5

Rating in categories

3.1

Skill development

3.4

Work-life balance

3.2

Salary

3.0

Job security

3.1

Company culture

2.6

Promotions

3.0

Work satisfaction

Explore 82 Reviews and Ratings
Software Engineer
3.8k salaries
unlock blur

₹2 L/yr - ₹12 L/yr

Senior Software Engineer
3.8k salaries
unlock blur

₹6.9 L/yr - ₹26 L/yr

Technical Specialist
1.5k salaries
unlock blur

₹9.8 L/yr - ₹35 L/yr

Softwaretest Engineer
825 salaries
unlock blur

₹2.4 L/yr - ₹7.5 L/yr

Senior Technical Specialist
725 salaries
unlock blur

₹11.5 L/yr - ₹40.2 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

FIS

3.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview