Upload Button Icon Add office photos

Thryve Digital

Compare button icon Compare button icon Compare

Filter interviews by

Thryve Digital Software Developer Interview Questions and Answers for Freshers

Updated 25 Apr 2023

Thryve Digital Software Developer Interview Experiences for Freshers

1 interview found

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

Only one written test consists of aptitude questions and one coding question. coding question is easy-moderate

Round 2 - Technical 

(1 Question)

  • Q1. There are 2 technical rounds .In first round they have covered Java theory concepts and oops basic questions and asked me to write any sorting code and a SQL query that is print who's salary lies between 1...
Round 3 - HR 

(1 Question)

  • Q1. About yourself, Where you are after 5 years,Are you ready to relocate,about company and some basic hr questions.

Interview questions from similar companies

I applied via Company Website and was interviewed in Feb 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic Mainframe questions and some advanced scenario based questions
Round 2 - Behavioral 

(1 Question)

  • Q1. The usual how,what,why MR round questions
Round 3 - HR 

(6 Questions)

  • Q1. What are your salary expectations?
  • Q2. Share details of your previous job.
  • Q3. Why should we hire you?
  • Q4. Why are you looking for a change?
  • Q5. Tell me about yourself.
  • Q6. Where do you see yourself in 5 years?

Interview Preparation Tips

Interview preparation tips for other job seekers - I was looking for a Hogan Developer post(based on Mainframe).I would suggest to refresh the basic Mainframe questions and some advanced concepts while preparing for the interview.The whole interview process was smooth and pretty well coordinated.There were 3 levels of interview(TR,MR,HR) of moderate difficulty.Luxoft will also provide satisfactory package as per market standards if the interview goes well. If your looking for permanent remote openings, I do believe Luxoft organisation is one of the better choices that is currently out there in the market.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Aug 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Project amd Advanced C++ concepts
Round 2 - Coding Test 

C++ coding questions and logical questions

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

I applied via Company Website

Round 1 - Technical 

(1 Question)

  • Q1. OOP, SQL, Collection, algorithms, threads
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

30 mins Aptitude Question

Round 2 - Coding Test 

30 mins - 3 Coding Question

Round 3 - Technical 

(2 Questions)

  • Q1. Describe Rest API
  • Ans. 

    Rest API is a set of rules and conventions for building and interacting with web services using HTTP methods.

    • Rest API stands for Representational State Transfer Application Programming Interface.

    • It uses standard HTTP methods like GET, POST, PUT, DELETE to perform CRUD operations.

    • RESTful APIs use URLs to access resources, and return data in JSON or XML format.

    • Stateless communication allows for scalability and flexibilit...

  • Answered by AI
  • Q2. What is various Response code. Diffenrence b/w 200 & 201, 400 & 403
  • Ans. 

    Response codes indicate the status of a HTTP request. 200 & 201 are success codes, while 400 & 403 are client error codes.

    • 200 - OK: Request was successful

    • 201 - Created: Request was successful and a new resource was created

    • 400 - Bad Request: The server cannot process the request due to a client error

    • 403 - Forbidden: The server understood the request, but refuses to authorize it

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - Coding Test 

Array questions asked with sorting and total count for particular number and index print

Round 2 - Coding Test 

Linked list coding, hashmap internal coding demonstration.

Round 3 - HR 

(1 Question)

  • Q1. Salary expectation , nothing much why you want to join....

Interview Preparation Tips

Interview preparation tips for other job seekers - In depth knowledge check, questions were moderate level, can be easily cracked if one knows the concept good enough.
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. What do you do for performance improvement while using ajax ?
  • Ans. 

    Use caching, minimize data transfer, optimize server-side code.

    • Implement caching to reduce server requests

    • Minimize data transfer by sending only necessary data

    • Optimize server-side code for faster response time

  • Answered by AI
  • Q2. What is transaction in database ?
  • Ans. 

    A transaction in a database is a sequence of operations that are treated as a single unit of work.

    • Transactions ensure data consistency and integrity.

    • They allow multiple operations to be grouped together and either all succeed or all fail.

    • ACID properties (Atomicity, Consistency, Isolation, Durability) are maintained in transactions.

    • Examples of transactions include transferring money between bank accounts or updating inv

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. What activities do you perform for any new project?
  • Q2. Can you connect directly to db using jscript ?
  • Ans. 

    Yes, it is possible to connect to a database using JavaScript.

    • JavaScript can connect to databases using APIs such as Web SQL, IndexedDB, and MongoDB.

    • It is also possible to use Node.js to connect to databases using JavaScript.

    • However, it is not recommended to connect to a database directly from client-side JavaScript due to security concerns.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You should know everything on your resume ?

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Mar 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. Basics about big data tools. Use case on Pyspark. How to add the new column and what is AQE benefits and Delta table optimisation tenchiques.
  • Q2. Basics about Azure resources like ADF, Azure Databricks. Explained the project architecture and sone questions on that.
  • Q3. Pyspark optimisation techniques explain and write scd type 2 sample code.
  • Ans. 

    Optimisation techniques in Pyspark and sample code for SCD type 2

    • Use broadcast variables to reduce data shuffling

    • Partition data based on key columns to improve performance

    • Use cache() or persist() to avoid recomputing data

    • Use coalesce() or repartition() to reduce the number of partitions

    • For SCD type 2, use merge() function to update or insert new records

    • Example code for SCD type 2: https://github.com/awantik/pyspark-101

  • Answered by AI
Round 3 - Techno mangerial round 

(2 Questions)

  • Q1. How huge data your are working? What are toughest problem you faced and resolved it ?
  • Ans. 

    I have worked with huge data sets in the past.

    • I have experience working with data sets ranging from a few gigabytes to several terabytes.

    • One of the toughest problems I faced was optimizing a query that was taking too long to execute.

    • I resolved it by analyzing the query plan and identifying the bottleneck, then optimizing the query accordingly.

    • Another challenge I faced was dealing with data inconsistencies, which I reso...

  • Answered by AI
  • Q2. Explain you project architecture ? Show some sample codes of the same.
  • Ans. 

    Our project architecture follows a microservices approach with containerization using Docker and orchestration with Kubernetes.

    • We have divided our application into smaller, independent services that communicate with each other through APIs.

    • Each service is containerized using Docker, allowing for easy deployment and scaling.

    • We use Kubernetes for orchestration, which automates the deployment, scaling, and management of o...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Compensation decision and clear your doubts regarding organisation.

Interview Preparation Tips

Topics to prepare for Luxoft Software Engineer interview:
  • Pyspark
  • Adf
  • databricks
  • synapse
Interview preparation tips for other job seekers - Be confident with your are answers and strong in basic big data and azure.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Aug 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Be truthful in your resume. It is very easy to catch false or lies during the interview by asking basic questions.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. As I am a CCM developer there were brief questions about the tool that's it
  • Q2. The application was getting upgraded to a new one,I was some situation and asked how to solve it.
Round 3 - One-on-one 

(1 Question)

  • Q1. The second round was with the delivery lead and he was mostly explaining about the work and the project
Round 4 - HR 

(1 Question)

  • Q1. This was on the employee benefits and salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was to the point and brief.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Jan 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - HR 

(2 Questions)

  • Q1. Self introduction and technical what is data factory and explain about the project
  • Q2. What is your goals and family background
  • Ans. 

    My goal is to become a highly skilled software engineer and contribute to innovative projects. My family background is supportive and has encouraged my pursuit of a career in technology.

    • Goal: Become a highly skilled software engineer

    • Contribute to innovative projects

    • Family background: Supportive and encouraging

    • Pursuit of a career in technology

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - very easy interview and there will be two rounds but

Thryve Digital Interview FAQs

How many rounds are there in Thryve Digital Software Developer interview for freshers?
Thryve Digital interview process for freshers usually has 4 rounds. The most common rounds in the Thryve Digital interview process for freshers are Aptitude Test, Technical and HR.

Tell us how to improve this page.

Thryve Digital Software Developer Interview Process for Freshers

based on 1 interview

Interview experience

3
  
Average
View more
Thryve Digital Software Developer Salary
based on 22 salaries
₹3 L/yr - ₹8.8 L/yr
39% less than the average Software Developer Salary in India
View more details

Thryve Digital Software Developer Reviews and Ratings

based on 5 reviews

4.5/5

Rating in categories

4.0

Skill development

4.1

Work-life balance

4.5

Salary

4.5

Job security

4.5

Company culture

4.3

Promotions

4.0

Work satisfaction

Explore 5 Reviews and Ratings
Senior Analyst
453 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Consultant
372 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Consultant
333 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Process Analyst
312 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Process Analyst
271 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Thryve Digital with

Webenza

3.9
Compare

WATConsult

3.3
Compare

Interactive Avenues

3.7
Compare

Mirum

3.1
Compare
Did you find this page helpful?
Yes No
write
Share an Interview