Upload Button Icon Add office photos
Engaged Employer

i

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

AltezzaSys Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

AltezzaSys Senior Analyst Interview Questions, Process, and Tips

Updated 14 Jan 2025

AltezzaSys Senior Analyst Interview Experiences

1 interview found

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

I was interviewed in Dec 2024.

Round 1 - Technical 

(6 Questions)

  • Q1. What were your roles and responsibilities in your previous organization?
  • Q2. What do you know about cloud computing?
  • Q3. What is IBM WebSphere Application Server (WAS) and what are its key features?
  • Q4. What are some important Linux commands and their usages?
  • Q5. What is the process for renewing certificates?
  • Q6. Could you provide details about your recent P1 ticket?
Round 2 - HR 

(2 Questions)

  • Q1. What tools are you proficient in?
  • Q2. Can you explain your experience with the client?

Interview questions from similar companies

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

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

Round 1 - Technical 

(5 Questions)

  • Q1. Difference between Lookup and join, where we should use which one in Ab Initio.
  • Q2. Ab Initio Scenerio Based questions.
  • Q3. Delete files with 0KB size from a directory. (Unix)
  • Ans. 

    Use find command to locate files with 0KB size and delete them using the rm command.

    • Use find command with -size 0 option to locate files with 0KB size in a directory

    • Pipe the output of find command to rm command to delete the files

    • Example: find /path/to/directory -type f -size 0 -exec rm {} \;

  • Answered by AI
  • Q4. Delete 10 days older files. (unix)
  • Ans. 

    Use find command with -mtime option to delete files older than 10 days.

    • Use find command with -mtime option to search for files older than 10 days.

    • Combine find command with -delete option to delete the files found.

  • Answered by AI
  • Q5. Get the second highest salary. (SQL)
Round 2 - Technical 

(4 Questions)

  • Q1. Ab initio scenerio based questions. Question on the project.
  • Q2. Questions based on different components like Roll up, scan, reformat, join, etc. (Ab Initio)
  • Q3. Questions based on sed, awk, and grep commands. (UNIX)
  • Q4. Questions on Window function. (SQL)
Round 3 - Behavioral 

(4 Questions)

  • Q1. In-depth discussion on project. Components used there and the process of the graph.
  • Q2. Questions on Continuous Flow, conduct>IT.
  • Q3. Full working of different partition components, multifiles, checkpoints and phases.
  • Ans. 

    Partition components, multifiles, checkpoints, and phases in data processing.

    • Partition components refer to dividing data into smaller chunks for processing efficiency.

    • Multifiles are multiple files used to store data during processing.

    • Checkpoints are markers set during processing to save progress and enable restart from a specific point.

    • Phases represent different stages of data processing workflow.

    • Example: In a MapReduc...

  • Answered by AI
  • Q4. Why not to use lookup for join, where we can not use join. Disadvantage of using sort component.
  • Ans. 

    Using lookup for join can be inefficient and lead to performance issues. Sort component can be slow and resource-intensive.

    • Lookup for join can be inefficient for large datasets as it requires scanning the entire dataset for each lookup value.

    • Join is more optimized for joining datasets based on a common key, while lookup is better suited for smaller reference tables.

    • Sort component can be slow and resource-intensive, esp...

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Why you want to join Exusia. Reason for the job change.
  • Q2. Salary expectations and document submission.

Interview Preparation Tips

Topics to prepare for Exusia Senior Analyst interview:
  • Ab Initio
  • Unix
  • SQL
Interview preparation tips for other job seekers - Prepare Ab initio scenerio based questions, and know how and where to use a component considering its pros and cons. Prepare basic Unix commands and grep, awk, sed, and find commands. Prepare sql with window functions.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. A good amount of Knowledge in Excel
  • Q2. Knowledge on Visualization tool such as power BI
  • Q3. Knowledge on SQL
  • Q4. Basics of Machine learning

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Confident on your answers

I applied via Naukri.com and was interviewed before Dec 2021. There were 4 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 - Aptitude Test 

Usual questions about self and experience

Round 3 - Technical 

(1 Question)

  • Q1. Windows and server related questions
Round 4 - One-on-one 

(1 Question)

  • Q1. The Final HR round where everything finalized

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself and prepare well and ensure smooth delivery
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Aptitude Test 

A question that is both tricky and simple.

