Upload Button Icon Add office photos
Engaged Employer

i

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

Nagarro Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Nagarro Microstrategy Developer Interview Questions and Answers

Updated 26 Jun 2024

Nagarro Microstrategy Developer Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Fairly basic aptitude test

Round 2 - Technical 

(2 Questions)

  • Q1. Different features of dossier ?
  • Ans. 

    Dossier is a feature in Microstrategy that allows users to create interactive and dynamic reports and dashboards.

    • Allows users to create visually appealing reports and dashboards

    • Enables interactivity with data through filters, prompts, and drill-down capabilities

    • Supports various data visualizations such as charts, graphs, and maps

    • Users can schedule and share dossiers with others

    • Provides collaboration features for team m

  • Answered by AI
  • Q2. SQL passes created for a particular connections?
  • Ans. 

    SQL passes are created to establish a connection between Microstrategy and a database.

    • SQL passes are used to connect Microstrategy to a database in order to retrieve data.

    • They contain information such as database type, server name, port number, database name, and authentication details.

    • SQL passes can be created and managed within the Microstrategy Developer tool.

    • They are essential for querying and retrieving data from ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Nagarro Microstrategy Developer interview:
  • Microstrategy

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain over all experience
  • Q2. Asked question on Core and advance java topic
Round 2 - Technical 

(2 Questions)

  • Q1. Some advance topic of Java
  • Q2. DSA
Round 3 - HR 

(2 Questions)

  • Q1. Salary expectation
  • Q2. Relocation
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. I am fine or not
  • Q2. I want this job
  • Q3. I want information for selected in job and interview
  • Q4. And I want the company your details and related studies details
  • Q5. And it will be a good job for me so please select in this company for my family situation
Round 2 - Group Discussion 

Group discussion related in company

Interview Preparation Tips

Interview preparation tips for other job seekers - Mmm
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. What is inheritance
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class can inherit attributes and methods from another class.

    • Allows for code reusability by creating a new class based on an existing class

    • Derived class (subclass) inherits properties and behaviors from a base class (superclass)

    • Can have multiple levels of inheritance, creating a hierarchy of classes

    • Example: Animal class can be a base class with Dog and Cat

  • Answered by AI
  • Q2. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to be used for different data types or classes.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI
  • Q3. Write a code for string reverse
  • Ans. 

    Code to reverse a string using array of characters

    • Iterate through half of the string and swap characters from start and end

    • Use a temporary variable to store the character being swapped

    • Handle edge cases like empty string or single character string

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Java questions and basics of testing

Software Engineer Interview Questions & Answers

Hewlett Packard Enterprise user image 20Z327 - LAKSHMI PRIYADARSHINI M

posted on 12 Oct 2023

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

I applied via Campus Placement and was interviewed in Sep 2023. There were 7 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 

Techinal - 30mins,Aptitude - 15mins

Round 3 - Coding Test 

4 coding question in two different language

Round 4 - Technical 

(1 Question)

  • Q1. Concepts and coding for 50 mins
Round 5 - Technical 

(1 Question)

  • Q1. Projects, concepts coding for 50 mins
Round 6 - Technical 

(1 Question)

  • Q1. Sql,logical resoning,projects, technical for 50 mins
Round 7 - HR 

(1 Question)

  • Q1. Normal hr Interview, like salary discussion

