logo

11 NCR Voyix/Atleos SQL Interview Questions (Updated 2024)

Updated on

March 3, 2024

At NCR Voyix/Atleos, SQL is used often for extracting and analyzing ATM transaction data as well as managing and manipulating financial databases for pattern detection. So, it shouldn't surprise you that NCR frequently asks SQL coding questions during interviews for Data Science and Data Engineering positions.

So, to help you study for the NCR SQL interview, we've collected 11 NCR Corporation SQL interview questions – able to answer them all?

11 NCR Voyix/Atleos SQL Interview Questions

SQL Question 1: Identify Top Spending Customers in NCR

As an analyst of NCR, your task is to identify the top 10 customers who spent the most in the year 2022. Assume that every purchase transaction of a customer is stored in a "sales" table which contains the following fields: user_id, purchase_date (YYYY-MM-DD), and purchase_amount. Please provide the SQL query you would use in PostgreSQL.

Example Input:
user_idpurchase_datepurchase_amount
12022-05-17100.25
22022-03-20200.40
12022-07-3050.12
22022-09-22300.80
32022-08-1175.75
42022-08-1480.95

Answer:

In PostgreSQL, you would use the following query to solve this problem:


The query calculates the total amount spent per user within the year of 2022 by using the SUM() function and filters the data for that specific year via the WHERE clause. It then orders the data by total_spent in descending order and limits the result to the top 10 customers, which are the main contributors to the company.

To practice a related customer analytics question on DataLemur's free interactive coding environment, try this recently asked Microsoft SQL interview question: Microsoft SQL Interview Question: Teams Super User

SQL Question 2: Calculating Monthly Revenue and Average Revenue

NCR Corporation is a company specializing in consumer transaction technologies. Imagine you are working with their sales dataset, provided in a table called 'sales'. Each row in this dataset represents a transaction.

The 'sales' table has the following fields:

  • 'sale_id' (Unique identifier for each sale)
  • 'product_id' (Identifier of the product that was sold)
  • 'transaction_date' (The date the transaction was made)
  • 'units_sold' (Quantity of product sold in the transaction)
  • 'price_per_unit' (price of each unit sold in the transaction)

Write a SQL query that calculates the total revenue and the average revenue for each product per month. Total revenue is calculated as the sum of units sold times the price per unit. Average revenue is the average of total revenue for each product for that month.

The result should be displayed in three columns: 'month', 'product', 'total_revenue', 'average_revenue'.

Example Input:
sale_idproduct_idtransaction_dateunits_soldprice_per_unit
1411100106/02/20225200
2782200106/10/20223150
3293100106/10/20224200
2352100107/10/20222200
4517200107/11/20227150
Example Output:
monthproducttotal_revenueaverage_revenue
610011800900
62001450450
71001400400
7200110501050

Answer:


Here we use the function to calculate the total revenue for each product per month. The window function is used with the clause to calculate the average revenue for each product per month. The function is used to derive the month from the 'transaction_date' column. The output is ordered first by month, then by product ID.

p.s. Window functions show up pretty frequently during SQL interviews, so practice the 27+ window function questions on DataLemur

DataLemur Window Function SQL Questions

SQL Question 3: What are the various forms of normalization?

Normal forms are guidelines that are used to help design a relational database in a way that minimizes redundancy and ensures the integrity of the data. The 3 most commonly use normal forms are the 1st, 2nd, and 3rd normal forms. Here's a brief explanation of each:

  • 1st Normal Form (1NF) is all about keeping it simple - each column should only have one value and there should be no repeating groups of data.

  • 2nd Normal Form (2NF) is about organization - your database should already be in 1NF and all the non-key columns should depend on the primary key. This means that each non-key column should be completely dependent on the entire primary key, not just part of it.

  • 3rd Normal Form (3NF) is about independence - if your database is already in 2NF, then all the non-key columns should not depend on each other. They should be self-sufficient and not rely on other non-key columns.

NCR Corporation SQL Interview Questions

SQL Question 4: Filtering Customer Records

NCR Corporation is interested in analyzing the purchase behavior of its customers. In particular, they would like to find all customers who have purchased at least once in the last 30 days, but not any time in the last week, and have spent more than $500 in their lifetime.

Sample Input
purchase_idcustomer_idpurchase_dateamount
10112542022/05/15100.00
10285472022/03/2250.00
10312542022/04/03200.00
10496852022/06/11150.00
10512542021/01/02250.00
10685472022/07/2775.00
10712542022/07/27300.00
10885322022/07/28400.00