Round 2 - Technical 

(1 Question)

  • Q1. Questions about biochemistry
Round 3 - Aptitude Test 

Questions based on both numerical data and case studies.

Round 4 - One-on-one 

(2 Questions)

  • Q1. Can you tell me about yourself?
  • Q2. What interests you in working for this company?
  • Ans. 

    I am interested in working for this company because of its innovative projects and strong reputation in the industry.

    • Innovative projects that challenge me to grow as a programmer

    • Strong reputation in the industry for quality work

    • Opportunities for career advancement and professional development

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Highlight the odd cells in excel
  • Ans. 

    Use conditional formatting to highlight odd cells in Excel

    • Select the range of cells you want to highlight

    • Go to the 'Home' tab and click on 'Conditional Formatting'

    • Choose 'New Rule' and select 'Use a formula to determine which cells to format'

    • Enter the formula '=MOD(A1,2)=1' (assuming A1 is the top-left cell of your selected range)

    • Choose the formatting style you want for the odd cells

  • Answered by AI
  • Q2. What are Joins in SQL, explain different joins and their outputs
  • Ans. 

    Joins in SQL are used to combine rows from two or more tables based on a related column between them.

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

    • INNER JOIN returns rows when there is at least one match in both tables

    • LEFT JOIN returns all rows from the left table and the matched rows from the right table

    • RIGHT JOIN returns all rows from the right table and the matched rows from the left table

    • FU...

  • Answered by AI
  • Q3. Query to give running sum of salary
  • Ans. 

    Use window function to calculate running sum of salary in SQL

    • Use window function like SUM() with OVER() clause

    • Partition the data by employee ID if needed

    • Order the data by date or any other relevant column

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your SQL strong and practice joins with problem solving questions

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Self Introduction
  • Q2. Salary Expectation
Round 2 - Technical 

(1 Question)

  • Q1. 14 questions in excel formulas

Interview Preparation Tips

Interview preparation tips for other job seekers - To prepare Excel Formulas and Hlookup,vlookup and etc....
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jul 2023. There were 3 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 - HR 

(2 Questions)

  • Q1. About your past experience
  • Q2. Reason for leaving the last job
Round 3 - Technical 

(1 Question)

  • Q1. Process related and journal entries for the questions previously prepared kept by the interviewer.

Interview Preparation Tips

Interview preparation tips for other job seekers - Refresh your accounting well. Anyway, they will ask the questions relevant to their process. so be cool and attend well.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Oct 2022. There were 3 interview rounds.

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 

(1 Question)

  • Q1. Regarding SQl, My Projects
Round 3 - Technical 

(1 Question)

  • Q1. SQL, UNIX , Work Experience

I applied via LinkedIn and was interviewed before Sep 2021. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Assignment 

Powerpoint,Word,excel and Iconography

Round 3 - One-on-one 

(1 Question)

  • Q1. With Manager about technical skills and personal details as well
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion and probation period

Interview Preparation Tips

Interview preparation tips for other job seekers - Best Place to work. Friendly team and helps to improve our skills

AltezzaSys Interview FAQs

How many rounds are there in AltezzaSys Senior Analyst interview?
AltezzaSys interview process usually has 2 rounds. The most common rounds in the AltezzaSys interview process are Technical and HR.
What are the top questions asked in AltezzaSys Senior Analyst interview?

Some of the top questions asked at the AltezzaSys Senior Analyst interview -

  1. What is IBM WebSphere Application Server (WAS) and what are its key featur...read more
  2. What are some important Linux commands and their usag...read more
  3. What is the process for renewing certificat...read more

Tell us how to improve this page.

AltezzaSys Senior Analyst Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

AltezzaSys Senior Analyst Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Information Technology Recruiter
41 salaries
unlock blur

₹1 L/yr - ₹4.4 L/yr

Senior IT Recruiter
20 salaries
unlock blur

₹2.8 L/yr - ₹4.5 L/yr

Team Lead
19 salaries
unlock blur

₹2.7 L/yr - ₹8.6 L/yr

Senior Consultant
15 salaries
unlock blur

₹8.6 L/yr - ₹20 L/yr

Talent Acquisition Executive
11 salaries
unlock blur

₹2 L/yr - ₹4.8 L/yr

Explore more salaries
Compare AltezzaSys with

Infosys

3.6
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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