Upload Button Icon Add office photos

Filter interviews by

Mobicule Technologies Programmer Analyst Interview Questions and Answers

Updated 7 Jan 2025

Mobicule Technologies Programmer Analyst Interview Experiences

2 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Group Discussion 

Discussion on the topic for five minutes.

Round 2 - HR 

(1 Question)

  • Q1. Can you provide a brief introduction about yourself?
  • Ans. 

    I am a dedicated and experienced Programmer Analyst with a strong background in software development and problem-solving.

    • Over 5 years of experience in programming and analysis

    • Proficient in languages such as Java, C++, and SQL

    • Skilled in identifying and resolving technical issues

    • Experience working on large-scale projects, such as developing a new inventory management system for a retail company

  • Answered by AI

I applied via Naukri.com and was interviewed before May 2021. 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 - One-on-one 

(1 Question)

  • Q1. 1.What is android activity life cycle. 2.What is collections in java. ..etc
  • Ans. 

    Android activity life cycle is the sequence of states an activity goes through.

    • The life cycle includes states like onCreate(), onStart(), onResume(), onPause(), onStop(), and onDestroy().

    • Each state has a specific purpose and can be used to manage the activity's behavior.

    • Collections in Java are data structures that store and manipulate groups of objects.

    • Examples of collections include ArrayList, LinkedList, HashSet, and...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Mobicule Technologies Programmer Analyst interview:
  • Java, andorid studio
Interview preparation tips for other job seekers - Please be prepared for getting new challenges in this company and you will get more opportunities to explore. All the best.

Skills evaluated in this interview

Programmer Analyst Interview Questions Asked at Other Companies

asked in Cognizant
Q1. 1 Tell me about your self 2 What is c# 3 What is oops concept 4 W ... read more
asked in Cognizant
Q2. What is stack? How do you convert a queue to stack?
Q3. What is SQL? define ddl? Why should we hire you?
asked in Cognizant
Q4. What is the difference between structure and class?
asked in Cognizant
Q5. Two defined table and fetching data is done one table has 20 reco ... read more

Programmer Analyst Jobs at Mobicule Technologies

View all

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Be transparent and real. Don't bluff :)
Fingent has got a good number of people in the interview panel(my personal experience)
Even if you do not know the answer, the panel will explain it to you.

I applied via Company Website and was interviewed before May 2018. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Questions about Oops, data structures based on the projects I had done, and my resume
  • Q2. Questions about classes and abstraction

Interview Preparation Tips

Interview preparation tips for other job seekers - 2 parts; part 1 is a coding test and part 2 is discussion.

Interview Preparation Tips

Round: Test
Experience: PAPER DURATION: 3 hours
NO. OF QUESTIONS: 2 (20 marks each)
MAXIMUM MARKS: 20*2 = 40 marksQUESTION 1:
JSON Prettier:-Write a program which takes JSON as input and gives prettified JSONYou need to read JSON from STDIN. Input gives one line of uglified JSON.Output should be formatted JSON. Check the standard output link.Use 2 white spaces (not‘\t’) for one indentation.SAMPLE INPUT:{“group” : {list : [1,2,3]}, “list” : [“a”,”b”,”c”]}SAMPLE OUTPUT:{“group” : {List : [1,2,3]},“list” : [“a”,”b”,”c”]}EXPLANATION: Input will be uglifiedjson in one line and output will be prettified format of that. QUESTION 2:XML parse plus series computationEvaluate an expression given in XML format. Keys will be Expr- contains the entire expression. Elem – contains the digit, sum, Prod- contains two or more keys whose evaluation needs to be summed or multiplied respectively. Sub will contain 2 keys or more, where the second key onwards will have to be subtracted from the first one. Div- will contain 2 keys in which first key will need to be divided by second. SAMPLE INPUT:4673 SAMPLE OUTPUT:
20EXPLANATION:Input will be xml file through standard input. End of xml file marked by .
Duration: 180 minutes
Total Questions: 2

College Name: NA

I applied via Naukri.com and was interviewed before Jul 2019. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Questions about the projects you worked with. About how specific coding challenges were solved. How it could have been done other ways. etc.
  • Q2. About Python versions and differences. Impact on frameworks.
  • Q3. About module design, apis.

Interview Preparation Tips

Interview preparation tips for other job seekers - It is a relaxed interview, like a discussion. The questions are tough in that they make you think. Review your previous projects and be honest.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Implement tail f

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn development along with DSA
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. Describe Life cycle in react
  • Ans. 

    React has three main phases in its lifecycle: mounting, updating, and unmounting.

    • Mounting: when a component is created and inserted into the DOM

    • Updating: when a component is updated due to changes in props or state

    • Unmounting: when a component is removed from the DOM

    • Lifecycle methods can be used to perform actions at each phase, such as componentDidMount() or componentWillUnmount()

    • React also has error handling methods,

  • Answered by AI
  • Q2. Explain strict mode in javascript and it's use
  • Ans. 

    Strict mode is a way to write secure and optimized JavaScript code.

    • Enables catching of silent errors

    • Disallows duplicate property names or parameters

    • Prevents use of undeclared variables

    • Makes `eval()` safer to use

    • Throws errors on invalid usage of `this` keyword

  • Answered by AI
Round 3 - Assignment 

CURD operations along with implementation of a mock UI

Interview Preparation Tips

Interview preparation tips for other job seekers - They are doing good job. If possible try to send a rejection mail along with the reason if candidate is not selected.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(1 Question)

  • Q1. Tell about Oops concepts
  • Ans. 

    OOPs concepts are fundamental principles in object-oriented programming, including 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 to present the same interface for different data types.

    • Abstraction: Hiding the complex imple...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Will ask coding related
Round 4 - HR 

(1 Question)

  • Q1. What is Expected salary
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Application developement

Mobicule Technologies Interview FAQs

How many rounds are there in Mobicule Technologies Programmer Analyst interview?
Mobicule Technologies interview process usually has 2 rounds. The most common rounds in the Mobicule Technologies interview process are Resume Shortlist, One-on-one Round and Group Discussion.
How to prepare for Mobicule Technologies Programmer Analyst 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 Mobicule Technologies. The most common topics and skills that interviewers at Mobicule Technologies expect are Hibernate, J2Ee, MySQL, Struts and Eclipse.

Tell us how to improve this page.

Mobicule Technologies Programmer Analyst Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

BrowserStack Interview Questions
3.6
 • 49 Interviews
Fleetx.io Interview Questions
3.7
 • 28 Interviews
ZIGRAM Interview Questions
3.2
 • 26 Interviews
RGBSI Interview Questions
3.4
 • 24 Interviews
Springworks Interview Questions
4.5
 • 23 Interviews
Fingent Interview Questions
4.4
 • 22 Interviews
View all
Mobicule Technologies Programmer Analyst Salary
based on 108 salaries
₹1.8 L/yr - ₹6.1 L/yr
44% less than the average Programmer Analyst Salary in India
View more details

Mobicule Technologies Programmer Analyst Reviews and Ratings

based on 22 reviews

2.2/5

Rating in categories

3.3

Skill development

1.8

Work-life balance

1.6

Salary

2.4

Job security

1.8

Company culture

1.5

Promotions

2.4

Work satisfaction

Explore 22 Reviews and Ratings
Programmer Analyst - Android

Mumbai,

Pune

2-4 Yrs

Not Disclosed

Programmer Analyst - Server

Mumbai

1-4 Yrs

Not Disclosed

Explore more jobs
Programmer Analyst
108 salaries
unlock blur

₹1.8 L/yr - ₹6.1 L/yr

Business Analyst
51 salaries
unlock blur

₹2 L/yr - ₹6.5 L/yr

Technical Analyst
42 salaries
unlock blur

₹1.8 L/yr - ₹6 L/yr

Software Developer
19 salaries
unlock blur

₹2 L/yr - ₹4.4 L/yr

Software Tester
18 salaries
unlock blur

₹1.8 L/yr - ₹3.5 L/yr

Explore more salaries
Compare Mobicule Technologies with

Aurigo

4.7
Compare

Prime Focus Technologies

3.3
Compare

Peel-works

3.7
Compare

Yodlee

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