Upload Button Icon Add office photos
Engaged Employer

i

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

Valcon Verified Tick

Compare button icon Compare button icon Compare
3.0

based on 1 Review

i

This rating is based on a small number of reviews, so it may not fully reflect the overall employee experience.

Filter interviews by

Valcon Senior Data Engineer Interview Questions and Answers

Updated 11 Nov 2024

Valcon Senior Data Engineer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Job Portal

Round 1 - HR 

(1 Question)

  • Q1. General questions about experience
Round 2 - Technical 

(1 Question)

  • Q1. Technical questions about DWH, ETL

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. DSA question with Some Stack
  • Q2. Discussion around Current project
Round 2 - One-on-one 

(2 Questions)

  • Q1. Managerial discussion around resume and some basic java and spring question
  • Q2. Java and spring boot question
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

I was hiring drive. First round was coding test with medium to advanced SQL, data modelling and python questions

Round 2 - One-on-one 

(3 Questions)

  • Q1. Data model e commerce application
  • Q2. Higest nth rank and lowest rank if no of employees less than 2
  • Ans. 

    If number of employees is less than 2, highest and lowest rank will be the same.

    • If there are less than 2 employees, both highest and lowest rank will be the same.

    • For example, if there is only 1 employee, their rank will be 1 which is both the highest and lowest rank.

  • Answered by AI
  • Q3. Event session data modeling
Round 3 - One-on-one 

(1 Question)

  • Q1. Sql-self join, non equi join, window funtion, consecutive seats, data modeling, stock market maximum profit sql question
Round 4 - One-on-one 

(1 Question)

  • Q1. This was hiring manager round. Detailed discussions on project and previous experience
Round 5 - HR 

(1 Question)

  • Q1. Strength, weakness and why myntra

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Adv SQL, Spark, data modeling, data engineering system design
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Interviewer asked me basic SQL questions
  • Q2. In the second technical round he asked me advanced SQL topics (Windows Functions, Joins & Subqueries)
Round 2 - Coding Test 

In the second technical round interview asked me about advanced sql topics, theory questions and two coding questions in joins and window functions.

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

(2 Questions)

  • Q1. Tell me about your projects?
  • Q2. How do you approach the project if you are using logistic regression model?
  • Ans. 

    Approach involves data preprocessing, model training, evaluation, and interpretation.

    • Perform data preprocessing such as handling missing values, encoding categorical variables, and scaling features.

    • Split the data into training and testing sets.

    • Train the logistic regression model on the training data.

    • Evaluate the model using metrics like accuracy, precision, recall, and F1 score.

    • Interpret the model coefficients to under...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. What are you future goals?
  • Q2. What would you do if your interested field doesnt have any work in the company?
  • Ans. 

    I would seek opportunities to apply my skills in related fields within the company.

    • Explore other departments or teams within the company that may have projects related to my field of interest

    • Offer to collaborate with colleagues in different departments to bring a new perspective to their projects

    • Seek out professional development opportunities to expand my skills and knowledge in related areas

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(3 Questions)

  • Q1. Peevious Experience related questions
  • Q2. Dashboard related questions
  • Q3. Sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - I recently went through an interview process and wanted to share some insights and advice for others.

I was informed by the HR team that my interview would be conducted in person, with all rounds taking place on the same day, and that I would receive the results the same day. As a result, I traveled a considerable distance to attend.for the interview the told me to wait for the 3 hrs.

- During the interview, it was disheartening to find that the interviewer seemed uninterested in my responses. I was asked to write queries on paper, and while I was explaining them, the interviewer was preoccupied with reading emails and all other work. Despite providing correct answers, the experience felt dismissive.

After the interview, I was asked to wait for feedback. After waiting for two hours, the HR team informed me that my review was still in process and that they would follow up. After three days and multiple follow-ups, I was eventually told that I did not clear the round.

While I am okay with the outcome, I have a few requests for companies conducting interviews:

1.Respect Candidates' Efforts and Time: Please be considerate of the efforts and time candidates invest, especially those who travel long distances.
2. Clear Communication: If face-to-face interviews are required, particularly for final rounds, please communicate this clearly to avoid unnecessary travel and inconvenience.

