Upload Button Icon Add office photos

Filter interviews by

Mobilestyx Consulting and Solutions Interview Questions and Answers

Updated 14 Jan 2025

Mobilestyx Consulting and Solutions Interview Experiences

Popular Designations

5 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

Question were related to topics such as logical, mathematical, visualizations etc

Round 2 - Technical 

(2 Questions)

  • Q1. Software language related questions
  • Q2. OOPS Concepts
Round 3 - Coding Test 

CRUD operations which was then checked by reviewer and then asked questions based on it.

Interview Preparation Tips

Interview preparation tips for other job seekers - As a intern get your basics clear and be confident while replying.

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

Intern Interview Questions & Answers

user image Anonymous

posted on 13 Oct 2024

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

(2 Questions)

  • Q1. What is sql and explain primary key
  • Ans. 

    SQL is a programming language used for managing and manipulating databases. Primary key is a unique identifier for each record in a table.

    • SQL stands for Structured Query Language

    • It is used to communicate with databases to perform tasks like querying data, updating records, and creating tables

    • Primary key is a column or a set of columns that uniquely identifies each record in a table

    • It must contain unique values and cann...

  • Answered by AI
  • Q2. What are loops and name their types
  • Ans. 

    Loops are programming structures that repeat a block of code until a certain condition is met. Types include for, while, and do-while loops.

    • For loop: Executes a block of code a specified number of times.

    • While loop: Continues to execute a block of code as long as a specified condition is true.

    • Do-while loop: Similar to a while loop, but the block of code is executed at least once before the condition is checked.

  • Answered by AI
Round 2 - Coding Test 

Pyramid patterns and sum array values

Skills evaluated in this interview

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)

IT Supporter Interview Questions & Answers

user image Shravan Tiffin seva

posted on 16 May 2024

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Logical aptitude test round

Round 2 - Aptitude Test 

Computer based programming round

Round 3 - Technical 

(2 Questions)

  • Q1. Based on resume
  • Q2. Software development life cycle
  • Ans. 

    Software development life cycle is a process used by software development teams to design, develop, and test high-quality software.

    • It consists of several phases such as planning, analysis, design, implementation, testing, and maintenance.

    • Each phase has its own set of activities and deliverables to ensure the software meets the requirements.

    • Examples of software development life cycle models include Waterfall, Agile, and

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Based on resume with senior
Round 5 - Technical 

(1 Question)

  • Q1. Based on resume
Round 6 - Technical 

(1 Question)

  • Q1. Based on resume
Round 7 - HR 

(1 Question)

  • Q1. They told me to come for final round that is Salary discussion but instead of Salary discussion they took an other round of interview

Skills evaluated in this interview

IT Supporter Interview Questions asked at other Companies

Q1. How do you handle a situation where a user is frustrated or upset with a technical issue they're facing?
View answer (2)

PHP Developer Interview Questions & Answers

user image Anonymous

posted on 14 Jan 2025

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

I applied via Walk-in and was interviewed before Jan 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic programming algorithm
  • Q2. Basic Php question

Interview Preparation Tips

Interview preparation tips for other job seekers - Candidate should not get their internship period extended after 6 month. Get a new job instead.

PHP Developer Interview Questions asked at other Companies

Q1. How can we report errors in the log file while working on a core PHP project?
View answer (3)

Mobilestyx Consulting and Solutions interview questions for popular designations

 Intern

 (1)

 IT Supporter

 (1)

 PHP Developer

 (1)

 Senior Software Engineer

 (1)

 Web Designer

 (1)

Web Designer Interview Questions & Answers

user image Anonymous

posted on 24 Apr 2024

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

I applied via Walk-in and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude test easy

Round 2 - Technical 

(1 Question)

  • Q1. Basic CSS interview questions
Round 3 - HR 

(1 Question)

  • Q1. Basic details of employee

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn more about HTML / CSS , bootstrap and Figma.

Web Designer Interview Questions asked at other Companies

Q1. What is the data structure
View answer (3)

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

It was a MCQ test on CS Fundamentals. We have to answer 50 questions in 40 minutes. Accuracy is must. Company have its own cutoff and it's usually high. So try to gain maximum marks as possible. The results were announced in 1.5 hrs. The selected candidates will be appearing for the coding challenge.

Round 2 - Coding Test 

There are 5 questions. 1 easy , 3 medium, 1 hard. You should solve atleast 4 questions to get shortlisted for the interview. Results are announced in 2-3 hours. Take a look at these questions. One of the questions from the coding challenge will be asked in the interview.

