Upload Button Icon Add office photos
Engaged Employer

i

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

TCS Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

TCS Snowflake Developer Interview Questions and Answers

Updated 5 Nov 2024

13 Interview questions

A Snowflake Developer was asked 8mo ago
Q. What happens to the cache if the query is changed?
Ans. 

The cache will be invalidated and refreshed when the query changes.

  • When the query changes, the cache will be invalidated to ensure accurate results.

  • The system will refresh the cache with the updated query results.

  • This helps prevent outdated or incorrect data from being served from the cache.

A Snowflake Developer was asked 8mo ago
Q. Rate your SQL skills on a scale of 1 to 10.
Ans. 

I would rate myself 8 out of 10 in SQL. I have strong knowledge and experience in writing complex queries and optimizing database performance.

  • Strong understanding of SQL syntax and commands

  • Experience in writing complex queries involving multiple tables and joins

  • Knowledge of database optimization techniques

  • Familiarity with Snowflake specific SQL functions and features

Snowflake Developer Interview Questions Asked at Other Companies

asked in TCS
Q1. When creating a custom role, which role should have access to it?
asked in Cognizant
Q2. What features in Snowflake's architecture and pricing model set i ... read more
asked in TCS
Q3. When bulk loading data, what is the size of data that gets loaded ... read more
asked in Infosys
Q4. How snowflake differs from industry competetors? What is the extr ... read more
asked in LTIMindtree
Q5. How do you print the letters of 'snowflake' one below the other w ... read more
A Snowflake Developer was asked 8mo ago
Q. What is the purpose of time travel in Snowflake?
Ans. 

Time travel is a theoretical concept that involves moving between different points in time.

  • Time travel is a popular theme in science fiction literature and movies.

  • The concept of time travel raises questions about causality and the nature of time.

  • Some theories suggest that time travel could be possible through wormholes or time machines.

A Snowflake Developer was asked 8mo ago
Q. Describe a scenario where you used SQL.
Ans. 

SQL scenario: Retrieve the top 5 customers by total sales from a sales table.

  • Use the SUM() function to calculate total sales for each customer.

  • Group results by customer ID or name using GROUP BY.

  • Order the results in descending order using ORDER BY.

  • Limit the results to the top 5 using the LIMIT clause.

  • Example SQL query: SELECT customer_id, SUM(sales) AS total_sales FROM sales_table GROUP BY customer_id ORDER BY tot...

What people are saying about TCS

