Upload Button Icon Add office photos
Engaged Employer

i

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

Information Services Group Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Information Services Group Analyst Interview Questions and Answers

Updated 15 Oct 2024

Information Services Group Analyst Interview Experiences

1 interview found

Analyst Interview Questions & Answers

user image Anonymous

posted on 15 Oct 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Project Discussion

Interview questions from similar companies

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

1st round included basic apt questions and essay writing

Round 2 - HR 

(2 Questions)

  • Q1. General resume questions
  • Q2. Aptitude questions
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Virtual basic discussion, ques on basic programming only

Round 2 - Coding Test 

1 hour major interview of first round only technical and core concepts on programming

Round 3 - HR 

(1 Question)

  • Q1. General questions and introduction to company policy
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 

Interview Preparation Tips

Interview preparation tips for other job seekers - It was not good and have very bad experience
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
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. What were my grades in high school
  • Ans. 

    My grades in high school were consistently high, with a GPA of 3.8.

    • Consistently high grades throughout high school

    • Achieved a GPA of 3.8

    • Received honors and awards for academic performance

  • Answered by AI
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
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

First round is gamified aptitude that is playfull easy to crake.

Round 2 - Aptitude Test 

That was a aptitude test easy to crake. major question are percentage,reasoning,average,ven diagram,number system, basic math question

Round 3 - Assignment 

Science base assessment (at the first they give certain amount of course and course source that we need to study) easy 10 mcq question we need to learn the course.

Round 4 - HR 

(5 Questions)

  • Q1. They test our problem solving skill so they give a bunch of aptitude question and explain to the hr.
  • Q2. About my family
  • Q3. Strength and weakness
  • Q4. Recent book you read
  • Q5. Project and internship

Interview Preparation Tips

Interview preparation tips for other job seekers - be yourself. express your knowledge to the hr, and be confident.
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

Information Services Group Interview FAQs

How many rounds are there in Information Services Group Analyst interview?
Information Services Group interview process usually has 1 rounds. The most common rounds in the Information Services Group interview process are Technical.
How to prepare for Information Services Group 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 Information Services Group. The most common topics and skills that interviewers at Information Services Group expect are Accountancy, Accounts Receivable, Administration, Auditing and CRM.

Tell us how to improve this page.

Information Services Group Analyst Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Analyst Interview Questions from Similar Companies

View all
Information Services Group Analyst Salary
based on 48 salaries
₹4.5 L/yr - ₹8.1 L/yr
At par with the average Analyst Salary in India
View more details

Information Services Group Analyst Reviews and Ratings

based on 8 reviews

3.9/5

Rating in categories

3.7

Skill development

3.9

Work-life balance

4.1

Salary

3.9

Job security

4.0

Company culture

3.4

Promotions

3.9

Work satisfaction

Explore 8 Reviews and Ratings
Senior Analyst
104 salaries
unlock blur

₹5 L/yr - ₹12.2 L/yr

Team Lead
76 salaries
unlock blur

₹7.9 L/yr - ₹15.6 L/yr

Consultant
73 salaries
unlock blur

₹7 L/yr - ₹24 L/yr

Financial Analyst
70 salaries
unlock blur

₹4 L/yr - ₹7.3 L/yr

Contract Analyst
54 salaries
unlock blur

₹4.9 L/yr - ₹8.1 L/yr

Explore more salaries
Compare Information Services Group with

Gartner

4.1
Compare

Forrester

3.7
Compare

Everest Group

3.4
Compare

hfs research

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