Upload Button Icon Add office photos

Filter interviews by

Webileapps Software Developer Intern Interview Questions and Answers

Updated 16 Apr 2024

Webileapps Software Developer Intern Interview Experiences

1 interview found

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 Mar 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Educational Background
  • Q2. Projects and basic technologies
  • Q3. Technical questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Basic details about yourself
  • Q2. Basic technical questions

Interview questions from similar companies

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

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

Round 1 - SCREENING 

(2 Questions)

  • Q1. CLOSURE IN Javascript ?
  • Ans. 

    Closure in JavaScript is a function that has access to its own scope, as well as the outer scope in which it was defined.

    • A closure allows a function to access variables from its outer function even after the outer function has finished executing.

    • Closures are commonly used in event handlers, callbacks, and in functional programming.

    • Example: function outerFunction() { let outerVar = 'I am outer'; return function innerFun

  • Answered by AI
  • Q2. Class and ID difference
  • Ans. 

    Class is used to style multiple elements, while ID is used to style a single element.

    • Class can be used multiple times in a document, while ID should be unique

    • Class is denoted by a period (.), ID is denoted by a hash (#)

    • Class can be applied to multiple elements, ID can only be applied to one element

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. System Design question
  • Q2. Leetcode medium question on backtracking

Skills evaluated in this interview

I was interviewed in Mar 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

Timing was 10:00 AM. Platform was good.

  • Q1. Subarray With Given Sum

    Given an array ARR of N integers and an integer S. The task is to find whether there exists a subarray(positive length) of the given array such that the sum of elements of the subar...

  • Ans. Bruteforce Approach
    • In this approach, we will traverse all the subarrays and for each subarray, we will check whether the sum of the elements of the subarray matches with the given sum.
    • To traverse all the subarrays we will use two nested loops.
    • The outer loop will select the start index and the inner loop will fix the end index of the subarray. While incrementing the inner pointer(inner loop pointer) we will also maintai...
  • Answered by CodingNinjas
  • Q2. Remove Duplicates

    Given a string S, remove consecutive duplicates from it recursively.

    Input Format :
    String S
    
    Output Format :
    Output string
    
    Constraints :
    1 <= |S| <= 10^3
    where |S| represen...
  • Ans. Space Complexity: Explanation: Time Complexity: Explanation:
  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in MumbaiEligibility criteriaAbove 8 CGPAGoComet interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Practice Data structure questions.
Tip 2 : Do some projects.
Tip 3 : Have knowledge of DBMS.

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

The aptitude test was relatively straightforward, consisting of both aptitude and technical questions, with a difficulty level ranging from easy to medium.

Round 2 - Technical 

(2 Questions)

  • Q1. Was asked to write a code on basic DSA concept
  • Q2. Then was asked basic questions on DSA and SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure you have good understanding of everything you mentioned on your resume
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Nov 2024.

Round 1 - Aptitude Test 

The aptitude test evaluates problem-solving, coding skills, and logical reasoning, offering a fair challenge to showcase technical expertise.

Round 2 - One-on-one 

(2 Questions)

  • Q1. How do you handle conflicts in a team project?
  • Ans. 

    I address conflicts in team projects by promoting open communication, active listening, and seeking compromise.

    • Encourage open communication among team members to address conflicts early on

    • Practice active listening to understand all perspectives and concerns

    • Seek compromise and find common ground to resolve conflicts effectively

  • Answered by AI
  • Q2. What is the difference between an interface and an abstract class?
  • Ans. 

    Interface is a contract that defines the methods a class must implement, while an abstract class can have both implemented and abstract methods.

    • Interface can only have abstract methods and cannot have any implementation, while abstract class can have both abstract and implemented methods.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Interfaces are used to achieve multiple inheri...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Research the company, practice technical skills, communicate, showcase problem-solving abilities, stay confident, and demonstrate enthusiasm for the role
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the difference between an abstract class and an interface in object-oriented programming?
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have method implementations, while interface cannot.

    • A class can implement multiple interfaces, but can only inherit from one abstract class.

    • Interfaces are used to define contracts for classes to implement, while abstract classes are used to provide a common base for subclasses.

    • Example: Abstr...

  • Answered by AI
  • Q2. Abstract classes can have implemented methods; interfaces can only have declarations (before JAVA 8).

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay updated with the latest tools and technologies in your field to remain competitive.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. How to rotate a matrix?
  • Ans. 

    To rotate a matrix, transpose it and then reverse each row or column depending on the direction of rotation.

    • Transpose the matrix by swapping elements across the diagonal

    • For clockwise rotation, reverse each row of the transposed matrix

    • For anti-clockwise rotation, reverse each column of the transposed matrix

  • Answered by AI
  • Q2. How to find a particular element in a sorted array?
  • Ans. 

    Use binary search to efficiently find a particular element in a sorted array.

    • Start by comparing the target element with the middle element of the array.

    • If the target element is less than the middle element, search the left half of the array.

    • If the target element is greater than the middle element, search the right half of the array.

    • Repeat the process until the target element is found or the search space is empty.

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Telephonic Call 

(2 Questions)

  • Q1. Asking about the whereabouts
  • Q2. Checking com skills and availability
Round 2 - Technical 

(3 Questions)

  • Q1. Basic questions based on resume
  • Q2. Basic .net questions
  • Q3. Logical questions related to problem solving

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident and communicate effectively. Include only those things in your resume which you are fully confident.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Four Pillars of OOPS in Java?
  • Ans. 

    Encapsulation, Inheritance, Polymorphism, Abstraction are the four pillars of OOPS in Java.

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

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

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the implementation details and showing only the necessary features.

  • Answered by AI
  • Q2. What is a constructor in Java?
  • Ans. 

    A constructor in Java is a special type of method that is used to initialize objects.

    • Constructors have the same name as the class they are in.

    • They do not have a return type, not even void.

    • Constructors are called when an object of a class is created.

    • Example: public class Car { public Car() { // constructor code } }

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude questions with some basic coding questions

Round 2 - Coding Test 

They have given 3 coding questions and some pseudo codings

Round 3 - Technical 

(2 Questions)

  • Q1. Tell about your self
  • Q2. Some coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident

Webileapps Interview FAQs

How many rounds are there in Webileapps Software Developer Intern interview?
Webileapps interview process usually has 2 rounds. The most common rounds in the Webileapps interview process are One-on-one Round.
What are the top questions asked in Webileapps Software Developer Intern interview?

Some of the top questions asked at the Webileapps Software Developer Intern interview -

  1. Projects and basic technolog...read more
  2. Educational Backgro...read more
  3. basic technical questi...read more

Tell us how to improve this page.

Software Engineer
15 salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Quality Analyst
10 salaries
unlock blur

₹3 L/yr - ₹7 L/yr

Senior Software Engineer
9 salaries
unlock blur

₹9 L/yr - ₹18 L/yr

QA Engineer
8 salaries
unlock blur

₹3 L/yr - ₹9.9 L/yr

UI/UX Designer
7 salaries
unlock blur

₹3.8 L/yr - ₹9 L/yr

Explore more salaries
Compare Webileapps with

Infosys

3.7
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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