Upload Button Icon Add office photos

Filter interviews by

WERTMARK TECHNOLOGIES Senior SQL Developer Interview Questions and Answers for Experienced

Updated 28 Mar 2023

WERTMARK TECHNOLOGIES Senior SQL Developer Interview Experiences for Experienced

1 interview found

Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Feb 2023. 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 

(3 Questions)

  • Q1. Write an sp to with 5 input var and one output var,all int and display the max of input variables
  • Ans. 

    SP with 5 input and 1 output var, all int. Display max of input vars.

    • Create a stored procedure with 5 input parameters and 1 output parameter

    • Use the MAX function to find the maximum value among the input parameters

    • Assign the maximum value to the output parameter

    • Test the stored procedure with sample input values

  • Answered by AI
  • Q2. Pivote table syntax, trigger syntax,
  • Q3. Write a job scheduler code to backup up database daily at a particular time
  • Ans. 

    Code to schedule daily database backup

    • Use SQL Server Agent to create a new job

    • Set the schedule to run daily at the desired time

    • Add a step to the job to backup the database

    • Specify the backup location and file name

    • Test the job to ensure it runs successfully

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn syntax properly, complete technical share your screen and write code

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is loads in informatica
  • Ans. 

    Loads in Informatica refer to the process of moving data from source to target in a data warehouse.

    • Loads involve extracting data from source systems

    • Transforming the data as needed

    • Loading the data into the target data warehouse or database

    • Loads can be full, incremental, or delta depending on the requirements

    • Example: Loading customer data from a CRM system into a data warehouse for analysis

  • Answered by AI
  • Q2. Query to find duplicates in table
  • Ans. 

    Use GROUP BY and HAVING clause to find duplicates in a table.

    • Use GROUP BY to group rows with same values together

    • Use HAVING COUNT(*) > 1 to filter out duplicates

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

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is Android Manifest
  • Q2. What are services
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Approached by Company

Round 1 - Technical 

(2 Questions)

  • Q1. Window function coding test
  • Ans. 

    Window function coding test involves using window functions in SQL to perform calculations within a specified window of rows.

    • Understand the syntax and usage of window functions in SQL

    • Use window functions like ROW_NUMBER(), RANK(), DENSE_RANK(), etc. to perform calculations

    • Specify the window frame using PARTITION BY and ORDER BY clauses

    • Practice writing queries with window functions to get comfortable with their usage

  • Answered by AI
  • Q2. Explain azure data factory
  • Ans. 

    Azure Data Factory is a cloud-based data integration service that allows you to create, schedule, and manage data pipelines.

    • Azure Data Factory is used to move and transform data from various sources to destinations.

    • It supports data integration processes like ETL (Extract, Transform, Load) and ELT (Extract, Load, Transform).

    • You can create data pipelines using a visual interface in Azure Data Factory.

    • It can connect to on...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is data vault
  • Ans. 

    Data Vault is a modeling methodology for designing highly scalable and flexible data warehouses.

    • Data Vault focuses on long-term historical data storage

    • It consists of three main components: Hubs, Links, and Satellites

    • Hubs represent business entities, Links represent relationships between entities, and Satellites store attributes of entities

    • Data Vault allows for easy scalability and adaptability to changing business requ

  • Answered by AI
  • Q2. What is lambda architecture
  • Ans. 

    Lambda architecture is a data processing architecture designed to handle massive quantities of data by using both batch and stream processing methods.

    • Combines batch processing layer, speed layer, and serving layer

    • Batch layer processes historical data in large batches

    • Speed layer processes real-time data

    • Serving layer merges results from batch and speed layers for querying

    • Example: Apache Hadoop for batch processing, Apach

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Whether have onsite exposure
  • Ans. 

    Yes, I have onsite exposure in previous roles.

    • I have worked onsite at various client locations to gather requirements and implement solutions.

    • I have experience collaborating with cross-functional teams in person.

    • I have conducted onsite training sessions for end users on data architecture best practices.

    • I have participated in onsite data migration projects.

    • I have worked onsite to troubleshoot and resolve data-related is

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I was interviewed before Jan 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Questions are related to data modelling, data warehousing, big data
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Data Modeling Concepts, SQL Query
  • Q2. Data Governance, Data Lineage, ETL process,
Round 2 - Coding Test 

SQL Scripts to write and also also asked to design an data model of my choice in Telecom Domain

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

