Upload Button Icon Add office photos
Engaged Employer

i

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

Wondersoft Private Limited Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Wondersoft Private Limited Interview Questions and Answers

Updated 2 Jan 2025

Wondersoft Private Limited Interview Experiences

Popular Designations

5 interviews found

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

I applied via Referral and was interviewed in Jul 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

The test was easy and u just need to remember ur basics.

Round 2 - HR 

(3 Questions)

  • Q1. The hr was nice and HR was friendly.
  • Q2. He asked me about myself
  • Q3. My family and any industrial experience.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just remember ur basics and it's easy to crack the interview.🙂

Electrical GET Interview Questions asked at other Companies

Q1. Can you explain Ohm's Law and how it relates to electrical circuits? What is the difference between AC (Alternating Current) and DC (Direct Current)? Describe the difference between analog and digital signals. Give an example of each. How w... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jan 2024. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Tell about yourself
  • Ans. 

    Experienced international sales professional with a proven track record of exceeding targets and building strong client relationships.

    • Over 10 years of experience in international sales

    • Successfully managed a team that increased sales by 30% in the past year

    • Strong negotiation skills demonstrated through closing major deals with key clients

    • Fluent in multiple languages, facilitating communication with global clients

  • Answered by AI
Round 2 - CMO 

(1 Question)

  • Q1. Tel me about yourself and your previous experience and your achievements
  • Ans. 

    I am a seasoned sales professional with over 10 years of experience in international sales. I have a proven track record of exceeding targets and driving revenue growth.

    • Worked for XYZ Company for 5 years, consistently exceeded sales targets by 20%

    • Managed a team of 10 sales representatives and successfully increased international sales by 30%

    • Implemented new sales strategies that resulted in a 15% increase in revenue

    • Rece...

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. Tell me about yourself with your previous work experience and achievements
  • Ans. 

    I have over 10 years of experience in international sales, with a proven track record of exceeding targets and building strong client relationships.

    • Managed a team of sales representatives across multiple countries

    • Developed and implemented successful sales strategies to increase revenue by 30%

    • Negotiated and closed major deals with key clients such as XYZ Company

    • Received 'Salesperson of the Year' award for three consecut

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and bold when you speak and be clear wat your speaking or wat you are going to speak

International Sales Manager Interview Questions asked at other Companies

Q1. The average yield in the SCM industry is between 10-12 and if the customer is big MNC then the yield differ and can be lower than 10 depending on the volume.
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Oct 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 - Aptitude Test 

The aptitude test was mostly answerable

Round 3 - Coding Test 

Coding test are moderate

Round 4 - Technical 

(1 Question)

  • Q1. Technical questions are moderate
Round 5 - One-on-one 

(1 Question)

  • Q1. Discussion technical competency and earlier experience
Round 6 - HR 

(1 Question)

  • Q1. CTC discussion with HR

Junior Programmer Interview Questions asked at other Companies

Q1. What Location is preferred
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Online Aptitude just for get 5/10 choose the correct answer format

Round 3 - Technical 

(2 Questions)

  • Q1. Java basics and sql basics
  • Q2. Java - oops, collections, data structures sql - CRUD, joins and groupings
Round 4 - HR 

(1 Question)

  • Q1. Salary discussions and working culture

Senior Associate Developer Interview Questions asked at other Companies

Q1. Explain the difference between IEnumerable and IQueryable in .NET. When would you use one over the other?
View answer (1)

Wondersoft Private Limited interview questions for popular designations

 Electrical GET

 (1)

 DOT NET Developer

 (1)

 International Sales Manager

 (1)

 Junior Programmer

 (1)

 Senior Associate Developer

 (1)

I applied via Naukri.com and was interviewed in Jul 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. They are using spreadsheet , They ask me fully basic controls operation and Database Table and store producer

Interview Preparation Tips

Interview preparation tips for other job seekers - Make Strong in Basic Controls and Database

DOT NET Developer Interview Questions asked at other Companies

Q1. What is the difference between windows application development and web based development?
View answer (11)

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: A coding test (Students were asked to bring Laptops)
Tips: Be thorough with C/C++, networking, OS, Data structures and architecture
Duration: 90 minutes

Round: Interview
Experience: 3 rounds of interview, one hour each, all technical 
Interview Process:All the three rounds are oriented around programming. A lot of focus was given to Data structures, C/C++, OS and algorithmsThe code from previous test is shown and they expect you to fix any bugs if thereThe interviewers are quietly friendly and help if you get stuck at any pointIf you do have any related projects, anticipate some thorough questions on that
Tips: Though the interviewers are helpful, get your basics clear early on. Don't rely on them.Practice coding sessions, a lot of companies have them as a shortlisting criteria.

College Name: IIT Madras

Interview Preparation Tips

Round: Test
Experience: PAPER DURATION: 3 hours
NO. OF QUESTIONS: 2 (20 marks each)
MAXIMUM MARKS: 20*2 = 40 marksQUESTION 1:
JSON Prettier:-Write a program which takes JSON as input and gives prettified JSONYou need to read JSON from STDIN. Input gives one line of uglified JSON.Output should be formatted JSON. Check the standard output link.Use 2 white spaces (not‘\t’) for one indentation.SAMPLE INPUT:{“group” : {list : [1,2,3]}, “list” : [“a”,”b”,”c”]}SAMPLE OUTPUT:{“group” : {List : [1,2,3]},“list” : [“a”,”b”,”c”]}EXPLANATION: Input will be uglifiedjson in one line and output will be prettified format of that. QUESTION 2:XML parse plus series computationEvaluate an expression given in XML format. Keys will be Expr- contains the entire expression. Elem – contains the digit, sum, Prod- contains two or more keys whose evaluation needs to be summed or multiplied respectively. Sub will contain 2 keys or more, where the second key onwards will have to be subtracted from the first one. Div- will contain 2 keys in which first key will need to be divided by second. SAMPLE INPUT:4673 SAMPLE OUTPUT:
20EXPLANATION:Input will be xml file through standard input. End of xml file marked by .
Duration: 180 minutes
Total Questions: 2

College Name: NA
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jun 2022. 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. Linux commands,
  • Q2. Cloud technologies different services (iaas, paas, saas)
  • Ans. 

    Cloud technologies offer different services like IaaS, PaaS, and SaaS for varying levels of control and management.

    • IaaS (Infrastructure as a Service) provides virtualized computing resources over the internet, such as virtual servers and storage.

    • PaaS (Platform as a Service) offers a platform allowing customers to develop, run, and manage applications without dealing with infrastructure.

    • SaaS (Software as a Service) deli...

  • Answered by AI
  • Q3. What do you know AWS

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up OS basics and cloud technologies.

Skills evaluated in this interview

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

I applied via Company Website and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Discussion about OOPS concepts and String related program

Round 2 - Coding Test 

Program on Recursion and Array

Round 3 - HR 

(2 Questions)

  • Q1. Strength and Weakness
  • Q2. Reason for joining with company
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Coding Test 

There was coding test

Round 2 - Technical 

(2 Questions)

  • Q1. 2 technical rounds
  • Q2. Merge sort algorithm
  • Ans. 

    Merge sort is a divide and conquer algorithm that divides the input array into two halves, sorts them separately, and then merges them back together in sorted order.

    • Divide the input array into two halves

    • Recursively sort each half

    • Merge the sorted halves back together

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. Leetcode Easy question

Skills evaluated in this interview

Wondersoft Private Limited Interview FAQs

How many rounds are there in Wondersoft Private Limited interview?
Wondersoft Private Limited interview process usually has 3-4 rounds. The most common rounds in the Wondersoft Private Limited interview process are HR, Aptitude Test and Resume Shortlist.
How to prepare for Wondersoft Private Limited 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 Wondersoft Private Limited. The most common topics and skills that interviewers at Wondersoft Private Limited expect are PDF, Retail, Interpersonal Skills, Lead Generation and MySQL.
What are the top questions asked in Wondersoft Private Limited interview?

Some of the top questions asked at the Wondersoft Private Limited interview -

  1. They are using spreadsheet , They ask me fully basic controls operation and Dat...read more
  2. java - oops, collections, data structures sql - CRUD, joins and groupi...read more
  3. The hr was nice and HR was friend...read more

Tell us how to improve this page.

Wondersoft Private Limited Interview Process

based on 6 interviews

Interview experience

4.7
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 796 Interviews
View all

Wondersoft Private Limited Reviews and Ratings

based on 64 reviews

3.7/5

Rating in categories

3.5

Skill development

3.3

Work-life balance

3.5

Salary

4.0

Job security

3.5

Company culture

3.1

Promotions

3.4

Work satisfaction

Explore 64 Reviews and Ratings
Technical Support Engineer
29 salaries
unlock blur

₹1.6 L/yr - ₹4 L/yr

Associate Support Engineer
14 salaries
unlock blur

₹3.2 L/yr - ₹5 L/yr

Technical Support Associate
10 salaries
unlock blur

₹2.6 L/yr - ₹4.5 L/yr

Software Developer
9 salaries
unlock blur

₹2.6 L/yr - ₹4 L/yr

Senior Associate
9 salaries
unlock blur

₹2.8 L/yr - ₹5.8 L/yr

Explore more salaries
Compare Wondersoft Private Limited with

Aurigo

4.7
Compare

Prime Focus Technologies

3.4
Compare

Nowfloats Technologies

3.2
Compare

Peel-works

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