Upload Button Icon Add office photos
Engaged Employer

i

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

WebMob Technologies Verified Tick

Compare button icon Compare button icon Compare
4.3

based on 40 Reviews

Filter interviews by

WebMob Technologies Software Engineer Interview Questions and Answers

Updated 7 Apr 2023

WebMob Technologies Software Engineer Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed in Oct 2022. There were 3 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. There were all logical questions and situation questions which you cannot bluff. They focus on logic more than the syntax.
Round 3 - HR 

(1 Question)

  • Q1. They ask majorly your past experience, your learnings and challenges you have faced.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your logics well and you will be good.
Be true to yourself and don't bluff if you don't know the answer you can say that.

Interview questions from similar companies

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

(5 Questions)

  • Q1. Palindrome code should design
  • Ans. 

    Palindrome code should be designed to check if a given string is the same forwards and backwards.

    • Create a function that takes a string as input

    • Remove any spaces and punctuation from the string

    • Reverse the string and compare it to the original string to check if it is a palindrome

  • Answered by AI
  • Q2. Regarding sql topics like joins and acid
  • Q3. Project explain and domain
  • Q4. Project explain and domain and internal working
  • Q5. Oops concepts and coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Plzzzz don't join this worst company...they treat u like daily wages person
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
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via campus placement at Panimalar Engineering College, Chennai and was interviewed in Jun 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

It consists of Computer Science subjects and 2 to 3 apptitudee majorly os and c++

Round 2 - Coding Test 

3 question s are provided and they are from strings 2d array and graph

Round 3 - Technical 

(2 Questions)

  • Q1. Matrix multiplication
  • Q2. Valid paranthis or not and other dsa related questions
Round 4 - Technical 

(2 Questions)

  • Q1. About my project s
  • Q2. Doubly linked list implementation
  • Ans. 

    A doubly linked list is a data structure where each node contains a reference to the next and previous nodes.

    • Nodes have two pointers: one to the next node and one to the previous node.

    • Insertions and deletions can be done efficiently at both ends of the list.

    • Traversal can be done in both directions.

    • Example: DoublyLinkedListNode { data, prev, next }

  • Answered by AI
Round 5 - HR 

(2 Questions)

  • Q1. Some scenario based question
  • Q2. And general questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare dsa concepts and hr round also has some technical questions they will even reject in hr

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is single page application
  • Ans. 

    Single page application is a web application that loads a single HTML page and dynamically updates the content as the user interacts with the app.

    • SPA uses AJAX and HTML5 to create fluid and responsive user experience.

    • It eliminates the need for page reloading during use, making it faster and more efficient.

    • Examples include Gmail, Facebook, and Google Maps.

  • Answered by AI
  • Q2. What is state management
  • Ans. 

    State management is the process of managing the state of an application, including data flow, user interface updates, and user interactions.

    • State management involves storing and updating the state of an application to ensure data consistency.

    • It helps in managing user interface updates based on changes in the application state.

    • State management is crucial for handling user interactions and maintaining a seamless user exp...

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basic flutter coding questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is jdk, string related questions, basic java oops questions?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I was interviewed in Sep 2024.

Round 1 - Coding Test 

Couple of MCQ, Two Coding Questions. One medium, One hard.

Interview Preparation Tips

Interview preparation tips for other job seekers - Managed to complete the first question, failed to solve the second. Got selected for the next round regardless.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

The aptitude test was of moderate level.

Round 2 - Coding Test 

It checked on the concepts of oops

Round 3 - HR 

(1 Question)

  • Q1. How will you deal with tight delivery time.
  • Ans. 

    I will prioritize tasks, communicate effectively with team members, and utilize time management techniques to meet deadlines.

    • Prioritize tasks based on importance and urgency

    • Break down tasks into smaller manageable chunks

    • Communicate effectively with team members to coordinate efforts

    • Utilize time management techniques such as Pomodoro technique or Agile methodologies

    • Identify and eliminate any potential roadblocks or bott...

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(2 Questions)

  • Q1. What is the difference between classes and struct
  • Ans. 

    Classes are reference types while structs are value types.

    • Classes support inheritance while structs do not.

    • Classes have default access modifier as internal while structs have it as private.

    • Classes have a destructor while structs do not.

    • Classes are allocated on heap while structs are allocated on stack.

    • Classes can be null while structs cannot.

  • Answered by AI
  • Q2. Dispatch Queue vs operations
  • Ans. 

    Dispatch Queue is a thread-safe way to execute tasks asynchronously, while Operations are a way to encapsulate tasks.

    • Dispatch Queue is a high-level API for managing concurrent operations.

    • Operations are objects that encapsulate a single task or multiple tasks.

    • Dispatch Queue is simpler to use and recommended for most use cases.

    • Operations provide more control over task dependencies and cancellation.

    • Both can be used togeth

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on basics and problem-solving and is tested.

Skills evaluated in this interview

WebMob Technologies Interview FAQs

How many rounds are there in WebMob Technologies Software Engineer interview?
WebMob Technologies interview process usually has 3 rounds. The most common rounds in the WebMob Technologies interview process are Resume Shortlist, Technical and HR.

Tell us how to improve this page.

WebMob Technologies Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Software Developer
16 salaries
unlock blur

₹3.2 L/yr - ₹6 L/yr

Quality Analyst
4 salaries
unlock blur

₹2.5 L/yr - ₹5.6 L/yr

Web Developer
4 salaries
unlock blur

₹2 L/yr - ₹7 L/yr

HR Generalist
4 salaries
unlock blur

₹4 L/yr - ₹5 L/yr

Software Engineer
3 salaries
unlock blur

₹4 L/yr - ₹4.5 L/yr

Explore more salaries
Compare WebMob Technologies with

Ranosys Technologies

3.6
Compare

SPARX IT Solutions

3.6
Compare

TechJini

3.6
Compare

Hidden Brains InfoTech

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