(5 Questions)

  • Q1. Encription and decription in swift
  • Ans. 

    Encryption and decryption in Swift involves using cryptographic algorithms to encode and decode data securely.

    • Use common encryption algorithms like AES or RSA for encryption.

    • Implement encryption using libraries like CommonCrypto or CryptoSwift.

    • Store encryption keys securely and use secure protocols for data transmission.

    • Example: Encrypting a string using AES encryption in Swift.

  • Answered by AI
  • Q2. Keychain access in swift
  • Ans. 

    Keychain access in Swift allows secure storage of sensitive information like passwords, tokens, etc.

    • Use Keychain Services API to securely store and retrieve sensitive data.

    • Keychain items are stored securely in the device's keychain and are encrypted.

    • Access keychain items using unique identifiers called keys.

    • Use Keychain Swift library for easier implementation.

  • Answered by AI
  • Q3. Class vs struct
  • Ans. 

    Classes are reference types, while structs are value types in Swift.

    • Classes are reference types, meaning they point to the same instance in memory when assigned to a new variable.

    • Structs are value types, meaning they create a new copy when assigned to a new variable.

    • Use classes for complex data structures or when you need inheritance, use structs for simple data types or when you want value semantics.

    • Example: class Per...

  • Answered by AI
  • Q4. If let and guard let
  • Q5. Grand central dispatch in swift
  • Ans. 

    Grand Central Dispatch (GCD) is a technology in Swift for managing concurrent operations.

    • GCD allows developers to perform tasks concurrently without having to manage threads manually.

    • It provides a high-level API for managing tasks and executing them on different queues.

    • Developers can use GCD to perform tasks in the background, update the UI on the main thread, and more.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. What is the uses of filter stage
  • Ans. 

    Filter stage is used in ETL processes to selectively pass or reject data based on specified criteria.

    • Filter stage helps in removing unwanted data from the input dataset.

    • It can be used to apply conditions like filtering out duplicate records, selecting specific columns, or excluding certain values.

    • For example, a filter stage can be used to only pass records where the sales amount is greater than $1000.

  • Answered by AI
  • Q2. What is the uses of transfor stage
  • Ans. 

    Transform stage is used in ETL process to apply business rules, clean and enrich data before loading into target database.

    • Transform stage is used to apply business rules to the data.

    • It is used to clean and standardize data before loading into the target database.

    • Transform stage can also be used to enrich data by combining multiple sources or adding calculated fields.

    • Examples include converting data types, removing dupl

  • Answered by AI
  • Q3. What is the uses of sort stage
  • Ans. 

    Sort stage is used in ETL processes to sort data based on specified criteria before loading it into the target system.

    • Sort stage helps in arranging data in a specific order for better analysis and reporting

    • It can be used to remove duplicates from data before loading

    • Sorting can be done based on multiple columns or expressions

    • Example: Sorting customer data based on their purchase amount before loading into a data warehou

  • Answered by AI
  • Q4. How to create the prallel job
  • Ans. 

    To create a parallel job, use parallel processing techniques to divide tasks into smaller subtasks that can be executed simultaneously.

    • Identify tasks that can be executed independently and in parallel

    • Use parallel processing techniques such as multi-threading or distributed computing

    • Implement parallel job using ETL tools like Informatica or Talend

    • Monitor and optimize parallel job performance to ensure efficient executio

  • Answered by AI
  • Q5. Defenation of scd
  • Ans. 

    SCD stands for Slowly Changing Dimension, a technique used in data warehousing to track changes in dimension attributes over time.

    • SCD is used to maintain historical data in a data warehouse

    • There are different types of SCDs - Type 1, Type 2, and Type 3

    • Type 1 SCD overwrites old data with new data

    • Type 2 SCD creates a new record for each change and maintains history

    • Type 3 SCD keeps a limited history by adding columns to tr

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi my name is ravindra pls check my profile .i'm intrested ur company

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Basics of Kotlin
  • Q2. Jetpack component.
  • Q3. One from data structure.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How to insert multiple values in one go
  • Ans. 

    Use the INSERT INTO statement with multiple value sets separated by commas

    • Use the INSERT INTO statement followed by the table name

    • List the column names in parentheses after the table name

    • Use the VALUES keyword followed by multiple value sets in parentheses, separated by commas

    • Example: INSERT INTO table_name (column1, column2) VALUES (value1, value2), (value3, value4)

  • Answered by AI
  • Q2. Update query using joins
  • Ans. 

    Update query using joins in SQL

    • Use UPDATE statement with JOIN clause to update data in multiple tables

    • Specify the tables to be updated and joined using ON clause

    • Set the columns to be updated in SET clause

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Basic Questions

Skills evaluated in this interview

WERTMARK TECHNOLOGIES Interview FAQs

How many rounds are there in WERTMARK TECHNOLOGIES Senior SQL Developer interview for experienced candidates?
WERTMARK TECHNOLOGIES interview process for experienced candidates usually has 2 rounds. The most common rounds in the WERTMARK TECHNOLOGIES interview process for experienced candidates are Resume Shortlist and Technical.
What are the top questions asked in WERTMARK TECHNOLOGIES Senior SQL Developer interview for experienced candidates?

Some of the top questions asked at the WERTMARK TECHNOLOGIES Senior SQL Developer interview for experienced candidates -

  1. write an sp to with 5 input var and one output var,all int and display the max ...read more
  2. write a job scheduler code to backup up database daily at a particular t...read more
  3. pivote table syntax, trigger synt...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Accenture Interview Questions
3.9
 • 7.9k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 4.9k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all
Compare WERTMARK TECHNOLOGIES with

Infosys

3.7
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview