Upload Button Icon Add office photos
Engaged Employer

i

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

kipi.ai Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

kipi.ai Solution Architect Interview Questions and Answers

Updated 23 Jul 2024

kipi.ai Solution Architect Interview Experiences

2 interviews found

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

(1 Question)

  • Q1. Questions on Tableau
Round 2 - Technical 

(1 Question)

  • Q1. Questions on SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - Study SQL and BI
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Dec 2022. There were 6 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 

(2 Questions)

  • Q1. About snowflake. SQL, DBT, DW
  • Q2. Database, project experience, Roles
Round 3 - Technical 

(1 Question)

  • Q1. About Managerial, DBMS, Snowflake, sql
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion
Round 5 - One-on-one 

(1 Question)

  • Q1. Easy round. Project related questions.
Round 6 - Client Interview 

(1 Question)

  • Q1. Project and current role related questions

Solution Architect Interview Questions Asked at Other Companies

asked in HCLTech
Q1. What is the difference between a classic folder and a modern fold ... read more
Q2. Why does Pega suggest not having a framework layer while designin ... read more
asked in Ericsson
Q3. What is Kubernets? what is difference between pod and VM what are ... read more
asked in TCS
Q4. How do you deal with Not participating business, not motivated st ... read more
asked in IBM
Q5. What were the challenges faced while do application migration on ... read more

Top trending discussions

View All
Interview Hub
6d (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about kipi.ai?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. It was mostly puzzles.
  • Q2. One algo question invoving recursive function .
  • Ans. 

    Recursive functions solve problems by breaking them down into smaller subproblems, often leading to elegant solutions.

    • A recursive function calls itself with modified parameters.

    • Base case is crucial to prevent infinite recursion.

    • Example: Factorial function - factorial(n) = n * factorial(n-1) with base case factorial(0) = 1.

    • Example: Fibonacci sequence - fib(n) = fib(n-1) + fib(n-2) with base cases fib(0) = 0, fib(1) = 1.

    • ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - For freshers - prepare puzzles and basic computer science fundamentals

I applied via Campus Placement and was interviewed before Jul 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Check if binary tree is balanced or not.
  • Q2. Detect loops in linked list.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview experience was good, do your DS Algo questoin thoroughly.

Skills evaluated in this interview

I applied via Referral and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Coding Test 

If you are a fresher , then this is for you else almost no coding test for experienced candidates.

Round 2 - One-on-one 

(1 Question)

  • Q1. Javascript basics, Angular react general questions depends upon profile.
Round 3 - Behavioral 

(1 Question)

  • Q1. They asked general questions related to some hectic situation faced in previous company / project..

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm . Clear your basics . That's it.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. React lifecycle methods, React hooks

kipi.ai HR Interview Questions

7 questions and answers

Q. Can you discuss your education and research experience as reflected in your ... read more
Q. Can you provide details about your education and research experience?
Q. What was discussed regarding your education and research experiences?
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. RDBMS related questions asked
  • Q2. SQL login building related questions
Are these interview questions helpful?
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jul 2024.

Round 1 - Coding Test 

Leet code medium level question

Round 2 - Technical 

(2 Questions)

  • Q1. About Java Streams
  • Q2. Restful API coding completion based on given file
  • Ans. 

    Guide to completing a RESTful API coding task with essential pointers and examples.

    • Understand REST principles: Use HTTP methods (GET, POST, PUT, DELETE) appropriately.

    • Define clear endpoints: Example - /api/users for user-related operations.

    • Implement status codes: Use 200 for success, 404 for not found, 500 for server errors.

    • Use JSON for data interchange: Ensure requests and responses are in JSON format.

    • Consider authent...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. To check your attitude
  • Q2. Given detailed about company and what project you are going to work on?
Round 4 - One-on-one 

(5 Questions)

  • Q1. Hashmap working
  • Ans. 

    A hashmap is a data structure that stores key-value pairs for efficient data retrieval using a hash function.

    • Uses a hash function to compute an index for storing values.

    • Handles collisions using methods like chaining or open addressing.

    • Example: Inserting a key-value pair (key: 'apple', value: 1) involves hashing 'apple' to find an index.

    • Retrieving a value involves hashing the key again to find the corresponding index.

  • Answered by AI
  • Q2. Multithreading cases
  • Q3. Scenario specific on how to handle multiple events on a single variable to have accurate result
  • Ans. 

    Managing multiple events on a single variable requires careful synchronization to ensure accurate results.

    • Use locks or mutexes to prevent race conditions when accessing the variable.

    • Implement event debouncing to limit the frequency of updates, ensuring only the final event is processed.

    • Utilize a queue to handle events sequentially, processing them one at a time to maintain accuracy.

    • Consider using atomic operations for ...

  • Answered by AI
  • Q4. Database indexing
  • Q5. Architecture level
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jul 2024, where I was asked the following questions.

  • Q1. .Net Core Framework
  • Q2. SQL Web api c#
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Phone screen about previous experience
Round 2 - Technical 

(1 Question)

  • Q1. Mobile app development basics
Round 3 - HR 

(1 Question)

  • Q1. Culture fit questions

kipi.ai Interview FAQs

How many rounds are there in kipi.ai Solution Architect interview?
kipi.ai interview process usually has 4 rounds. The most common rounds in the kipi.ai interview process are Technical, Resume Shortlist and HR.
How to prepare for kipi.ai Solution Architect 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 kipi.ai. The most common topics and skills that interviewers at kipi.ai expect are Data Modeling, Data Warehousing, ETL, Data Architecture and SQL.
What are the top questions asked in kipi.ai Solution Architect interview?

Some of the top questions asked at the kipi.ai Solution Architect interview -

  1. easy round. Project related questio...read more
  2. About Managerial, DBMS, Snowflake, ...read more
  3. About snowflake. SQL, DBT,...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 2 interview experiences

Difficulty level

Easy 100%

Duration

2-4 weeks 100%
View more
kipi.ai Solution Architect Salary
based on 43 salaries
₹33.6 L/yr - ₹56 L/yr
34% more than the average Solution Architect Salary in India
View more details

kipi.ai Solution Architect Reviews and Ratings

based on 5 reviews

4.0/5

Rating in categories

4.0

Skill development

3.6

Work-life balance

3.8

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 5 Reviews and Ratings
Senior Software Engineer
186 salaries
unlock blur

₹8.6 L/yr - ₹16 L/yr

Lead Engineer
110 salaries
unlock blur

₹16 L/yr - ₹28.6 L/yr

Senior Leader Engineer
73 salaries
unlock blur

₹17.5 L/yr - ₹30 L/yr

Solution Architect
43 salaries
unlock blur

₹33.6 L/yr - ₹56 L/yr

Data Engineer
41 salaries
unlock blur

₹6.1 L/yr - ₹23.9 L/yr

Explore more salaries
Compare kipi.ai with

Medcode

4.3
Compare

Cyfuture

2.9
Compare

Maxgen Technologies

4.6
Compare

JoulestoWatts Business Solutions

3.0
Compare
write
Share an Interview