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
3.7

based on 2.4k Reviews

Filter interviews by

Zensar Technologies Senior Lead Consultant Interview Questions, Process, and Tips

Updated 19 Jul 2024

Zensar Technologies Senior Lead Consultant Interview Experiences

1 interview found

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Client Interview 

(6 Questions)

  • Q1. Risky user identification and process to mitigate it.
  • Ans. 

    Risky user identification involves analyzing user behavior and implementing measures to reduce potential risks.

    • Utilize user behavior analytics to identify unusual patterns or activities

    • Implement multi-factor authentication for sensitive actions

    • Regularly review user access permissions and revoke unnecessary privileges

    • Train employees on cybersecurity best practices to prevent risky behavior

    • Monitor user activity in real-t...

  • Answered by AI
  • Q2. Email campaigns hie to handle them
  • Ans. 

    Email campaigns should be handled strategically with personalized content and targeted audience segmentation.

    • Segment your audience based on demographics, behavior, or preferences to send personalized content.

    • Use A/B testing to optimize subject lines, content, and timing for better engagement.

    • Monitor key metrics such as open rates, click-through rates, and conversions to measure campaign success.

    • Automate email workflows...

  • Answered by AI
  • Q3. Siem content development and use cases example
  • Ans. 

    Siem content development involves creating rules and use cases to detect and respond to security threats.

    • Developing custom rules to monitor for specific security events

    • Creating use cases to identify patterns of suspicious activity

    • Leveraging threat intelligence feeds to enhance detection capabilities

  • Answered by AI
  • Q4. Threat intelligence active and passive
  • Q5. Process for brute force mitigation
  • Ans. 

    Implementing a process to prevent brute force attacks on a system.

    • Implement account lockout policies after a certain number of failed login attempts

    • Use CAPTCHA or multi-factor authentication to verify user identity

    • Monitor login attempts and block IP addresses with suspicious activity

    • Regularly update passwords and educate users on strong password practices

  • Answered by AI
  • Q6. Step to safeguard if account got compromised.
  • Ans. 

    Enable two-factor authentication, change passwords, monitor account activity.

    • Enable two-factor authentication for added security.

    • Change passwords regularly to prevent unauthorized access.

    • Monitor account activity for any suspicious behavior.

    • Notify the account provider immediately if account is compromised.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don’t join for cyber security. There aren’t any good project. No segregation of L1-3 and even leads all have to do ticketing work.
In cyber security you have to do everything VM, IAM., SIEM content development and integration and monitoring and that in 9 hrs job which extends to 12 hrs daily.
Life is not easy.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. All about angular framework and Typescript
  • Q2. Javascript precoded question
Round 2 - Technical 

