Premium Employer

i

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

QUADRANT RESOURCE LLC Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

QUADRANT RESOURCE LLC Interview Questions and Answers

Updated 10 Apr 2025
Popular Designations

17 Interview questions

A DOT NET Developer was asked 3mo ago
Q. What is .NET?
Ans. 

.NET is a versatile framework developed by Microsoft for building applications across various platforms, supporting multiple programming languages.

  • .NET Framework: The original version for Windows applications, providing a large library and support for various programming languages like C# and VB.NET.

  • .NET Core: A cross-platform, open-source version of .NET that allows developers to build applications for Windows, m...

View all DOT NET Developer interview questions
A DOT NET Developer was asked 3mo ago
Q. What is MVC?
Ans. 

MVC is a software architectural pattern that separates an application into three main components: Model, View, and Controller.

  • Model: Represents the data and business logic. Example: A class that handles database operations.

  • View: The user interface that displays data. Example: HTML/CSS files that render the UI.

  • Controller: Manages user input and interacts with the Model. Example: A class that processes user requests...

View all DOT NET Developer interview questions
A Senior Data Analyst was asked 3mo ago
Q. What is the method to calculate the Year-To-Date (YTD) measure using DAX?
Ans. 

YTD in DAX calculates cumulative totals from the beginning of the year to the current date.

  • Use the DAX function TOTALYTD to calculate YTD values.

  • Syntax: TOTALYTD(<expression>, <dates>, [<filter>], [<year_end_date>])

  • Example: YTD Sales = TOTALYTD(SUM(Sales[Amount]), Dates[Date])

  • Ensure your date table is marked as a date table in the model.

  • You can apply additional filters to the YTD calculatio...

View all Senior Data Analyst interview questions
A Senior Data Analyst was asked 3mo ago
Q. What is the method for calculating the previous month's sales using DAX?
Ans. 

DAX uses time intelligence functions to calculate previous month's sales effectively.

  • Use the 'PREVIOUSMONTH' function to reference the previous month.

  • Example: 'Sales Last Month = CALCULATE(SUM(Sales[Amount]), PREVIOUSMONTH(Sales[Date]))'.

  • Ensure your date column is in a proper date format for accurate calculations.

  • Combine with 'FILTER' for more complex scenarios, like specific product sales.

View all Senior Data Analyst interview questions
A Senior Data Analyst was asked 3mo ago
Q. How do you calculate a cumulative/running total in DAX?
Ans. 

Cumulative or running total in DAX calculates the sum of values up to a specific point in time.

  • Cumulative total adds values sequentially over a defined period.

  • Example: For sales data, a cumulative total for January would sum all sales from the start of the month to each day.

  • DAX function: CALCULATE(SUM(Sales[Amount]), FILTER(ALLSELECTED(Sales[Date]), Sales[Date] <= MAX(Sales[Date])))

  • Useful for trend analysis, fo...

View all Senior Data Analyst interview questions
A Senior Data Analyst was asked 3mo ago
Q. How do you calculate a moving rolling average in DAX?
Ans. 

Calculate a moving rolling average in DAX to analyze trends over time.

  • Use the DAX function AVERAGEX to compute the average over a specified period.

  • Example: Moving Average = AVERAGEX(DATEADD('Table'[Date], -n, DAY), 'Table'[Value]) where n is the number of days.

  • Combine with CALCULATE to filter the data context for accurate results.

  • Consider using the DATESINPERIOD function to define the rolling window.

View all Senior Data Analyst interview questions
Be interview-ready. Browse the most asked HR questions.
illustration image
A Senior Data Analyst was asked 3mo ago
Q. How do you calculate Year-over-Year (YoY) growth in DAX?
Ans. 

Year-over-Year (YoY) in DAX measures the change in a metric compared to the same period in the previous year.

  • Use the DAX function 'SAMEPERIODLASTYEAR' to compare current year data with the previous year.

  • Example: YoY Sales = CALCULATE(SUM(Sales[Amount]), SAMEPERIODLASTYEAR(Date[Date]))

  • Ensure your date table is properly marked as a date table for accurate calculations.

  • YoY can also be calculated using 'DATEADD' for m...

View all Senior Data Analyst interview questions
Are these interview questions helpful?
A Senior Data Analyst was asked 3mo ago
Q. Write an SQL query to find the second highest salary.
Ans. 