Round 3 - Technical 

(5 Questions)

  • Q1. Email validation question from coding challenge
  • Q2. Binary Search on rotated arrays
  • Ans. 

    Binary search on rotated arrays involves finding a target value in a sorted array that has been rotated at an unknown pivot point.

    • Identify the pivot point by finding the minimum element in the array.

    • Determine which half of the array the target value falls into based on the pivot point.

    • Perform binary search on the appropriate half of the array to find the target value.

  • Answered by AI
  • Q3. About projects (reason behind using the mentioned database)
  • Q4. Use of package.json file
  • Ans. 

    package.json file is used in Node.js projects to manage dependencies, scripts, and metadata.

    • Contains project metadata like name, version, description, etc.

    • Lists dependencies required for the project to run.

    • Defines scripts for tasks like building, testing, and running the project.

    • Can include configurations for tools like ESLint, Babel, etc.

  • Answered by AI
  • Q5. What are scripts in package.json file
  • Ans. 

    Scripts in package.json file are commands that can be run using npm.

    • Scripts are defined under the 'scripts' key in package.json.

    • Common scripts include 'start', 'test', 'build', etc.

    • Scripts can be run using 'npm run '.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Explain your approach clearly while solving DSA questions. Revise your understanding on the projects before the interview. Also revise oops, cn, os and some basic understanding of Low level design i.e. designing of classes for music player.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - HR 

(1 Question)

  • Q1. Basic questions about the experience and the product worked on

Interview Preparation Tips

Interview preparation tips for other job seekers - I interviewed with Techved consulting and had a horrible experience, it was like a bad dream.The process was a mess from start to finish ,process started with getting a call from the company HR, second interview was scheduled with CEO after 9 pm ,before logging in zoom call i confirmed with HR for the scheduled interview at 9 pm & was confirmed by HR ,waited for more than 15 minutes and nobody turned up ,after 9:15 pm HR says CEO is busy & rescheduled it to another day at same time 9 pm ,this time too before logging in I confirmed with HR if the CEO will turn up for the interview which I was told yes and I logged and waited for CEO to join but he didn't after multiple calls & Text to HR , finally CEO joins the meeting around 9:30 Pm,spoke to CEO for 10-15 minutes & he asked me to come down to his office for final conversation with him.Went to the mumbai office,they gave me a form to fill and strangely asked me to write an essay which i never did for any other company being having so many years of job experience.
And also till the time you don't reach their office HR will follow up with you like anything ,once you enter the office then it's totally a different world. Mine second half of the day was totally wasted they call me in goregaon office & intentionally eats your time for the meet which was mutually pre booked and confirmed scheduled.So after filling the form i was made to wait for long time before this person Francis comes who was never present in whole process and again takes the interview & he asked everything in detail of companies worked ,your targets ,incentives, remuneration etc and when asked him about his company salary & incentive structure he didn't reply & said that will be informed later also the budget they have is less of what I am expecting but the incentive is great and people are making three times of salary as their incentive ,asked him whats the target given on which he reply it will be informed later ,They want to ask you everything & when you ask them response is, it will be informed later .I told him I already had a discussion with another HR about the budget on which i was assured its fairly in range and also I am here as per the CEO, for meeting him for final discussion.After that I was again made to wait for more than a hour and they keep moving you from 1st floor to 2nd floor as per their small conference room availability.After waiting for about 3 hour I told the HR that I am getting late & will be leaving as I have another work commitment on which HR looks for CEO and ask me to wait for few more minutes,just when I was about to meet CEO, Francis ask me to wait and sends a girl who came to interview much after me being there, which was highly unprofessional & then francis ask me to meet another guy on different floor for interview before meeting the CEO ,gave the interview to this new guy and again they want to know everything about you and when u ask about the job nature and process he said he is from finance team once you join the team will guide u ,also they don't pay u for the days you worked for since their salary cycle is 20 to 21 and they hold employee salary of the 10 days and give it as FNF when employee resigns which is absurd .So after extensively speaking with HR & CEO on call along with waiting for more than 3 hour Francis comes an says that I have more experience and they are looking for a junior role with less experience and I can leave now,I told him I spoke extensively with HR and also with the CEO ,who invited me for the final meeting .First company found where the HR is more powerful than CEO & override CEO commitment & does insult candidate with zero respect for candidate time. Too many hints they gave as Red Flag ,it's a typical lala company with baniya employees behaviour.
-10 rating for Techwait Insulting company
Ceo should make their HR write an essay on basic human interaction,work ethics ,Time management, professionalism & Toxic traits.
Life Tip - before joining this company make sure you have a good Health & Term insurance .
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic introduction
  • Q2. SQL queries
