Upload Button Icon Add office photos

Filter interviews by

Sub-K IMPACT Solutions Senior BI Developer Interview Questions and Answers

Updated 14 Feb 2022

Sub-K IMPACT Solutions Senior BI Developer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed before Feb 2021. There were 4 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basics of Power BI & SQL were asked.
Round 2 - Behavioral 

(1 Question)

  • Q1. Asked about team handling, basics of Business Intelligence
Round 3 - One-on-one 

(1 Question)

  • Q1. One to one round with CEO
Round 4 - HR 

(1 Question)

  • Q1. What is the expected Salary?

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was quite general and quite easy.

Personal Views:

I wouldn't suggest to anyone to join Sub-K in a technical role. There is less technical work and no learning. Senior management is completely clueless especially in BIDA Team. I was asked to do all non technical stuff which didn't add any value. I have also heard about less job security.

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. All about tableau and previous projects
Round 2 - One-on-one 

(1 Question)

  • Q1. Collaborations woth otber teams,
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

The test carried 7 sections of aptitude with no negative markings and the questions were also easy with time duration of 1 hours which was to be used for the coding round also

Round 2 - Coding Test 

Basic understanding was checked, if basics are clear of DSA and computer science fundamentals then very easy to crack

Interview Preparation Tips

Interview preparation tips for other job seekers - make sure your basics and foundation of DSA is very thorough
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 Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Reasoning, math, verbal

Round 2 - HR 

(1 Question)

  • Q1. Personal questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Dec 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(4 Questions)

  • Q1. JavaScript problems
  • Q2. Modifying existing React application as asked & also integration with API
  • Q3. Theoretical JavaScript questions
  • Q4. Unit testing related knowledge check
Round 2 - One-on-one 

(3 Questions)

  • Q1. Bundler related questions
  • Q2. Transpiling or, compiling related questions
  • Q3. High level technical knowledge check, not much deep-dive
Round 3 - HR 

(4 Questions)

  • Q1. Checking cultural fit
  • Q2. Checking relocation comfortability
  • Q3. Reason of interest in organisation
  • Ans. 

    I am interested in your organization because of your innovative projects and strong reputation in the industry.

    • Impressed by the innovative projects your organization has worked on

    • Strong reputation in the industry

    • Positive reviews from current and former employees

  • Answered by AI
  • Q4. Compensation discussion & detailed information

Interview Preparation Tips

Topics to prepare for Ameriprise Financial Front end Developer interview:
  • Javascript
  • React.Js
  • Typescript
  • Unit Testing
  • Webpack
  • Babel

I applied via Campus Placement and was interviewed in Aug 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Technical MCQ and coding (medium)

Round 2 - Coding Test 

This was long programing round. In this you need to design a application. First you need do ER or class diagram. Then you need code in any programing language but OOPS is prefered. They see is app is scalable and data modeling

Round 3 - Technical 

(4 Questions)

  • Q1. Basing OOPS, DBMS, SQL and DS
  • Q2. Sql joins and normalisation
  • Q3. Sort stack ds and real life example
  • Ans. 

    Sorting a stack data structure and its real-life example

    • Sorting a stack involves popping elements and comparing them to the remaining elements in the stack

    • Real-life example: arranging books on a shelf in alphabetical order

    • Another example: sorting a deck of cards by suit and rank

  • Answered by AI
  • Q4. Question from resume and previous round solution

Interview Preparation Tips

Interview preparation tips for other job seekers - If you pass the last round then you will be having HR interview

Skills evaluated in this interview

I applied via Referral and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. I got a referral and was directly called into the first round of interview.
  • Q2. 1.5 hrs round, coding questions were there( can’t reveal ). Low level system design. Questions based on Frontend
Round 2 - Technical 

(1 Question)

  • Q1. Managerial round. 1 hour. In depth questions . Focused mainly upon projects, work done, etc.
Round 3 - HR 

(1 Question)

  • Q1. Basic hr questions and salary negotiations.

Interview Preparation Tips

Interview preparation tips for other job seekers - Believe in yourself. Start preparing for lld questions as nowadys companies are asking the same.
Round 1 - Aptitude Test 

There are 30 questions Mixed with Aptitude, AWS, OS

Round 2 - Technical 

(2 Questions)

  • Q1. 1. what is OOPS Concept?
  • Ans. 

    OOPS (Object-Oriented Programming) is a programming paradigm that uses objects to represent and manipulate data.

    • OOPS focuses on the concept of objects, which are instances of classes.

    • It emphasizes encapsulation, inheritance, and polymorphism.

    • Encapsulation ensures data hiding and abstraction.

    • Inheritance allows classes to inherit properties and behaviors from other classes.

    • Polymorphism enables objects to take on multiple...

  • Answered by AI
  • Q2. Database questions and data structure questions?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the OOPS concept, Database, and Data structure well.

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 100 minutes
Round difficulty - Easy