To find the 2nd highest salary in SQL, we can use various methods like subqueries or the DISTINCT keyword.

  • Using Subquery: SELECT MAX(salary) FROM employees WHERE salary < (SELECT MAX(salary) FROM employees);

  • Using DISTINCT: SELECT DISTINCT salary FROM employees ORDER BY salary DESC LIMIT 1 OFFSET 1;

  • Using ROW_NUMBER(): SELECT salary FROM (SELECT salary, ROW_NUMBER() OVER (ORDER BY salary DESC) AS rank FROM employ...

View all Senior Data Analyst interview questions
A Senior Data Analyst was asked 3mo ago
Q. What is a Window Function?
Ans. 

Window functions perform calculations across a set of table rows related to the current row, without collapsing the result set.

  • Window functions allow you to perform calculations like running totals, averages, and rankings over a specified range of rows.

  • They are defined using the OVER() clause, which specifies the partitioning and ordering of the data.

  • Example: SELECT employee_id, salary, SUM(salary) OVER (PARTITION...

View all Senior Data Analyst interview questions
A Senior Data Analyst was asked 3mo ago
Q. How do you find duplicate records using SQL?
Ans. 

Identify duplicate records in SQL using GROUP BY and HAVING clauses.

  • Use GROUP BY to group records by the column(s) you want to check for duplicates.

  • Apply the HAVING clause to filter groups that have a count greater than 1.

  • Example: SELECT column_name, COUNT(*) FROM table_name GROUP BY column_name HAVING COUNT(*) > 1;

  • You can also use ROW_NUMBER() for more complex scenarios to identify duplicates.

View all Senior Data Analyst interview questions

QUADRANT RESOURCE LLC Interview Experiences

21 interviews found

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

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Technical Questions: Explain the software development lifecycle (SDLC). Which model have you worked with the most? What programming languages are you most comfortable with? How do you handle version contro...
  • Q2. Behavioral Questions: Tell me about a time you had to learn a new technology quickly for a project. Describe a situation where you disagreed with a teammate on a technical decision. How did you handle it? ...
  • Q3. Practical/Assignment-Based Questions: You may be asked to complete a coding test (HackerRank, Codility, or in-house platform). They might ask for a mini project, or give a take-home assignment involving CR...

Interview Preparation Tips

Interview preparation tips for other job seekers - Know Your Resume Inside Out Be ready to talk about every project, role, and skill listed. Tailor your resume for the job you’re applying to—highlight relevant technologies and achievements. Be Clear About Your Career Goals Whether it’s short-term contract work or a long-term placement, having clarity will help staffing firms like Quadrant Resource match you to the right opportunity. Practice Behavioral and Technical Interview Questions Prepare using the STAR method (Situation, Task, Action, Result) for behavioral questions, and review key technical concepts in your domain. Stay Current with Industry Trends Make time to learn about new tools, languages, and frameworks. Employers value candidates who stay ahead of the curve. Ask Questions During Interviews Show genuine interest by asking about team culture, tech stack, learning opportunities, and career growth paths. Keep Certifications Up to Date Relevant certifications (e.g., AWS, Azure, Scrum, etc.) can make your profile stand out, especially in consulting or client-facing roles. Be Professional in All Communication Whether it's an email, LinkedIn message, or phone call—clear, respectful communication leaves a lasting impression. Follow Up After Interviews A short thank-you email reiterating your interest and summarizing your strengths can go a long way. Stay Organized Track where you’ve applied, who you spoke to, and any interview dates. This helps avoid confusion and keeps you prepared. Don’t Get Discouraged Rejections are part of the journey. Learn from each experience, refine your approach, and stay persistent.
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. What is the method to calculate the Year-To-Date (YTD) measure using DAX?
  • Ans. 

    YTD in DAX calculates cumulative totals from the beginning of the year to the current date.

    • Use the DAX function TOTALYTD to calculate YTD values.

    • Syntax: TOTALYTD(<expression>, <dates>, [<filter>], [<year_end_date>])

    • Example: YTD Sales = TOTALYTD(SUM(Sales[Amount]), Dates[Date])

    • Ensure your date table is marked as a date table in the model.

    • You can apply additional filters to the YTD calculation.

  • Answered by AI
  • Q2. What is the method for calculating the previous month's sales using DAX?
  • Ans. 

    DAX uses time intelligence functions to calculate previous month's sales effectively.

    • Use the 'PREVIOUSMONTH' function to reference the previous month.

    • Example: 'Sales Last Month = CALCULATE(SUM(Sales[Amount]), PREVIOUSMONTH(Sales[Date]))'.

    • Ensure your date column is in a proper date format for accurate calculations.

    • Combine with 'FILTER' for more complex scenarios, like specific product sales.

  • Answered by AI
  • Q3. Calculate YoY in DAX.
  • Ans. 

    Year-over-Year (YoY) in DAX measures the change in a metric compared to the same period in the previous year.

    • Use the DAX function 'SAMEPERIODLASTYEAR' to compare current year data with the previous year.

    • Example: YoY Sales = CALCULATE(SUM(Sales[Amount]), SAMEPERIODLASTYEAR(Date[Date]))

    • Ensure your date table is properly marked as a date table for accurate calculations.

    • YoY can also be calculated using 'DATEADD' for more f...

  • Answered by AI
  • Q4. Moving Rolling average in DAX
  • Ans. 

    Calculate a moving rolling average in DAX to analyze trends over time.

    • Use the DAX function AVERAGEX to compute the average over a specified period.

    • Example: Moving Average = AVERAGEX(DATEADD('Table'[Date], -n, DAY), 'Table'[Value]) where n is the number of days.

    • Combine with CALCULATE to filter the data context for accurate results.

    • Consider using the DATESINPERIOD function to define the rolling window.

  • Answered by AI
  • Q5. Cumulative/Running total in DAX. Interviewer didn't knew Cumulative and running total is same.
  • Ans. 

    Cumulative or running total in DAX calculates the sum of values up to a specific point in time.

    • Cumulative total adds values sequentially over a defined period.

    • Example: For sales data, a cumulative total for January would sum all sales from the start of the month to each day.

    • DAX function: CALCULATE(SUM(Sales[Amount]), FILTER(ALLSELECTED(Sales[Date]), Sales[Date] <= MAX(Sales[Date])))

    • Useful for trend analysis, forecas...

  • Answered by AI
  • Q6. Find duplicates in SQL
  • Ans. 

    Identify duplicate records in SQL using GROUP BY and HAVING clauses.

    • Use GROUP BY to group records by the column(s) you want to check for duplicates.

    • Apply the HAVING clause to filter groups that have a count greater than 1.

    • Example: SELECT column_name, COUNT(*) FROM table_name GROUP BY column_name HAVING COUNT(*) > 1;

    • You can also use ROW_NUMBER() for more complex scenarios to identify duplicates.

  • Answered by AI
  • Q7. What is Window Function
  • Ans. 

    Window functions perform calculations across a set of table rows related to the current row, without collapsing the result set.

    • Window functions allow you to perform calculations like running totals, averages, and rankings over a specified range of rows.

    • They are defined using the OVER() clause, which specifies the partitioning and ordering of the data.

    • Example: SELECT employee_id, salary, SUM(salary) OVER (PARTITION BY d...

  • Answered by AI
  • Q8. Find 2nd highest salary in SQL
  • Ans. 

    To find the 2nd highest salary in SQL, we can use various methods like subqueries or the DISTINCT keyword.

    • Using Subquery: SELECT MAX(salary) FROM employees WHERE salary < (SELECT MAX(salary) FROM employees);

    • Using DISTINCT: SELECT DISTINCT salary FROM employees ORDER BY salary DESC LIMIT 1 OFFSET 1;

    • Using ROW_NUMBER(): SELECT salary FROM (SELECT salary, ROW_NUMBER() OVER (ORDER BY salary DESC) AS rank FROM employees) ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Kindly inquired about the job description with HR before going for interview, and they informed me that it was for a Fabric Analytics Engineer position, as indicated by the meeting title. However, the interviewer, displayed a lack of professionalism and interview ethics, lacking any knowledge of Fabric; he only seemed to be familiar with Power BI. Consequently, he asked only generic Power BI and DAX questions sourced from the internet, with not a single inquiry about Fabric. The experience was utterly disappointing.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. What is MVC?
  • Ans. 

    MVC is a software architectural pattern that separates an application into three main components: Model, View, and Controller.

    • Model: Represents the data and business logic. Example: A class that handles database operations.

    • View: The user interface that displays data. Example: HTML/CSS files that render the UI.

    • Controller: Manages user input and interacts with the Model. Example: A class that processes user requests.

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

    .NET is a versatile framework developed by Microsoft for building applications across various platforms, supporting multiple programming languages.

    • .NET Framework: The original version for Windows applications, providing a large library and support for various programming languages like C# and VB.NET.

    • .NET Core: A cross-platform, open-source version of .NET that allows developers to build applications for Windows, macOS,...

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

(1 Question)

  • Q1. How is your previous projects and explain me with all
  • Ans. 

    I have worked on various projects as a Technical Analyst, including implementing data analytics solutions and optimizing IT systems.

    • Implemented data analytics solutions to improve decision-making processes

    • Optimized IT systems to enhance performance and efficiency

    • Collaborated with cross-functional teams to gather requirements and deliver solutions

    • Performed data analysis and visualization to identify trends and patterns

    • P...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. WHAT IS YOUR PREVIOUS SALARY AND EXPECTED
  • Ans. 

    Discussing salary history and expectations is crucial for aligning with company standards and personal career goals.

    • My previous salary was $70,000, which reflected my experience and the responsibilities I held.

    • Considering the industry standards and my skills, I am looking for a salary in the range of $80,000 to $90,000.

    • I believe this range is justified based on my expertise in technical analysis and the value I can bri...

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Naukri.com

Round 1 - Technical 

(1 Question)

  • Q1. Asked questions on solid principles
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Good level questions in spark, adf
Round 2 - One-on-one 

(1 Question)

  • Q1. Er modelling, python

Trainee Interview Questions & Answers

user image kayitha manikanta

posted on 20 Nov 2024

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

Maths easy level reasoning dbms,sql,dsa is important

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

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

Round 1 - Technical 

(1 Question)

  • Q1. SQL server basic and advanced
Round 2 - One-on-one 

(1 Question)

  • Q1. In-depth discussion on SQL server, performance tuning
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion is done with hr

Intern Interview Questions & Answers

user image Anonymous

posted on 12 Aug 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

50 mcqs in 50 mins in round 1

Round 2 - Coding Test 

2 coding questions in round 2

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I appeared for an interview in Nov 2022.

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 

(1 Question)

  • Q1. General .net core interview questions
Round 3 - Coding Test 

Reverse and diagonal print of double array matrix

Round 4 - One-on-one 

(1 Question)

  • Q1. General questions about the career
Round 5 - One-on-one 

(1 Question)

  • Q1. Again one more interview with Client, I have told to recruiter(Nihar) to stop the process of interviews and I am done with the interview rounds. They asked me to attend one more round with Delloitte. Prio...

Interview Preparation Tips

Interview preparation tips for other job seekers - Please check some other companies for better option. Don't waste your time and self esteem.

Top trending discussions

View All
Interview Hub
1w (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about QUADRANT RESOURCE LLC?
Ask anonymously on communities.

QUADRANT RESOURCE LLC Interview FAQs

How many rounds are there in QUADRANT RESOURCE LLC interview?
QUADRANT RESOURCE LLC interview process usually has 2-3 rounds. The most common rounds in the QUADRANT RESOURCE LLC interview process are One-on-one Round, Technical and Resume Shortlist.
How to prepare for QUADRANT RESOURCE LLC 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 QUADRANT RESOURCE LLC. The most common topics and skills that interviewers at QUADRANT RESOURCE LLC expect are SQL, C#, Javascript, Azure and .Net.
What are the top questions asked in QUADRANT RESOURCE LLC interview?

Some of the top questions asked at the QUADRANT RESOURCE LLC interview -

  1. Are you aware of Data Base Migrati...read more
  2. What is the method to calculate the Year-To-Date (YTD) measure using D...read more
  3. What is the method for calculating the previous month's sales using D...read more
How long is the QUADRANT RESOURCE LLC interview process?

The duration of QUADRANT RESOURCE LLC interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.1/5

based on 15 interview experiences

Difficulty level

Easy 22%
Moderate 56%
Hard 22%

Duration

Less than 2 weeks 78%
2-4 weeks 22%
View more
Join QUADRANT RESOURCE LLC Your Go-to IT Services Partner for a Digital Future 🌐

Interview Questions from Similar Companies

Team Lease Interview Questions
3.9
 • 232 Interviews
LanceSoft Interview Questions
3.2
 • 64 Interviews
CIEL HR Interview Questions
3.9
 • 60 Interviews
Teamware Solutions Interview Questions
4.1
 • 59 Interviews
PeopleStrong Interview Questions
3.4
 • 53 Interviews
Experis IT Interview Questions
3.0
 • 52 Interviews
Virtual Employee Interview Questions
3.4
 • 47 Interviews
Careernet Interview Questions
3.6
 • 41 Interviews
View all

QUADRANT RESOURCE LLC Reviews and Ratings

based on 169 reviews

3.9/5

Rating in categories

3.8

Skill development

3.9

Work-life balance

3.7

Salary

3.8

Job security

3.8

Company culture

3.6

Promotions

3.8

Work satisfaction

Explore 169 Reviews and Ratings
Power Bi Architect

Hyderabad / Secunderabad

15-17 Yrs

Not Disclosed

Python Backend

Hyderabad / Secunderabad

6-9 Yrs

₹ 3.6-26 LPA

D365 Developer

Hyderabad / Secunderabad,

Bangalore / Bengaluru

3-6 Yrs

Not Disclosed

Explore more jobs
Web Data Analyst
177 salaries
unlock blur

₹1.5 L/yr - ₹4.2 L/yr

Software Engineer
160 salaries
unlock blur

₹3.1 L/yr - ₹7.4 L/yr

Senior Software Engineer
96 salaries
unlock blur

₹11.1 L/yr - ₹20 L/yr

Data Analyst
60 salaries
unlock blur

₹10.9 L/yr - ₹16 L/yr

Software Trainee
42 salaries
unlock blur

₹1.2 L/yr - ₹3.3 L/yr

Explore more salaries
Compare QUADRANT RESOURCE LLC with

Team Lease

3.9
Compare

Innovsource Services

3.9
Compare

LanceSoft

3.2
Compare

IMPACT Infotech

3.4
Compare
write
Share an Interview