Upload Button Icon Add office photos
Engaged Employer

i

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

Progressive Infotech Verified Tick

Compare button icon Compare button icon Compare
3.4

based on 638 Reviews

Filter interviews by

Progressive Infotech Senior Technical Analyst Interview Questions and Answers

Updated 15 Oct 2023

Progressive Infotech Senior Technical Analyst Interview Experiences

1 interview found

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

I applied via Recruitment Consulltant and was interviewed before Aug 2022. There were 3 interview rounds.

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 tips
Round 2 - HR 

(2 Questions)

  • Q1. About your self
  • Q2. Experience related
Round 3 - Technical 

(1 Question)

  • Q1. Based on your resume

Senior Technical Analyst Jobs at Progressive Infotech

View all

Interview questions from similar companies

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

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic knowledge of your skills
  • Q2. Scenario based questions.
Round 2 - Technical 

(2 Questions)

  • Q1. Scenario based questions
  • Q2. SQL technical question.
Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion, joining date negotiation and Joining Bonus.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be perfect and ready with your skills whatever you have.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(5 Questions)

  • Q1. Introduce yourself, including what' s your roles and responsibility and what's your day to day task
  • Q2. Given a scenario, suppose there is slowness in system, and there is no APM tool then how will you identify the issue and solve it.
  • Ans. 

    Identify potential causes through system analysis, logs, and monitoring tools. Implement troubleshooting steps to resolve the issue.

    • Analyze system performance metrics such as CPU usage, memory usage, disk I/O, and network traffic to identify bottlenecks.

    • Check system logs for any error messages or warnings that could indicate the source of the slowness.

    • Review application logs to see if there are any specific requests or...

  • Answered by AI
  • Q3. Question on thread dump, in what case it should be taken, how many thread dumps are required and at what interval.
  • Q4. If there is slowness in system and you have thread dump, what analysis you will do from it
  • Ans. 

    I would analyze the thread dump to identify any bottlenecks or issues causing the system slowness.

    • Identify any threads that are in a blocked or waiting state

    • Look for any threads consuming excessive CPU or memory

    • Check for any deadlocks or resource contention issues

    • Analyze the stack traces to pinpoint the root cause of the slowness

  • Answered by AI
  • Q5. Do study about all web and app server and also respective logs
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Mix of coding, theory and design questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Oct 2023.

Round 1 - Coding Test 

Write a program on priority queue

Round 2 - One-on-one 

(3 Questions)

  • Q1. Questions on network protocol
  • Q2. Question on non-blocking socket
  • Q3. Question on linked list
Round 3 - One-on-one 

(1 Question)

  • Q1. Interview with cliient directly similar questions like round 2

Interview Preparation Tips

Interview preparation tips for other job seekers - All rounds are technical and for my experiences. They want a genuine guy who can really contribute
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2023. There were 2 interview rounds.

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 tips
Round 2 - Technical 

(3 Questions)

  • Q1. Builder design pattern in java
  • Ans. 

    Builder design pattern is a creational design pattern used to construct complex objects step by step.

    • Builder pattern separates the construction of a complex object from its representation.

    • It allows the same construction process to create different representations of the object.

    • Useful when there are multiple ways to construct an object or when the object creation process is complex.

    • Example: StringBuilder in Java allows ...

  • Answered by AI
  • Q2. Docker, MQ series involved
  • Q3. JOIN Query with country , emp name
  • Ans. 

    JOIN query to retrieve country and employee name

    • Use JOIN keyword to combine data from multiple tables

    • Specify the columns to select from each table

    • Use ON keyword to specify the relationship between the tables

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - we need to work in depth in Design patterns , Micro services concepts

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Jun 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(3 Questions)

  • Q1. Print greater number using lambda function
  • Ans. 

    Use lambda function to print greater number

    • Define a lambda function that takes two parameters

    • Use the max() function inside the lambda to compare the two numbers

    • Call the lambda function with two numbers to print the greater one

  • Answered by AI
  • Q2. Explain OOPs concepts
  • Ans. 

    OOPs concepts refer to Object-Oriented Programming principles like inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation detail

  • Answered by AI
  • Q3. All major C++ topics were covered
Round 3 - One-on-one 

