Upload Button Icon Add office photos
Engaged Employer

i

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

Wepsol Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Wepsol Senior Software Engineer Interview Questions and Answers

Updated 30 Apr 2024

Wepsol Senior Software Engineer Interview Experiences

1 interview found

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

I applied via Job Portal and was interviewed before Apr 2023. There were 4 interview rounds.

Round 1 - Assignment 

They have asked me to made one application.

Round 2 - Technical 

(1 Question)

  • Q1. Interview went for around 45 to 60mins regarding technical things in Android development,which includes kotlin couroutines,data manipulation,data storage etc in depth.
Round 3 - One-on-one 

(1 Question)

  • Q1. This was my final round with Manager regarding my past projects etc
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - It's a good place to work but for highly salary required candidates must not go ,they provide very less salary compare to market standards.

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java collections, program to remove duplicate from array, cursor, indexes in database,stream api's , some questions of hibernate and spring boot

Interview Preparation Tips

Interview preparation tips for other job seekers - Atleast prepare core java fully along with some basic db concepts and all keys and prepare spring boot
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is typescript
  • Ans. 

    TypeScript is a superset of JavaScript that adds static typing and other features to help developers write more robust code.

    • TypeScript is developed and maintained by Microsoft.

    • It compiles down to plain JavaScript.

    • It helps catch errors at compile time rather than runtime.

  • Answered by AI

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

Round 1 - Technical 

(1 Question)

  • Q1. Explain in details about Oops concepts
  • Ans. 

    OOPs concepts are the fundamental principles of object-oriented programming.

    • Encapsulation - binding data and functions together

    • Inheritance - creating new classes from existing ones

    • Polymorphism - ability of objects to take on multiple forms

    • Abstraction - hiding implementation details from users

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Types of Design Patterns and explain any one
  • Ans. 

    Design patterns are reusable solutions to common software problems. One example is the Singleton pattern.

    • Creational patterns: Singleton, Factory, Abstract Factory, Builder

    • Structural patterns: Adapter, Bridge, Composite, Decorator, Facade, Flyweight, Proxy

    • Behavioral patterns: Chain of Responsibility, Command, Interpreter, Iterator, Mediator, Memento, Observer, State, Strategy, Template Method, Visitor

    • Singleton pattern e...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong at basics and also honest while answering questions. Nothing wrong if you don't know the answer but it's always good to learn what you are lacking

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed before Mar 2022. 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 

(2 Questions)

  • Q1. Basic javascript questions and basic node js questions
  • Q2. Basic programming questions
Round 3 - Technical 

(2 Questions)

  • Q1. They will check In depth architecture understanding of the products you have worked
  • Q2. Test your Critical thinking by asking how you manage the load and multiple systems interaction, asyc programming
Round 4 - HR 

(1 Question)

  • Q1. Salary expectation, and attitude and behaviour test

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong with basic and have complete knowledge of application you are working
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic questions on Javascript like closure, event loop,hoisting and some coding questions on map,filter, reduce
  • Q2. Basic conceptual questions on React, redux
Round 2 - One-on-one 

(1 Question)

  • Q1. Coding questions on JS and React
Round 3 - HR 

(1 Question)

  • Q1. Salary Expectation

Interview Questionnaire 