Test started at 04:00 PM sharp and complete the same by 06:00 PM.
The test duration is 1 hour 40 minutes.
Environment (Amcat) is user friendly.
Web cam and mic were enabled

  • Q1. Longest Palindromic Subsequence

    You have been given a string ‘A’ consisting of lower case English letters. Your task is to find the length of the longest palindromic subsequence in ‘A’.

    A subsequence is ...

  • Ans. Recursive Approach

    The main idea behind this approach is to use recursion. The idea is to compare the first character of the string A[i..j] with its last character. There are two possibilities:

    1. If the first character of the string is the same as the last character, we include first and last characters in the palindrome and do a recursive call for the remaining substring A[i + 1, j - 1].
    2. If the last character of the string...
  • Answered by CodingNinjas
  • Q2. Ways To Make Coin Change

    You are given an infinite supply of coins of each of denominations D = {D0, D1, D2, D3, ...... Dn-1}. You need to figure out the total number of ways W, in which you can make a cha...

  • Ans. Recursion

     

    1. The idea is to use recursion.
    2. For a particular coin, we have two options either include it or exclude it.
    3. If we include that coin, then calculate the remaining number that we have to generate so recur for that remaining number.
    4. If we exclude that coin, then recur for the same amount that we have to make.
    5. Our final answer would be the total number of ways either by including or excluding.
    6. There will be two edg...
  • Answered by CodingNinjas
Round 2 - Telephonic Call 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Hard

Interview stared at 11:00 am and went for 90 min.
Interview was held in zoom
Environment was very much user friendly

  • Q1. Maximum Sum of nodes in a binary tree such that no two nodes are adjacent

    You have been given a binary tree with an integer value associated to each node. You are supposed to choose a subset of these nodes...

  • Ans. Using Memoization

    Keeping in mind the fact that both node and its children can not be considered for the maximum sum at the same time, we know that if we take a node into our sum, then we will directly call recursively for its grandchildren, OR if we don't take the node into our consideration, we will call for its child nodes and finally consider the maximum sum from both these results.

     

    Considering the above idea, ...

  • Answered by CodingNinjas
  • Q2. Basic Puzzles

    There are 3 mislabeled jars, with apple and oranges in the first and second jar respectively. The third jar contains a mixture of apples and oranges. You can pick as many fruits as required to...

Interview Preparation Tips

Professional and academic backgroundI completed Civil Engineering from Malaviya National Institute of Technology Jaipur. I applied for the job as SDE - Intern in BangaloreEligibility criteriaabove 7 cgpa, all branches were allowedFidelity International interview preparation:Topics to prepare for the interview - Data Structures, hashmap, linked list, Pointers, OOPS, System Design, Algorithms, Dynamic Programming, array, 2-pointer problemsTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : practice on gfg and coding ninjas
Tip 2 : compete on codechef and codeforces
Tip 3 : learn DSA and practice regularly
 

Application resume tips for other job seekers

Tip 1 : put your entire valuable experience in brief
Tip 2 : put the handle of you competitive coding profiles
Tip 3 : try to put those things that really attracts the recruiter, will be better if your past experiences relates to the company

Final outcome of the interviewSelected

Skills evaluated in this interview

Sub-K IMPACT Solutions Interview FAQs

How many rounds are there in Sub-K IMPACT Solutions Senior BI Developer interview?
Sub-K IMPACT Solutions interview process usually has 4 rounds. The most common rounds in the Sub-K IMPACT Solutions interview process are One-on-one Round, HR and Behavioral.
What are the top questions asked in Sub-K IMPACT Solutions Senior BI Developer interview?

Some of the top questions asked at the Sub-K IMPACT Solutions Senior BI Developer interview -

  1. Basics of Power BI & SQL were ask...read more
  2. One to one round with ...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Sub-K IMPACT Solutions interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Morningstar Interview Questions
4.0
 • 240 Interviews
FactSet Interview Questions
4.0
 • 206 Interviews
Kotak Securities Interview Questions
3.6
 • 111 Interviews
TresVista Interview Questions
3.0
 • 111 Interviews
Pine Labs Interview Questions
3.5
 • 106 Interviews
Mr Cooper Interview Questions
4.1
 • 77 Interviews
View all
Unit Head
37 salaries
unlock blur

₹2.2 L/yr - ₹4.8 L/yr

Customer Service Representative
29 salaries
unlock blur

₹1.2 L/yr - ₹3 L/yr

Business Associate
25 salaries
unlock blur

₹1.2 L/yr - ₹3.5 L/yr

Cluster Manager
22 salaries
unlock blur

₹3.5 L/yr - ₹6.5 L/yr

Product Manager
20 salaries
unlock blur

₹7.5 L/yr - ₹11 L/yr

Explore more salaries
Compare Sub-K IMPACT Solutions with

Aye Finance

4.1
Compare

Ujjivan Financial Services

4.3
Compare

Bharat Financial Inclusion

3.9
Compare

Jana Small Finance Bank

3.8
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