View All
a senior associate
2w
Tata's lost its touch? TCS ain't what it used to be :-(
Tata is not the same after Sir Ratan Tata! TCS used to really look after its employees, even when they were on the bench. Now, things have changed and it's disappointing.
FeedCard Image
Got a question about TCS?
Ask anonymously on communities.
A Snowflake Developer was asked 9mo ago
Q. Write a query using the LAG function.
Ans. 

The LAG function in SQL retrieves data from a previous row in a result set, useful for comparisons.

  • LAG function syntax: LAG(value, offset, default) OVER (PARTITION BY column ORDER BY column).

  • Example: LAG(sales, 1) OVER (ORDER BY date) gives the sales from the previous day.

  • Useful for calculating differences, trends, or changes over time.

  • Can be combined with other window functions for advanced analytics.

A Snowflake Developer was asked 9mo ago
Q. Write an SQL query using joins.
Ans. 

Understanding SQL joins is crucial for combining data from multiple tables effectively.

  • INNER JOIN: Returns records with matching values in both tables. Example: SELECT * FROM A INNER JOIN B ON A.id = B.id;

  • LEFT JOIN: Returns all records from the left table and matched records from the right table. Example: SELECT * FROM A LEFT JOIN B ON A.id = B.id;

  • RIGHT JOIN: Returns all records from the right table and matched re...

A Snowflake Developer was asked
Q. What is the difference between UNION and JOIN?
Ans. 

Union combines rows from two or more tables, while join combines columns from two or more tables.

  • Union appends the rows of one table to another, while join combines columns of two tables based on a common column.

  • Union does not require a common column, while join requires a common column to match the rows.

  • Union removes duplicates, while join retains duplicates.

  • Union can be used to combine tables with different colu...

Are these interview questions helpful?
A Snowflake Developer was asked
Q. When creating a custom role, which role should have access to it?
Ans. 

The role with the highest level of access should create the custom role.

  • The role with the highest level of access should have the ability to manage roles and grant permissions.

  • This ensures that the custom role is created with the appropriate level of access and permissions.

  • For example, if the custom role is for a specific department, the department manager role should create it.

A Snowflake Developer was asked
Q. What is the VARIANT data type?
Ans. 

Variant data type is a flexible data type in Snowflake that can store semi-structured and nested data.

  • Variant data type can store JSON, Avro, ORC, and Parquet data formats.

  • It allows for querying and manipulating semi-structured data without the need for schema changes.

  • Example: A variant column can store a JSON object with nested arrays and objects.

🔥 Asked by recruiter 2 times
A Snowflake Developer was asked
Q. Explain the Snowflake architecture.
Ans. 

Snowflake architecture is a cloud-based data warehousing solution that separates storage, compute, and services.

  • Snowflake uses a unique multi-cluster, shared data architecture.

  • It separates storage, compute, and services, allowing for independent scaling.

  • Data is stored in a columnar format, allowing for efficient querying and analysis.

  • Snowflake also offers automatic scaling and concurrency control.

  • It supports multi...

TCS Snowflake Developer Interview Experiences

7 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
No response

I appeared for an interview in May 2024.

Round 1 - Technical 

(8 Questions)

  • Q1. Self Intro and current project
  • Q2. Snowflake architecture
  • Q3. Stream and task
  • Q4. How to optimize sql query
  • Ans. 

    Optimizing SQL queries involves using indexes, minimizing data retrieval, and avoiding unnecessary joins.

    • Use indexes on columns frequently used in WHERE clauses

    • Minimize data retrieval by selecting only necessary columns

    • Avoid unnecessary joins by using subqueries or temporary tables

  • Answered by AI
  • Q5. Purpose of time travel
  • Ans. 

    Time travel is a theoretical concept that involves moving between different points in time.

    • Time travel is a popular theme in science fiction literature and movies.

    • The concept of time travel raises questions about causality and the nature of time.

    • Some theories suggest that time travel could be possible through wormholes or time machines.

  • Answered by AI
  • Q6. What will happen to cache if the query has changed
  • Ans. 

    The cache will be invalidated and refreshed when the query changes.

    • When the query changes, the cache will be invalidated to ensure accurate results.

    • The system will refresh the cache with the updated query results.

    • This helps prevent outdated or incorrect data from being served from the cache.

  • Answered by AI
  • Q7. Rate urself in sql out of 10
  • Ans. 

    I would rate myself 8 out of 10 in SQL. I have strong knowledge and experience in writing complex queries and optimizing database performance.

    • Strong understanding of SQL syntax and commands

    • Experience in writing complex queries involving multiple tables and joins

    • Knowledge of database optimization techniques

    • Familiarity with Snowflake specific SQL functions and features

  • Answered by AI
  • Q8. One scenario based question from sql
  • Ans. 

    SQL scenario: Retrieve the top 5 customers by total sales from a sales table.

    • Use the SUM() function to calculate total sales for each customer.

    • Group results by customer ID or name using GROUP BY.

    • Order the results in descending order using ORDER BY.

    • Limit the results to the top 5 using the LIMIT clause.

    • Example SQL query: SELECT customer_id, SUM(sales) AS total_sales FROM sales_table GROUP BY customer_id ORDER BY total_sa...

  • Answered by AI

Skills evaluated in this interview

Snowflake Developer Interview Questions & Answers

user image Ankita Agrawal

posted on 11 Aug 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Cache concept and type of cache
  • Ans. 

    Cache is a hardware or software component that stores data to reduce future data retrieval time.

    • Cache is used to store frequently accessed data for quick retrieval.

    • Types of cache include CPU cache, web cache, and browser cache.

    • Cache helps improve performance by reducing the need to access data from slower storage mediums.

    • Examples of cache include L1, L2, and L3 caches in CPUs, and caching mechanisms in web browsers.

    • Cac...

  • Answered by AI
  • Q2. Row level security and streams

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I applied via Approached by Company and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Data warehouse concepts and snowflake architecture
  • Q2. Snowflake functionalities
  • Ans. 

    Snowflake is a cloud-based data warehousing platform that offers features like data sharing, scalability, and performance.

    • Snowflake allows for easy data sharing between organizations and departments.

    • It offers scalability by allowing users to easily resize their computing resources based on their needs.

    • Snowflake provides high performance through its unique architecture that separates storage and compute.

    • It supports vari...

  • Answered by AI
  • Q3. Types of caches
  • Ans. 

    Types of caches include memory cache, disk cache, and browser cache.

    • Memory cache stores data in memory for quick access.

    • Disk cache stores data on disk for faster retrieval than from the original source.

    • Browser cache stores web page elements locally to reduce loading times.

    • Other types include CPU cache, page cache, and object cache.

  • Answered by AI
  • Q4. Tasks and functions

Interview Preparation Tips

Interview preparation tips for other job seekers - revise concepts

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. SQL query on joins
  • Ans. 

    Understanding SQL joins is crucial for combining data from multiple tables effectively.

    • INNER JOIN: Returns records with matching values in both tables. Example: SELECT * FROM A INNER JOIN B ON A.id = B.id;

    • LEFT JOIN: Returns all records from the left table and matched records from the right table. Example: SELECT * FROM A LEFT JOIN B ON A.id = B.id;

    • RIGHT JOIN: Returns all records from the right table and matched records...

  • Answered by AI
  • Q2. Query on Lag function
  • Ans. 

    The LAG function in SQL retrieves data from a previous row in a result set, useful for comparisons.

    • LAG function syntax: LAG(value, offset, default) OVER (PARTITION BY column ORDER BY column).

    • Example: LAG(sales, 1) OVER (ORDER BY date) gives the sales from the previous day.

    • Useful for calculating differences, trends, or changes over time.

    • Can be combined with other window functions for advanced analytics.

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

(1 Question)

  • Q1. Snowflake architecture, snowpipe, zero copy clone
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Good questions with detailed interview

Round 2 - One-on-one 

(2 Questions)

  • Q1. Explain Snowflake architecture
  • Ans. 

    Snowflake architecture is a cloud-based data warehousing platform that separates storage and compute resources for scalability and performance.

    • Snowflake uses a unique architecture with separate storage and compute layers.

    • Data is stored in scalable and durable storage, while compute resources can be scaled independently for processing.

    • Snowflake's architecture allows for automatic scaling, high performance, and concurren...

  • Answered by AI
  • Q2. Contains 3 layers

I applied via LinkedIn and was interviewed in Oct 2022. There were 2 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 - Technical 

(5 Questions)

  • Q1. What is varient data type
  • Ans. 

    Variant data type is a flexible data type in Snowflake that can store semi-structured and nested data.

    • Variant data type can store JSON, Avro, ORC, and Parquet data formats.

    • It allows for querying and manipulating semi-structured data without the need for schema changes.

    • Example: A variant column can store a JSON object with nested arrays and objects.

  • Answered by AI
  • Q2. Difference between union and join
  • Ans. 

    Union combines rows from two or more tables, while join combines columns from two or more tables.

    • Union appends the rows of one table to another, while join combines columns of two tables based on a common column.

    • Union does not require a common column, while join requires a common column to match the rows.

    • Union removes duplicates, while join retains duplicates.

    • Union can be used to combine tables with different columns, ...

  • Answered by AI
  • Q3. Explain snowflake architecture
  • Ans. 

    Snowflake architecture is a cloud-based data warehousing solution that separates storage, compute, and services.

    • Snowflake uses a unique multi-cluster, shared data architecture.

    • It separates storage, compute, and services, allowing for independent scaling.

    • Data is stored in a columnar format, allowing for efficient querying and analysis.

    • Snowflake also offers automatic scaling and concurrency control.

    • It supports multiple c...

  • Answered by AI
  • Q4. In bulk loading what is the size data gets loaded
  • Q5. While creating a custom role which role should have the access to it
  • Ans. 

    The role with the highest level of access should create the custom role.

    • The role with the highest level of access should have the ability to manage roles and grant permissions.

    • This ensures that the custom role is created with the appropriate level of access and permissions.

    • For example, if the custom role is for a specific department, the department manager role should create it.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for TCS Snowflake Developer interview:
  • Snowflake
  • SQL
Interview preparation tips for other job seekers - Focus more on basic like architecture , how unstructured data is loaded etc

Skills evaluated in this interview

Interview questions from similar companies

I applied via Company Website and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about your experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident adn clear when you answer

I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

I applied via LinkedIn and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Easy logical questions
basic quant

Round 2 - Coding Test 

Easy level coding questions
Counting frequency of alphabets

Interview Preparation Tips

Interview preparation tips for other job seekers - Just go through the basics of javascript
Hoisting

TCS Interview FAQs

How many rounds are there in TCS Snowflake Developer interview?
TCS interview process usually has 1-2 rounds. The most common rounds in the TCS interview process are Technical, Resume Shortlist and Coding Test.
How to prepare for TCS Snowflake 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 TCS. The most common topics and skills that interviewers at TCS expect are Data Warehousing, SQL, Snowflake, Python and ETL.
What are the top questions asked in TCS Snowflake Developer interview?

Some of the top questions asked at the TCS Snowflake Developer interview -

  1. While creating a custom role which role should have the access to...read more
  2. in bulk loading what is the size data gets loa...read more
  3. What is varient data t...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 7 interview experiences

Difficulty level

Moderate 100%

Duration

2-4 weeks 50%
4-6 weeks 50%
View more
TCS Snowflake Developer Salary
based on 364 salaries
₹4 L/yr - ₹9 L/yr
20% less than the average Snowflake Developer Salary in India
View more details

TCS Snowflake Developer Reviews and Ratings

based on 18 reviews

3.8/5

Rating in categories

3.8

Skill development

4.1

Work-life balance

3.0

Salary

4.7

Job security

4.1

Company culture

2.2

Promotions

3.5

Work satisfaction

Explore 18 Reviews and Ratings
System Engineer
1.1L salaries
unlock blur

₹1 L/yr - ₹9 L/yr

IT Analyst
65.6k salaries
unlock blur

₹7.7 L/yr - ₹12.9 L/yr

AST Consultant
53.5k salaries
unlock blur

₹12 L/yr - ₹21 L/yr

Assistant System Engineer
33.2k salaries
unlock blur

₹2.7 L/yr - ₹6.4 L/yr

Associate Consultant
32.9k salaries
unlock blur

₹16.2 L/yr - ₹28 L/yr

Explore more salaries
Compare TCS with

Amazon

4.0
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare

Accenture

3.7
Compare
write
Share an Interview