Answer:

Here's a possible PostgreSQL query for this question:


This query first filters the purchases table to include only those rows where the purchase date is between 30 and 7 days ago. It then groups these purchases by customer id, and sums up the amount spent on these purchases. The HAVING clause then filters out any customers who have spent $500 or less. This gives us a list of customers who satisfy all of the required conditions. The final result is a list of customer IDs and the total amount spent.

SQL Question 5: How would you speed up a slow SQL query?

Here's some strategies that can generally speed up a slow SQL query:

  • Only query the columns you actually need
  • Index the columns used in the query
  • Use the right kind of JOIN (be explicit about inner vs. outer joins)
  • Use the right data types (for example INT vs BIGINT can save you disk space and memory)

While there's an entire industry dedicated to database performance tuning , for Data Analyst and Data Science interviews at NCR Corporation, knowing the above basics should be more than enough to ace the SQL interview! Data Engineers on the other hand should know more about the command and understand a bit more about a query-execution plan.

SQL Question 6: Average Transaction Amount of different ATMs

As a data analyst at NCR Corporation, you are tasked with finding the Average Transaction Amount in different ATMs of various cities for a given month. NCR Corporation is a leading technology and omnichannel solutions company which produces ATMs.

Below, you are provided with two tables.

The table is as follows:

Example Input:
transaction_idatm_idtransaction_datetransaction_amount
1001102021/07/01200.00
1002202021/07/01150.00
1003102021/07/02250.00
1004202021/07/02300.00
1005202021/07/03200.00

The table looks like this:

Example Input:
atm_idatm_city
10Atlanta
20Columbus

For these tables, compose a SQL query that provides a result as follows:

Example Output:
atm_cityavg_transaction_amount
Atlanta225.00
Columbus216.67

Answer:

In PostgreSQL syntax, the above problem can be solved by the below query:


This SQL query joins the two tables on the column 'atm_id' and then groups the resulting table by 'atm_city'. For each group, the query calculates the average transaction amount. The WHERE clause is used to filter the transactions for a given month and year.

To practice a very similar question try this interactive Amazon Highest-Grossing Items Question which is similar for needing to aggregate with regards to each unique item or this Stripe Repeated Payments Question which is similar for analyzing the frequency of specific transactions.

SQL Question 7: What do primary keys do?

A primary key is a special type of column or set of columns in a database table that is used to identify each row in the table. It helps to ensure that all the rows are distinct and prevents null values. Additionally, primary keys play a crucial role in maintaining the accuracy of the data by making sure that there are no duplicate rows. They are also used to establish relationships between tables.

To create a primary key in a SQL database, you can use the constraint. For example, in the table , the column is the primary key.


SQL Question 8: Analyzing Click-Through-Rates

Suppose you are a data analyst at NCR Corporation, a company that deals with software, hardware, and portfolio services for banks, restaurants, and retailers globally. You just received a task to analyze the click-through rates and conversions of digital ads for one of their products – a recently launched self-service kiosk.

To do this, you need to calculate the click-through and conversion rates for each advertisement over the past month. Click-through rate is defined as the number of clicks on the ad divided by the number of total ad impressions. Conversion rate is calculated as the number of times the product is added to the cart after viewing the ad divided by the total number of ad clicks.

Consider the tables below:

Example Input:
impression_idad_iddateviews
110001/08/20226500
210101/08/20224800
310201/08/20223700
410002/08/20225500
510102/08/20226600
Example Input:
click_idad_iddateclicks
110001/08/20221024
210101/08/2022720
310201/08/2022555
410002/08/2022875
510102/08/20221320
Example Input:
conversion_idad_iddateconversions
110001/08/2022612
210101/08/2022360
310201/08/2022275
410002/08/2022438
510102/08/2022660

Answer:


This query first takes the , , and tables and joins them together on the and fields. It then calculates the and for each ad on each date, based on the definitions given in the question. The results are ordered by the and the .

To solve a similar problem about calculating rates, solve this SQL interview question from TikTok within DataLemur's interactive coding environment: SQL interview question from TikTok

SQL Question 9: Find the Total Revenue Per Product

NCR Corporation, a company offering software and services for Point-of-sale systems (POS), needs to understand its revenue breakdown. The sales department wants to know the total revenue generated per product.

They have a table where each row represents a transaction. Here is some sample data from their table:

Example Input:
transaction_idproduct_idsales_datepricequantity
110001/08/202210005
210101/08/20222003
310002/08/202210002
410202/08/20225007
510103/08/20222001

The question is: Write a SQL query in PostgreSQL to find out the total revenue generated by each product.

The output should include a column for the and a column for the total revenue (). The total revenue for a product should be the sum of the multiplied by the for each transaction of that product.

Answer:

The PostgreSQL query to solve the problem is as follows -


Example Output:
product_idtotal_revenue
1007000
101800
1023500

This query multiplies the price and quantity for each transaction to calculate the revenue from that transaction. It then sums these revenues per product to calculate the total revenue per product. The clause ensures that this calculation is applied to each product separately.

SQL Question 10: How does the constraint function, and in what scenarios might it be useful?

The CHECK constraint is used to enforce rules on the data in a specific column. If a row is inserted or updated with data that does not follow the CHECK constraint's rule, the operation will fail. The CHECK constraint is often used with other constraints, such as NOT NULL or UNIQUE, to ensure that data meets certain conditions. You may want to use a CHECK constraint in your database if you want to maintain the quality and reliability of your data by ensuring that it meets specific criteria.

For example, you might use a CHECK constraint to ensure that a column contains only positive numbers, or that a date is within a certain range.


SQL Question 11: Calculation of total sales, discounts and net sales per product

NCR Corporation sells a range of tech products globally. For every sale, they record the unit sale price and the discount given. They are now interested in computing the total sales, total discounts and net sales (total_sales - total_discounts) for each product for the year 2022. The calculations should round to two decimal places. They also want to see the square root of the total net sales and the remaining balance when this result is divided by the number of records present in the database. Assume their database schema is as follows:

Example Input:
sales_idproduct_idsale_dateunit_pricequantitydiscount
11001/02/2022500450
22002/03/2022250325
31003/04/2022450240
43004/05/202210001100
52005/06/2022300575

They expect the output in the following format:

Example Output:
product_idtotal_salestotal_discountnet_salessqrt_net_salesbalance
10xxxx.xxxxxx.xxxxxx.xxxxxx.xxxxxx.xx
20xxxx.xxxxxx.xxxxxx.xxxxxx.xxxxxx.xx
30xxxx.xxxxxx.xxxxxx.xxxxxx.xxxxxx.xx

Answer:


This query first calculates the total_sales, total_discounts, and net_sales for each product in the year 2022. It then computes the square root of net_sales and the remainder when this sqrt_net_sales is divided by the total number of records in the sales table.

The 2 most similar questions from the question bank are:

  1. "Y-on-Y Growth Rate" from Wayfair – involves calculation of yearly sales.
  2. "Highest-Grossing Items" from Amazon – includes identifying top products based on spending, similar to calculating net sales.

Here's the required markdown:

To practice a very similar question try this interactive Wayfair Y-on-Y Growth Rate Question which is similar for calculations involving yearly sales or this Amazon Highest-Grossing Items Question which is similar for identifying products based on sales values.

How To Prepare for the NCR Corporation SQL Interview

The best way to prepare for a NCR Corporation SQL interview is to practice, practice, practice. In addition to solving the above NCR Corporation SQL interview questions, you should also solve the 200+ SQL coding questions which come from companies like Google, Microsoft and Silicon Valley startups. DataLemur Question Bank

Each interview question has multiple hints, detailed solutions and crucially, there is an interactive coding environment so you can right online code up your query and have it executed.

To prep for the NCR Corporation SQL interview you can also be helpful to solve SQL problems from other tech companies like:

But if your SQL foundations are weak, don't worry about diving straight into solving questions – improve your SQL foundations with this DataLemur SQL Tutorial.

DataLemur SQL Tutorial for Data Science

This tutorial covers topics including math functions and filtering data with WHERE – both of these pop up frequently in SQL interviews at NCR Corporation.

NCR Data Science Interview Tips

What Do NCR NCR Voyix/Atleos Data Science Interviews Cover?

In addition to SQL interview questions, the other topics tested in the NCR Corporation Data Science Interview are:

NCR Corporation Data Scientist

How To Prepare for NCR Voyix/Atleos Data Science Interviews?

The best way to prepare for NCR Corporation Data Science interviews is by reading Ace the Data Science Interview. The book's got:

  • 201 Interview Questions from Facebook, Google & startups
  • A Refresher on Stats, SQL & ML
  • Great Reviews (900+ 5-star reviews on Amazon)

Ace the Data Science Interview Book on Amazon