I was interviewed in Apr 2022.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

  • Q1. 

    Height of a Binary Tree

    You are provided with an arbitrary binary tree consisting of 'N' nodes where each node is associated with a certain value. The task is to determine the height of the tree.

    Explana...

  • Ans. 

    The height of a binary tree is the maximum number of edges from the root to a leaf node.

    • Traverse the tree recursively and keep track of the maximum height

    • If the current node is null, return 0

    • Otherwise, calculate the height of the left and right subtrees and return the maximum height plus 1

  • Answered by AI
  • Q2. 

    Trapping Rain Water Problem Statement

    You are given a long type array/list ARR of size N, representing an elevation map. The value ARR[i] denotes the elevation of the ith bar. Your task is to determine th...

  • Ans. 

    The question asks to calculate the total amount of rainwater that can be trapped in the given elevation map.

    • Iterate through the array and find the maximum height on the left and right side of each bar.

    • Calculate the amount of water that can be trapped on each bar by subtracting its height from the minimum of the maximum heights on both sides.

    • Sum up the trapped water for all bars and return the total amount.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

  • Q1. 

    Merge Two Sorted Arrays Problem Statement

    Given two sorted integer arrays ARR1 and ARR2 of size M and N, respectively, merge them into ARR1 as one sorted array. Assume that ARR1 has a size of M + N to hol...

  • Ans. 

    The task is to merge two sorted arrays into one sorted array.

    • Create a new array with size M + N to store the merged array

    • Use two pointers to iterate through the elements of ARR1 and ARR2

    • Compare the elements at the current pointers and add the smaller element to the new array

    • Move the pointer of the array from which the element was added

    • Repeat the process until all elements are merged

    • If there are remaining elements in AR...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Associate Software Engineer in NoidaEligibility criteriaAbove 6.5 CGPA, No backlogsPublicis Sapient interview preparation:Topics to prepare for the interview - Data Structures, Web Technology, OS, DBMS, Java, OOPSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Just focus on Data structures mostly arrays, string and dp and practice at least 350 Questions
Tip 2 : Prepare topics related to web tech like HTML, CSS, Node Js
Tip 3 : Prepare Java, OOPS and if required then spring framework and jsp, servlets and do atleast 2 good projects

Application resume tips for other job seekers

Tip 1 : Everything should be clear and right what you have written on your resume.
Tip 2 : Have some projects on your resume and that projects should be done by you only and you should have proper knowledge of the tech and flow you have used in that projects.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

Round 1 - Technical 

(1 Question)

  • Q1. SQL and COGNOS related questions were asked.
Round 2 - Technical 

(1 Question)

  • Q1. SQL and cognos Related questions were asked.
Round 3 - HR 

(1 Question)

  • Q1. What is the expected CTC and few questions related to notice period and pay details.

Interview Preparation Tips

Interview preparation tips for other job seekers - Round 1 : Technical interview with INDIA team
Round 2 : Technical interview with Paris Team
Round 3: HR interview

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

Interview Questionnaire 

3 Questions

  • Q1. Use Multithreading to print 1 to 100 numbers
  • Ans. 

    Use multithreading to print 1 to 100 numbers.

    • Create a class that implements Runnable interface

    • Override the run() method to print numbers

    • Create multiple threads and start them

    • Join all threads to ensure all numbers are printed

  • Answered by AI
  • Q2. Spring stereotypes
  • Q3. Java with Basic Oops & Java8 is must

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice good Interview. But they are expecting design patterns & Spring Microservices. But I have minimal knowledge on both. So couldn't match for the position.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Oct 2021. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Sql queries
  • Q2. Unix commands
  • Q3. Your work experience
  • Q4. All depend on how you answer frist questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Give answer with honesty

Nagarro Interview FAQs

How many rounds are there in Nagarro Microstrategy Developer interview?
Nagarro interview process usually has 2 rounds. The most common rounds in the Nagarro interview process are Aptitude Test and Technical.
What are the top questions asked in Nagarro Microstrategy Developer interview?

Some of the top questions asked at the Nagarro Microstrategy Developer interview -

  1. SQL passes created for a particular connectio...read more
  2. different features of dossie...read more

Tell us how to improve this page.

Nagarro Microstrategy Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
DXC Technology Interview Questions
3.7
 • 811 Interviews
View all
Associate Staff Engineer
2.9k salaries
unlock blur

₹10 L/yr - ₹35.2 L/yr

Staff Engineer
2.9k salaries
unlock blur

₹14.9 L/yr - ₹43.2 L/yr

Senior Engineer
2.3k salaries
unlock blur

₹5.8 L/yr - ₹25 L/yr

Senior Software Engineer
1.1k salaries
unlock blur

₹6.4 L/yr - ₹29 L/yr

Engineer
936 salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Explore more salaries
Compare Nagarro with

Deloitte

3.8
Compare

Cognizant

3.8
Compare

TCS

3.7
Compare

Accenture

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