i
TCS
Filter interviews by
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.
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
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.
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
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.
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...
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...
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.
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.
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...
I appeared for an interview in May 2024.
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
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.
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.
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
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...
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...
I applied via Approached by Company and was interviewed in Apr 2024. There was 1 interview round.
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...
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.
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...
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.
I applied via Naukri.com and was interviewed in Feb 2024. There were 2 interview rounds.
Good questions with detailed interview
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...
I applied via LinkedIn and was interviewed in Oct 2022. There were 2 interview rounds.
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.
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, ...
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...
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.
I applied via Company Website and was interviewed before Oct 2020. There were 3 interview rounds.
I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.
I applied via LinkedIn and was interviewed before Jul 2021. There were 2 interview rounds.
Easy logical questions
basic quant
Easy level coding questions
Counting frequency of alphabets
based on 7 interview experiences
Difficulty level
Duration
based on 18 reviews
Rating in categories
System Engineer
1.1L
salaries
| ₹1 L/yr - ₹9 L/yr |
IT Analyst
65.6k
salaries
| ₹7.7 L/yr - ₹12.9 L/yr |
AST Consultant
53.5k
salaries
| ₹12 L/yr - ₹21 L/yr |
Assistant System Engineer
33.2k
salaries
| ₹2.7 L/yr - ₹6.4 L/yr |
Associate Consultant
32.9k
salaries
| ₹16.2 L/yr - ₹28 L/yr |
Amazon
Wipro
Infosys
Accenture