Upload Button Icon Add office photos
Engaged Employer

i

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

Accucia Softwares Private Limited Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Accucia Softwares Private Limited Mobile Application Developer Interview Questions and Answers

Updated 22 Jul 2024

Accucia Softwares Private Limited Mobile Application Developer Interview Experiences

2 interviews found

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

Aptitude test is based on logical questions and small programs

Round 2 - Technical 

(2 Questions)

  • Q1. All basics of core java and whatever you written in resume. ask about the your last projects. difference between then map, array list, collection, set etc.
  • Q2. General questions about the andorid studio. ask some logical questions
Round 3 - One-on-one 

(1 Question)

  • Q1. This will be HR round. general hr questions

Mobile Application Developer Interview Questions & Answers

user image Shubham Mahadev Langute

posted on 22 Jul 2024

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

(2 Questions)

  • Q1. Question was asked on Java
  • Q2. Question was ask flutter

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview process was throw with multiple test assure team was very nice and friendly.

Mobile Application Developer Interview Questions Asked at Other Companies

Q1. How to handle the huge number of concurrent HTTP requests of orde ... read more
Q2. What can we do to reduce the size of an application developed usi ... read more
Q3. What are the different types of Widgets in Flutter?
asked in Zoho
Q4. Explain the concept of multithreading and how it differs from mul ... read more
asked in Accenture
Q5. why do i use loop and how many types of loops in php?

Top trending discussions

View All
Interview Hub
2w
a team lead
FeedCard Image
Got a question about Accucia Softwares Private Limited?
Ask anonymously on communities.

Interview questions from similar companies

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

I applied via Recruitment Consulltant and was interviewed in Nov 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 - Coding Test 

Six coding questions to be solved within an hour. The coding questions were standard aptitude based and did not include any complex topics like Dynamic Programming or trees in my case.

Round 3 - One-on-one 

(1 Question)

  • Q1. I had to solve a problem. Given an expression involving operators and operands with parentheses, convert it to postfix expression. I used the stack data structure.
  • Ans. 

    Convert infix expressions to postfix using the stack data structure for operator precedence and parentheses handling.

    • Use a stack to hold operators and parentheses while scanning the expression.

    • Output operands (numbers/variables) immediately to the postfix expression.

    • Pop operators from the stack to the output when encountering a lower precedence operator.

    • Handle parentheses: push '(' onto the stack and pop until '(' when...

  • Answered by AI
Round 4 - One-on-one 

(1 Question)

  • Q1. A puzzle question

Interview Preparation Tips

Interview preparation tips for other job seekers - Think that it can be done, and lastly with the support of interviewer, it can be done. All the best
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Online coding test having basic problems and some aptitude problem.

Round 2 - One-on-one 

(3 Questions)

  • Q1. Interviewer will ask opps and 2 basic coding problem 2 aptitude problem if you mention any technology in resume then ask about technology and projects
  • Q2. What is opps ?
  • Ans. 

    OOPs stands for Object-Oriented Programming, a programming paradigm based on the concept of objects.

    • OOPs focuses on creating objects that contain both data and methods to manipulate that data.

    • Encapsulation, inheritance, polymorphism, and abstraction are key principles of OOPs.

    • Examples of OOPs languages include Java, C++, and Python.

  • Answered by AI
  • Q3. What is singleton class ?

Interview Preparation Tips

Topics to prepare for Surya Software Systems Software Developer interview:
  • Opps
  • DSA
Interview preparation tips for other job seekers - Focus on learning

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. About self in a short way
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. About yourself only

Accucia Softwares Private Limited HR Interview Questions

17 questions and answers

Q. How do you keep stakeholders updated on project progress?
Q. How do you handle sudden changes in deadline or resources?
Q. What are the key skills every Business Analyst should have?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. About yourself only
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Jun 2023. There were 3 interview rounds.

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 - Aptitude Test 

It has include logical ,reasoning question. Aptitude questions are include mcq type question.

Round 3 - Group Discussion 

Firstly introduce yourself then HR take the one subject then selected candidate discuss on that subject. Subject related talking positive and negative point. Then who candidate speak better these are select in next round.

Interview Preparation Tips

Topics to prepare for Surya Software Systems Software Developer interview:
  • Basic
Interview preparation tips for other job seekers - A job seekers should collect information about the company beforehand. Then do apply these job.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

Discussion on experience and current role and responsibilities

Round 2 - Technical 

(2 Questions)

  • Q1. 1. Discuss one past project
  • Ans. 

    Developed a web-based inventory management system to streamline stock tracking and order processing for a retail client.

    • Utilized React for the front-end, ensuring a responsive and user-friendly interface.

    • Implemented a RESTful API using Node.js and Express to handle data transactions.

    • Integrated a PostgreSQL database for efficient data storage and retrieval.

    • Incorporated real-time notifications for low stock levels using ...

  • Answered by AI
  • Q2. 2. Design a job scheduler
  • Ans. 

    A job scheduler is a software application that manages the scheduling of tasks or jobs to be executed by a computer system.

    • Define the job scheduling requirements such as priority, deadline, resource constraints, etc.

    • Implement a scheduling algorithm like First Come First Serve, Shortest Job First, Round Robin, etc.

    • Maintain a queue of jobs to be executed and allocate resources accordingly.

    • Monitor job execution and handle...

  • 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 appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. 1st round is of Tech MCQ in all domains, its a bit moderate
  • Q2. A Hard Leetcode Problem you can solve with reference
  • Q3. Tech Hr with mainly your resume and DSA
  • Q4. General HR and Culture fit round

Interview Preparation Tips

Interview preparation tips for other job seekers - Just Be confident on what you know and some AI too

Accucia Softwares Private Limited Interview FAQs

How many rounds are there in Accucia Softwares Private Limited Mobile Application Developer interview?
Accucia Softwares Private Limited interview process usually has 2 rounds. The most common rounds in the Accucia Softwares Private Limited interview process are Technical, Aptitude Test and One-on-one Round.
What are the top questions asked in Accucia Softwares Private Limited Mobile Application Developer interview?

Some of the top questions asked at the Accucia Softwares Private Limited Mobile Application Developer interview -

  1. all basics of core java and whatever you written in resume. ask about the your ...read more
  2. general questions about the andorid studio. ask some logical questi...read more
  3. Question was asked on J...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.5/5

based on 2 interview experiences

Software Developer
7 salaries
unlock blur

₹3.9 L/yr - ₹9 L/yr

Business Analyst
3 salaries
unlock blur

₹3 L/yr - ₹4.8 L/yr

Human Resource Lead
3 salaries
unlock blur

₹4.5 L/yr - ₹7.2 L/yr

Explore more salaries
Compare Accucia Softwares Private Limited with

Yalamanchili Software Exports

3.2
Compare

ScoreMe Solutions

4.2
Compare

Global Edge Software

3.5
Compare

Moveinsync Technology Solutions

3.1
Compare
write
Share an Interview