Upload Button Icon Add office photos

Filter interviews by

Lagozon Technologies BI Developer Interview Questions and Answers

Updated 13 Sep 2024

Lagozon Technologies BI Developer Interview Experiences

1 interview found

BI Developer Interview Questions & Answers

user image Anonymous

posted on 13 Sep 2024

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 Aug 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Multiple choice questions

Round 2 - Technical 

(2 Questions)

  • Q1. Find Third highest salary from the given scenario
  • Ans. 

    To find the third highest salary, sort the salaries in descending order and select the third salary.

    • Sort the salaries in descending order

    • Select the third salary from the sorted list

  • Answered by AI
  • Q2. What is dynamic row level security
  • Ans. 

    Dynamic row level security is a feature that allows restrictions to be applied to rows of data based on user roles or attributes.

    • Implemented in BI tools like Power BI or Tableau

    • Security rules are defined based on user roles or attributes

    • Users only see data that they are authorized to access

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. How you make understand your dashboard to non technical person
  • Ans. 

    I use simple language, visuals, and real-life examples to explain the dashboard to non-technical individuals.

    • Use simple language and avoid technical jargon

    • Include visuals like charts and graphs to make data easier to understand

    • Provide real-life examples to illustrate the data and its implications

  • Answered by AI
  • Q2. On kpi show highest salary and customer name
Round 4 - Behavioral 

(2 Questions)

  • Q1. View and time intelligence function
  • Q2. Difference between views and table explain with examples
  • Ans. 

    Views are virtual tables that display data from one or more tables, while tables store data physically.

    • Views are saved queries that act as virtual tables

    • Views do not store data physically, but tables do

    • Views can be used to simplify complex queries or restrict access to certain columns

    • Tables are used to store data permanently

    • Example: A view can be created to display only specific columns from a table

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare qlik sense,sql

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

(2 Questions)

  • Q1. Resume questions mostly preferred
  • Q2. Bi related questions are more

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company. nice work culture.more benefits for experienced
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 - Technical 

(1 Question)

  • Q1. Basic Questions about Power BI
Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion Location Discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - It went smoothly and great experience with them although I didn't get offer
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2022. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Roles and Responsibilities
  • Q2. Qliksense Migration
Round 2 - HR 

(1 Question)

  • Q1. Reason for separation
Round 1 - One-on-one 

(1 Question)

  • Q1. Qlik related questions were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good nice experience asked questions related to qlik

I applied via Referral and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Roles And Responsibilities and Power BI Questions
Round 2 - HR 

(1 Question)

  • Q1. Generic Salary Discussion

Interview Preparation Tips

Topics to prepare for Wipro BI Developer interview:
  • Power Bi
  • Dax
  • SQL
Interview preparation tips for other job seekers - Be Confident and well prepared.
Should have good technical knowledge and hands-on experience in the tools you have worked on.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

General aptitude, computer science fundamentals multiple-choice questions, and data structures and algorithms multiple-choice questions were asked.

Round 2 - Technical 

(2 Questions)

  • Q1. Given a string, write a function to reverse the string.
  • Ans. 

    Function to reverse a given string

    • Create an empty string to store the reversed string

    • Iterate through the input string in reverse order and append each character to the new string

    • Return the reversed string

  • Answered by AI
  • Q2. Given a sorted array of integers, write a function to perform a binary search to find the index of a target value. If the target value is not found, return -1.
  • Ans. 

    Binary search function to find target value in sorted array

    • Define function that takes sorted array and target value as input

    • Initialize variables for start, end, and middle indices

    • Use while loop to iterate until start is less than or equal to end

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. About the company
  • Q2. What are three significant achievements in your life?
  • Ans. 

    Graduating with honors, winning a hackathon, volunteering in a developing country

    • Graduated with honors from university with a degree in Computer Science

    • Won first place in a hackathon competition by developing a unique and innovative software solution

    • Volunteered in a developing country to help build schools and provide education to underprivileged children

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Project related question , Interface , Abstraction
Round 2 - Technical 

(1 Question)

  • Q1. Scenario based question
Round 3 - HR 

(1 Question)

  • Q1. Salary Discussioon
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. JavaScript Related Questions
  • Q2. ReactJs Related Questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Reactjs Use Effects and UseRef
  • Q2. JavaScript Closures,Map,CallBack

Interview Preparation Tips

Interview preparation tips for other job seekers - NA
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Sliding Window find the subarray with sum equal to k
  • Ans. 

    Using sliding window technique to find subarray with sum equal to k.

    • Initialize two pointers at the start of the array.

    • Move the right pointer to expand the window until the sum is greater than or equal to k.

    • Move the left pointer to shrink the window if the sum exceeds k.

    • Repeat until the end of the array is reached.

    • Example: Input array [1, 4, 20, 3, 10, 5], k=33. Output: [20, 3, 10].

  • Answered by AI

Lagozon Technologies Interview FAQs

How many rounds are there in Lagozon Technologies BI Developer interview?
Lagozon Technologies interview process usually has 4 rounds. The most common rounds in the Lagozon Technologies interview process are Technical, Aptitude Test and Behavioral.
How to prepare for Lagozon Technologies BI Developer 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 Lagozon Technologies. The most common topics and skills that interviewers at Lagozon Technologies expect are Power Bi, Data Modeling, SQL, Bi and Business Intelligence.
What are the top questions asked in Lagozon Technologies BI Developer interview?

Some of the top questions asked at the Lagozon Technologies BI Developer interview -

  1. How you make understand your dashboard to non technical per...read more
  2. Difference between views and table explain with examp...read more
  3. What is dynamic row level secur...read more

Tell us how to improve this page.

Lagozon Technologies BI Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all
Lagozon Technologies BI Developer Salary
based on 8 salaries
₹5.5 L/yr - ₹10 L/yr
19% more than the average BI Developer Salary in India
View more details

Lagozon Technologies BI Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

4.0

Salary

5.0

Job security

4.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Data Analyst
21 salaries
unlock blur

₹4 L/yr - ₹8 L/yr

Data Engineer
20 salaries
unlock blur

₹4.2 L/yr - ₹9 L/yr

BI Developer
8 salaries
unlock blur

₹5.5 L/yr - ₹10 L/yr

BI Consultant
7 salaries
unlock blur

₹5.5 L/yr - ₹10.5 L/yr

Power BI Developer
5 salaries
unlock blur

₹4 L/yr - ₹8.5 L/yr

Explore more salaries
Compare Lagozon Technologies with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

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