(3 Questions)

  • Q1. In this round as well as Angular related question
  • Q2. Lifecycle hook of angular
  • Ans. 

    Lifecycle hooks in Angular are methods that allow you to tap into the lifecycle of a component or directive.

    • Lifecycle hooks include ngOnInit, ngOnChanges, ngDoCheck, ngOnDestroy, etc.

    • ngOnInit is used for initialization logic, ngOnChanges is used for reacting to input changes, ngOnDestroy is used for cleanup tasks, etc.

    • Example: ngOnInit() { console.log('Component initialized'); }

  • Answered by AI
  • Q3. Lazy loading concept

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Mysql query for 3rd highest salary
  • Ans. 

    Use a subquery to find the third highest salary from the employees table in MySQL.

    • Use a subquery to select distinct salaries from the employees table.

    • Order the salaries in descending order and use LIMIT to get the third highest salary.

    • Example: SELECT DISTINCT salary FROM employees ORDER BY salary DESC LIMIT 2, 1;

  • Answered by AI
  • Q2. What are the steps to connect to a database?
  • Ans. 

    Steps to connect to a database involve specifying the database type, providing credentials, and establishing a connection.

    • Specify the type of database you want to connect to (e.g. MySQL, PostgreSQL, MongoDB).

    • Provide the necessary credentials such as username and password.

    • Establish a connection using a programming language or tool like JDBC, ODBC, or ORM frameworks.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - There is a considerable amount of internal politics involved, and the interview process includes the asking of unnecessary questions.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. How to do Deployment
  • Q2. Mvc page life cycle
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Responsibility in current company
  • Ans. 

    I am currently responsible for managing client relationships and project timelines in my current company.

    • Managing client relationships by ensuring clear communication and addressing any concerns or issues promptly

    • Creating and maintaining project timelines to ensure deliverables are met on time

    • Collaborating with cross-functional teams to ensure project success

    • Providing regular updates to clients on project progress and

  • Answered by AI
  • Q2. What are the business process involve in sap pp
  • Ans. 

    SAP PP involves business processes related to production planning and control.

    • Creation of production orders

    • Material requirement planning

    • Capacity planning

    • Shop floor execution

    • Production scheduling

  • Answered by AI
  • Q3. Org structure of SAP
  • Ans. 

    The org structure of SAP refers to the way in which SAP organizes its internal departments, teams, and reporting relationships.

    • SAP typically follows a matrix organizational structure, with functional departments (such as sales, marketing, finance) and project teams working together.

    • The org structure can vary depending on the size and complexity of the organization, as well as the specific industry or market focus.

    • SAP m...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - knowledge of business functions is must

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Write a program to convert aaabbbcdd string to a3b3c1d2.
  • Ans. 

    Program to convert aaabbbcdd string to a3b3c1d2.

    • Iterate through the input string and keep track of the current character and its count

    • Append the character and its count to a new string as you iterate

    • Return the new string once all characters have been processed

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Write a program to find the count of all the possible palindromes in a given string:
  • Ans. 

    Program to find count of palindromes in a given string

    • Iterate through each substring and check if it is a palindrome

    • Use two pointers approach to check for palindromes efficiently

    • Consider both odd and even length palindromes

    • Handle edge cases like single characters and empty strings

    • Example: Input 'ababa', Output: 5 (a, b, aba, b, a)

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Where do you see yourself after 5 Years?

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are good at problem solving, the domain knowledge and the relevant skills required for the job you’ll ace the interviews
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Pega basics touch up
  • Q2. Flows and au flows
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Graphql , Web workers vs Service workers
  • Ans. 

    GraphQL is a query language for APIs, Web workers run scripts in background threads, Service workers are scripts that run in the background and can intercept network requests.

    • GraphQL is a query language for APIs that allows clients to request only the data they need.

    • Web workers run scripts in background threads separate from the main browser thread, improving performance by handling tasks concurrently.

    • Service workers a...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. SOA vs Micro Service
  • Ans. 

    SOA focuses on large, monolithic services while Microservices are small, independent services.

    • SOA is a centralized architecture with shared services, while Microservices are decentralized with each service having its own database.

    • SOA is typically implemented using ESB (Enterprise Service Bus), while Microservices communicate via lightweight protocols like HTTP or messaging queues.

    • SOA is more suitable for large enterpri...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Naukri.com

Round 1 - One-on-one 

(1 Question)

  • Q1. INterview was based on COre Java and J2EE.
Round 2 - One-on-one 

(1 Question)

  • Q1. Questions based on J2EE and Core Java

Zensar Technologies Interview FAQs

How many rounds are there in Zensar Technologies Senior Lead Consultant interview?
Zensar Technologies interview process usually has 1 rounds. The most common rounds in the Zensar Technologies interview process are Client Interview.
What are the top questions asked in Zensar Technologies Senior Lead Consultant interview?

Some of the top questions asked at the Zensar Technologies Senior Lead Consultant interview -

  1. Risky user identification and process to mitigate ...read more
  2. Siem content development and use cases exam...read more
  3. Step to safeguard if account got compromis...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
DXC Technology Interview Questions
3.7
 • 803 Interviews
Mphasis Interview Questions
3.4
 • 789 Interviews
Nagarro Interview Questions
4.0
 • 766 Interviews
View all
Zensar Technologies Senior Lead Consultant Salary
based on 4 salaries
₹24 L/yr - ₹41 L/yr
31% more than the average Senior Lead Consultant Salary in India
View more details
Software Engineer
3.9k salaries
unlock blur

₹2.4 L/yr - ₹10 L/yr

Senior Software Engineer
3.8k salaries
unlock blur

₹6 L/yr - ₹23 L/yr

Technical Specialist
1.5k salaries
unlock blur

₹9.4 L/yr - ₹33 L/yr

Softwaretest Engineer
833 salaries
unlock blur

₹2.6 L/yr - ₹9.5 L/yr

Senior Technical Specialist
704 salaries
unlock blur

₹11.5 L/yr - ₹40.2 L/yr

Explore more salaries
Compare Zensar Technologies with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview