Upload Button Icon Add office photos

Filter interviews by

Wittybrains Software Technologies Software Engineer Interview Questions and Answers

Updated 25 Jun 2024

9 Interview questions

A Software Engineer was asked 12mo ago
Q. Write a program to find the duplicate number in an array ranging from 1 to 100, where the input array contains exactly 100 items.
Ans. 

Program to find duplicate number in array of 1 to 100 items.

  • Iterate through array and use a set to keep track of seen numbers.

  • If a number is already in set, it is a duplicate.

  • Return the duplicate number found.

A Software Engineer was asked
Q. On which technology do you wish to work?
Ans. 

I wish to work on developing applications using artificial intelligence and machine learning technologies.

  • Passionate about developing intelligent systems that can learn and adapt

  • Interested in working on projects involving natural language processing, computer vision, and predictive analytics

  • Experience with tools and frameworks like TensorFlow, PyTorch, and scikit-learn

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Four people need to cross a bridge at night with only one torch t ... read more
asked in Capgemini
Q2. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... read more
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more
A Software Engineer was asked
Q. What is your working experience with Laravel?
Ans. 

Laravel is a PHP framework that simplifies web application development with elegant syntax and powerful features.

  • MVC Architecture: Laravel follows the Model-View-Controller pattern, separating logic and presentation.

  • Eloquent ORM: Provides an easy way to interact with the database using an object-oriented approach. Example: $user = User::find(1);

  • Routing: Laravel offers a simple and expressive way to define routes. ...

A Software Engineer was asked
Q. Explain the concept of polymorphism in OOP.
Ans. 

Polymorphism is the ability of an object to take on many forms.

  • Polymorphism allows objects of different classes to be treated as if they are of the same class.

  • It can be achieved through method overloading or method overriding.

  • Example: A shape class can have different subclasses like circle, square, and triangle. Each subclass can have its own implementation of the draw method.

  • Polymorphism makes code more flexible ...

A Software Engineer was asked
Q. What is the static keyword?
Ans. 

Static keyword is used to define a class-level variable or method that can be accessed without creating an instance of the class.

  • Static variables are shared among all instances of a class

  • Static methods can be called without creating an object of the class

  • Static keyword can also be used to define a static block of code that gets executed only once when the class is loaded

  • Example: public static int count = 0; or pub...

A Software Engineer was asked
Q. Write a program to reverse a string
Ans. 

Program to reverse a string

  • Use a loop to iterate through the string and append each character to a new string in reverse order

  • Alternatively, use built-in string functions like reverse() or slice()

A Software Engineer was asked
Q. Write a program to count vowels and consonants in a string.
Ans. 

A program to count the number of vowels and consonants in a given string.

  • Iterate through each character in the string

  • Check if the character is a vowel or consonant

  • Increment the respective count

  • Return the counts of vowels and consonants

Are these interview questions helpful?
A Software Engineer was asked
Q. What is the difference between the truncate and drop commands?
Ans. 

Truncate removes all data from a table while drop deletes the table itself.

  • Truncate is faster than drop as it only removes data and not the table structure

  • Truncate cannot be rolled back while drop can be

  • Truncate resets the identity of the table while drop does not

  • Truncate can only be used on tables while drop can be used on tables, views, and indexes

A Software Engineer was asked
Q. Write a program to delete the middle node from a linked list.
Ans. 

Program to delete middle node from linked list

  • Traverse the list to find the middle node

  • Delete the middle node by updating pointers

  • Handle edge cases like even number of nodes

Wittybrains Software Technologies Software Engineer Interview Experiences

3 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. All questions were based on Laravel
  • Q2. Fundamental question to check working experience on Laravel.
  • Ans. 

    Laravel is a PHP framework that simplifies web application development with elegant syntax and powerful features.

    • MVC Architecture: Laravel follows the Model-View-Controller pattern, separating logic and presentation.

    • Eloquent ORM: Provides an easy way to interact with the database using an object-oriented approach. Example: $user = User::find(1);

    • Routing: Laravel offers a simple and expressive way to define routes. Examp...

  • Answered by AI
  • Q3. About middleware
  • Q4. Question bases on Job, queue, worker and command etc.
Round 2 - One-on-one 

(2 Questions)

  • Q1. On which technology do you wish to work?
  • Q2. Being laravel developer lot of question based on Laravel

Interview Preparation Tips

Interview preparation tips for other job seekers - It was easy interview for me luckily. And I had several skills related to full stack developer so that helped me.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic Java Questions on OOPS, JVM, Microservices etc.
  • Q2. Write a program to find the duplicate number in an array ranging 1 to 100, the input array contains exactly 100 items.
  • Ans. 

    Program to find duplicate number in array of 1 to 100 items.

    • Iterate through array and use a set to keep track of seen numbers.

    • If a number is already in set, it is a duplicate.

    • Return the duplicate number found.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Dec 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 

(6 Questions)

  • Q1. Write a program to count vowels and consonants in string
  • Q2. Write a program to reverse a string
  • Q3. Write a program to delete middle node from the linked list
  • Ans. 

    Program to delete middle node from linked list

    • Traverse the list to find the middle node

    • Delete the middle node by updating pointers

    • Handle edge cases like even number of nodes

  • Answered by AI
  • Q4. What is the difference between truncate and drop command
  • Q5. What is static keyword
  • Q6. Explain oops concept (polymorphism)
  • Ans. 

    Polymorphism is the ability of an object to take on many forms.

    • Polymorphism allows objects of different classes to be treated as if they are of the same class.

    • It can be achieved through method overloading or method overriding.

    • Example: A shape class can have different subclasses like circle, square, and triangle. Each subclass can have its own implementation of the draw method.

    • Polymorphism makes code more flexible and r...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Study about oops concept.
Keep practice on sql queries

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
6d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Wittybrains Software Technologies?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Sep 2021. There were 4 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 

(1 Question)

  • Q1. Questions on IOT and related
Round 3 - Coding Test 

Questions mainly from Linked list.

Round 4 - Technical 

(1 Question)

  • Q1. Basically coding round, with basic questions from arrays. One needs to have good communication skills to explain to interviewers.

Interview Preparation Tips

Topics to prepare for VassarLabs Software Engineer interview:
  • DSA
  • IOT
Interview preparation tips for other job seekers - It is an startup, you need to ready for any questions.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2023. There were 3 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 

Basic java questions

Round 3 - Technical 

(2 Questions)

  • Q1. Explain Linked list implementation and stack
  • Ans. 

    Linked list is a data structure where each element points to the next element. Stack is a data structure that follows Last In First Out (LIFO) principle.

    • Linked list implementation involves creating nodes with data and a pointer to the next node.

    • Stack implementation involves pushing elements onto the stack and popping them off in reverse order.

    • Example: Linked list - 1 -> 2 -> 3 -> NULL, Stack - push(1), push(2), push(3)...

  • Answered by AI
  • Q2. Oops concepts in java
  • Ans. 

    Oops concepts in Java refer to Object-Oriented Programming principles like Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability of a method to do different things based on the object it is acting upon.

    • Abstraction: Hiding the imp...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn java and dsa

Skills evaluated in this interview

I applied via Company Website and was interviewed before Jun 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Php basic and array functions
  • Q2. Mysql basic,views,triggers

Interview Preparation Tips

Interview preparation tips for other job seekers - Average

I applied via Indeed and was interviewed before Jun 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic php and array functions
  • Q2. Mysql basic, views, triggers

Interview Preparation Tips

Interview preparation tips for other job seekers - Array related question and basic php mysql
Are these interview questions helpful?

I applied via Naukri.com and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. How meny days working, and working hours
  • Ans. 

    The number of working days and working hours for a Software Developer.

    • Software Developers typically work 5 days a week.

    • The standard working hours for Software Developers are 8 hours per day.

    • However, the actual number of working days and hours may vary depending on the company and project requirements.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - He was asking more then technical question, interviewer and hr are good person, it means helpfull.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic aptitude and coding problems were asked

Round 2 - Coding Test 

System design and advanced algorithms were asked

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

(1 Question)

  • Q1. 3 dsa problem asked

Wittybrains Software Technologies Interview FAQs

How many rounds are there in Wittybrains Software Technologies Software Engineer interview?
Wittybrains Software Technologies interview process usually has 1-2 rounds. The most common rounds in the Wittybrains Software Technologies interview process are Technical, Resume Shortlist and One-on-one Round.
What are the top questions asked in Wittybrains Software Technologies Software Engineer interview?

Some of the top questions asked at the Wittybrains Software Technologies Software Engineer interview -

  1. Write a program to count vowels and consonants in str...read more
  2. What is the difference between truncate and drop comm...read more
  3. Write a program to delete middle node from the linked l...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.7/5

based on 3 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
Wittybrains Software Technologies Software Engineer Salary
based on 53 salaries
₹2.2 L/yr - ₹10.9 L/yr
32% less than the average Software Engineer Salary in India
View more details

Wittybrains Software Technologies Software Engineer Reviews and Ratings

based on 9 reviews

3.7/5

Rating in categories

3.9

Skill development

4.4

Work-life balance

3.3

Salary

3.9

Job security

3.7

Company culture

3.1

Promotions

3.5

Work satisfaction

Explore 9 Reviews and Ratings
Software Engineer
53 salaries
unlock blur

₹2.2 L/yr - ₹10.9 L/yr

Softwaretest Engineer
32 salaries
unlock blur

₹2 L/yr - ₹7 L/yr

Software Developer
20 salaries
unlock blur

₹2.2 L/yr - ₹11.8 L/yr

Senior Software Test Engineer
18 salaries
unlock blur

₹7 L/yr - ₹13 L/yr

Senior Software Engineer
10 salaries
unlock blur

₹7.5 L/yr - ₹23 L/yr

Explore more salaries
Compare Wittybrains Software Technologies with

Karvy Financial Services

3.9
Compare

Reliance Money

3.5
Compare

Bss Microfinance

3.7
Compare

Sonata Finance

3.9
Compare
write
Share an Interview