I hope these points help improve the interview process for future candidates.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. What is event loop, how it works.
  • Ans. 

    Event loop is a mechanism in programming that allows for asynchronous execution of code by continuously checking for and handling events.

    • Event loop is commonly used in JavaScript to handle asynchronous operations like setTimeout, setInterval, and AJAX requests.

    • It works by continuously checking the event queue for any pending events, executing them one by one, and then moving on to the next event.

    • Event loop helps in pre...

  • Answered by AI
  • Q2. Micro task queue and macro task queue.
  • Q3. Is node.js single threaded or multi-threaded, also discuss threadpool and it's usages.
  • Q4. Tell the order of output, among process, promise, setTimeout, fs, setInterval.
  • Ans. 

    The order of output is fs, process, setTimeout, setInterval, promise.

    • fs module is synchronous and will output first

    • process is next in line

    • setTimeout will be executed after process

    • setInterval will be executed after setTimeout

    • promise will be executed last

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. JavaScript usages compiler or interpreter.
  • Ans. 

    JavaScript is an interpreted language.

    • JavaScript is an interpreted language, meaning it is executed line by line at runtime.

    • There is no separate compilation step in JavaScript like in languages that use compilers.

    • Examples of interpreted languages include Python, Ruby, and PHP.

  • Answered by AI
  • Q2. Tell the output among various for loops using var, let and bind.
  • Ans. 

    Output comparison of for loops using var, let, and bind in JavaScript.

    • Using var: variable is function-scoped, may lead to unexpected behavior in loops.

    • Using let: variable is block-scoped, recommended for loop iterations.

    • Using bind: creates a new function with a specified 'this' value and initial arguments.

  • Answered by AI
  • Q3. A medium level dsa question on array, solved it using pre-sum.
  • Q4. Situation based question, on how to pick a suitable database.
Round 3 - Technical 

(4 Questions)

  • Q1. What do you do on daily basis, and how to decide a tech-stack on high level.
  • Ans. 

    I work on coding, debugging, testing, and collaborating with team members. Tech stack decisions are based on project requirements, scalability, performance, and team expertise.

    • Daily tasks include coding, debugging, testing, and collaborating with team members

    • Tech stack decisions are based on project requirements, scalability, performance, and team expertise

    • Consider factors like language compatibility, libraries/framewo...

  • Answered by AI
  • Q2. Design an online scalable, real-time document sharing application like google docs.
  • Ans. 

    Design a scalable, real-time document sharing app like Google Docs.

    • Use websockets for real-time collaboration

    • Implement version control to track changes

    • Utilize a distributed database for scalability

    • Include user authentication and access control

    • Support offline editing with automatic sync

  • Answered by AI
  • Q3. How to handle images also in the future.
  • Ans. 

    Utilize cloud storage for scalability, implement image compression techniques, and regularly update image processing libraries.

    • Utilize cloud storage for scalability

    • Implement image compression techniques

    • Regularly update image processing libraries

  • Answered by AI
  • Q4. Any other way to solve the problem, of high I/O on same document to overcome throughput and conflicts.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Basic Recommendation System Questions
  • Q2. A B Testing Questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

Questions were crayon box ,the bot and the game and happy neighbourhood for 90 mins

Round 2 - Technical 

(2 Questions)

  • Q1. Array basics was asked
  • Q2. Segment tree,prefix sum
Round 3 - Technical 

(1 Question)

  • Q1. Low level design was asked
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. PROJECT DETAILS
  • Q2. SQL Qns
Round 2 - Technical 

(2 Questions)

  • Q1. PROJECT DETAILS
  • Q2. SQL Qnd

Valcon Interview FAQs

How many rounds are there in Valcon Senior Data Engineer interview?
Valcon interview process usually has 2 rounds. The most common rounds in the Valcon interview process are HR and Technical.

Tell us how to improve this page.

People are getting interviews through

based on 1 Valcon interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 419 Interviews
BigBasket Interview Questions
3.9
 • 345 Interviews
Udaan Interview Questions
4.0
 • 334 Interviews
Meesho Interview Questions
3.7
 • 320 Interviews
CARS24 Interview Questions
3.6
 • 315 Interviews
Lenskart Interview Questions
3.2
 • 291 Interviews
Myntra Interview Questions
4.0
 • 207 Interviews
BlackBuck Interview Questions
3.8
 • 171 Interviews
Blinkit Interview Questions
3.7
 • 169 Interviews
Spinny Interview Questions
3.7
 • 162 Interviews
View all
Compare Valcon with

Udaan

4.0
Compare

BigBasket

3.9
Compare

Swiggy

3.8
Compare

CARS24

3.6
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