(2 Questions)

  • Q1. Singleton design pattern
  • Q2. Code for Fibonacci series -- both iterative and recursive
  • Ans. 

    Fibonacci series code in iterative and recursive methods

    • Iterative method: Use a loop to calculate Fibonacci numbers

    • Recursive method: Define a function that calls itself to calculate Fibonacci numbers

    • Example for iterative method: int fib(int n) { int a = 0, b = 1, c; for(int i = 2; i <= n; i++) { c = a + b; a = b; b = c; } return b; }

    • Example for recursive method: int fib(int n) { if(n <= 1) return n; return fib(n-1) + f

  • Answered by AI
Round 4 - One-on-one 

(2 Questions)

  • Q1. Print 1-10 using 2 threads, in correct order
  • Ans. 

    Use two threads to print numbers 1-10 in correct order

    • Create two threads, one for printing odd numbers and one for printing even numbers

    • Use synchronization mechanisms like mutex or semaphore to ensure correct order

    • Example: Thread 1 prints 1, 3, 5, 7, 9 and Thread 2 prints 2, 4, 6, 8, 10

  • Answered by AI
  • Q2. How to do Unit testing in C++
  • Ans. 

    Unit testing in C++ involves writing test cases for individual units of code to ensure they work as expected.

    • Use a unit testing framework like Google Test or Catch2 to write and run test cases

    • Create separate test files for each unit of code being tested

    • Use assertions to check the expected behavior of the code under test

    • Mock dependencies or use dependency injection to isolate units for testing

    • Run tests regularly to catc

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Iris Software Technical Lead interview:
  • Multithreading
Interview preparation tips for other job seekers - Nice interview process, helpful recruiters.

Skills evaluated in this interview

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

(1 Question)

  • Q1. Wht is ur sal expectations
  • Ans. 

    My salary expectations are based on my experience, skills, and the market rate for the position.

    • Consider my years of experience in the industry

    • Research the average salary range for similar positions in the market

    • Factor in the cost of living in the location of the job

    • Be open to negotiation based on the overall compensation package offered

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Scenario based questions from one of the best employees
  • Q2. By sharing real time experience scenarios

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't expect hikes as favouritism are encouraged and you should know how to tackle your seniors.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic aptitude which is based on computer science skills

Round 2 - Technical 

(1 Question)

  • Q1. Basic coding questions

Progressive Infotech Interview FAQs

How many rounds are there in Progressive Infotech Senior Technical Analyst interview?
Progressive Infotech interview process usually has 3 rounds. The most common rounds in the Progressive Infotech interview process are Resume Shortlist, HR and Technical.
How to prepare for Progressive Infotech Senior Technical Analyst 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 Progressive Infotech. The most common topics and skills that interviewers at Progressive Infotech expect are Hardware Networking, Printer Support, Troubleshooting, ITIL process and Networking.

Tell us how to improve this page.

Progressive Infotech Senior Technical Analyst Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 801 Interviews
Cyient Interview Questions
3.7
 • 282 Interviews
View all
Progressive Infotech Senior Technical Analyst Salary
based on 123 salaries
₹1.8 L/yr - ₹5.2 L/yr
70% less than the average Senior Technical Analyst Salary in India
View more details

Progressive Infotech Senior Technical Analyst Reviews and Ratings

based on 28 reviews

2.6/5

Rating in categories

2.6

Skill development

2.4

Work-life balance

2.4

Salary

2.8

Job security

2.3

Company culture

2.2

Promotions

2.4

Work satisfaction

Explore 28 Reviews and Ratings
Desktop Support Engineer
218 salaries
unlock blur

₹1.5 L/yr - ₹4.2 L/yr

Technical Analyst
179 salaries
unlock blur

₹1.5 L/yr - ₹3.6 L/yr

Senior Technical Analyst
123 salaries
unlock blur

₹1.8 L/yr - ₹5.2 L/yr

Technical Support Engineer
75 salaries
unlock blur

₹1.5 L/yr - ₹4.5 L/yr

System Administrator
59 salaries
unlock blur

₹1.7 L/yr - ₹5.4 L/yr

Explore more salaries
Compare Progressive Infotech with

Wipro

3.7
Compare

HCLTech

3.5
Compare

Tech Mahindra

3.5
Compare

TCS

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