Round 2 - One-on-one 

(2 Questions)

  • Q1. Technical questions
  • Q2. Mysql , Database

Interview Preparation Tips

Interview preparation tips for other job seekers - Confidence and communication are essential keys to success.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Sep 2024. There were 5 interview rounds.

Round 1 - Coding Test 

Easy Level DS Questions - 30 mins

Round 2 - Technical 

(2 Questions)

  • Q1. Cloud Services related questions
  • Q2. ETL Based question
Round 3 - Coding Test 

A comprehensive coding test which included job role simulation.

Round 4 - Coding Test 

Advanced Cloud Services questions

Round 5 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a Senior Software Developer with 8 years of experience in full-stack development, specializing in Java and Angular.

    • 8 years of experience in full-stack development

    • Specialize in Java and Angular

    • Strong problem-solving skills

    • Experience working in agile environments

  • Answered by AI
  • Q2. Why did you leave your last organisation

Interview Preparation Tips

Interview preparation tips for other job seekers - Remote work although partially supported, is highly discouraged.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. ''Tell us about a time when you had to collaborate with a tem to achieve a goal. How did you contribute to the team success?''
Round 2 - Technical 

(1 Question)

  • Q1. ''Tell us about a time when you had to collaborate with team to achieve a goal.How did you contribute to the team's success?''

Interview Preparation Tips

Interview preparation tips for other job seekers - 1.Tailor Your Resume:Customize your resume for each job application to highlight relevant skills and experiences.
2. Network Activity:Connect with Industry professional on Linkedin and attend networking events to uncover job opportunities.
3.Prepare Interviews:Research to company,practice common interview questions,and have your own questions ready.
4.Showcase Your Skills:Develop a portfolio or personal projects to demonstrate your expertise.
5.Follow Up:Send a thank-you note after interviews to express appreciation and reinforce your interest in the position.

Mobilestyx Consulting and Solutions Interview FAQs

How many rounds are there in Mobilestyx Consulting and Solutions interview?
Mobilestyx Consulting and Solutions interview process usually has 3-4 rounds. The most common rounds in the Mobilestyx Consulting and Solutions interview process are Technical, Aptitude Test and HR.
How to prepare for Mobilestyx Consulting and Solutions 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 Mobilestyx Consulting and Solutions. The most common topics and skills that interviewers at Mobilestyx Consulting and Solutions expect are Javascript, HTML, Recruitment, SQL and C#.
What are the top questions asked in Mobilestyx Consulting and Solutions interview?

Some of the top questions asked at the Mobilestyx Consulting and Solutions interview -

  1. what is sql and explain primary ...read more
  2. what are loops and name their ty...read more
  3. Software development life cy...read more

Tell us how to improve this page.

Mobilestyx Consulting and Solutions Interview Process

based on 7 interviews

Interview experience

3.1
  
Average
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k 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
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 806 Interviews
Deltax Interview Questions
2.8
 • 85 Interviews
View all

Mobilestyx Consulting and Solutions Reviews and Ratings

based on 26 reviews

3.3/5

Rating in categories

3.4

Skill development

3.3

Work-life balance

2.7

Salary

3.2

Job security

2.8

Company culture

2.9

Promotions

3.2

Work satisfaction

Explore 26 Reviews and Ratings
Human Resources Intern

Mumbai

0-1 Yrs

Not Disclosed

Asp.net Internship

Mumbai

0-1 Yrs

Not Disclosed

PHP Intern

Mumbai

0-1 Yrs

Not Disclosed

Explore more jobs
PHP Developer
14 salaries
unlock blur

₹1 L/yr - ₹3.2 L/yr

Project Coordinator
10 salaries
unlock blur

₹2 L/yr - ₹4.2 L/yr

ASP.NET Developer
9 salaries
unlock blur

₹1.9 L/yr - ₹5.7 L/yr

Web Designer
7 salaries
unlock blur

₹0.9 L/yr - ₹2.5 L/yr

Junior PHP Developer
7 salaries
unlock blur

₹1.5 L/yr - ₹2.3 L/yr

Explore more salaries
Compare Mobilestyx Consulting and Solutions with

Infosys

3.6
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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