3 Questions

  • Q1. -React lifecycle?-Fragment vs React. Fragment? -React pure component?
  • Ans. 

    React lifecycle, Fragment vs React.Fragment, React.PureComponent

    • React lifecycle consists of mounting, updating, and unmounting phases

    • Fragment is a shorthand for React.Fragment, used to group multiple elements

    • React.PureComponent is a class component that implements shouldComponentUpdate method for performance optimization

  • Answered by AI
  • Q2. JavaScript hoisting?- Let, var and cont difference?
  • Ans. 

    JavaScript hoisting and differences between let, var and const.

    • Hoisting is a JavaScript mechanism where variables and function declarations are moved to the top of their scope.

    • Var declarations are hoisted to the top of their scope, while let and const declarations are not.

    • Var can be redeclared and reassigned, let can be reassigned but not redeclared, and const cannot be reassigned or redeclared.

    • Using const is recommend...

  • Answered by AI
  • Q3. Dofferemt ways to prevent rerendering of a child component in react?
  • Ans. 

    Prevent rerendering of a child component in React

    • Use shouldComponentUpdate() lifecycle method

    • Use React.memo() to memoize functional components

    • Use PureComponent instead of Component

    • Pass props as a callback function to avoid unnecessary re-renders

    • Use React.PureComponent for class components

    • Use React.memo() for functional components

  • Answered by AI

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. OOPS concept based questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear your basics and be confident about them
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

  • Q1. Questions on ref cursors and bulk collect
  • Q2. Nested table record type variable creation and their syntax.
  • Q3. Triggers and procedures and packages differences.
  • Ans. 

    Triggers respond to database events; procedures are reusable code blocks; packages group related procedures/functions.

    • Triggers are automatically executed in response to specific events (e.g., INSERT, UPDATE).

    • Example of a trigger: A trigger that logs changes to a table whenever a row is updated.

    • Procedures are named blocks of code that can be executed explicitly by calling them.

    • Example of a procedure: A procedure that ca...

  • Answered by AI
  • Q4. ACID properties
  • Ans. 

    ACID properties ensure reliable transactions in databases: Atomicity, Consistency, Isolation, Durability.

    • Atomicity: Transactions are all-or-nothing. Example: If a bank transfer fails, both accounts remain unchanged.

    • Consistency: Transactions bring the database from one valid state to another. Example: A transaction must not violate any database rules.

    • Isolation: Concurrent transactions do not affect each other. Example: ...

  • Answered by AI
  • Q5. Materialized views and db links
  • Q6. Different types of cursors
  • Ans. 

    Cursors are database objects used to retrieve and manipulate data row by row.

    • 1. Implicit Cursors: Automatically created by SQL for single SQL statements. Example: SELECT * FROM employees;

    • 2. Explicit Cursors: Defined by the programmer for complex queries. Example: DECLARE cursor_name CURSOR FOR SELECT * FROM orders;

    • 3. Forward-only Cursors: Can only move forward through the result set. Example: Used for simple read opera...

  • Answered by AI
  • Q7. Autonomous transaction and merge statement

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and best of luck

I applied via Naukri.com and was interviewed before Apr 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. They specifically didn’t asked any questions by looking at my strong resume but just asked me if to come Hyderabad for training of a month

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are good in technical knowledge then it would be easy for you to get opportunity here at client site you will learn a lot as mostly you will be at your own, companies technical support is not very good so mostly you are on your own

Wepsol Interview FAQs

How many rounds are there in Wepsol Senior Software Engineer interview?
Wepsol interview process usually has 4 rounds. The most common rounds in the Wepsol interview process are Assignment, Technical and One-on-one Round.

Tell us how to improve this page.

Wepsol Senior Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Wepsol Senior Software Engineer Salary
based on 4 salaries
₹4.2 L/yr - ₹12 L/yr
56% less than the average Senior Software Engineer Salary in India
View more details
Software Engineer
20 salaries
unlock blur

₹3 L/yr - ₹5.5 L/yr

Accounts Manager
19 salaries
unlock blur

₹3.5 L/yr - ₹7.6 L/yr

Commercial Executive
12 salaries
unlock blur

₹2.7 L/yr - ₹5 L/yr

Area Sales Manager
11 salaries
unlock blur

₹3.5 L/yr - ₹7 L/yr

Finance Executive
10 salaries
unlock blur

₹2.6 L/yr - ₹3.7 L/yr

Explore more salaries
Compare Wepsol with

3i Infotech

3.5
Compare

Microland

3.4
Compare

Newgen Software Technologies

3.7
Compare

NSE.IT

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