Upload Button Icon Add office photos

Filter interviews by

Nalashaa Solutions Interview Questions, Process, and Tips

Updated 14 Nov 2024

Top Nalashaa Solutions Interview Questions and Answers

View all 10 questions

Nalashaa Solutions Interview Experiences

Popular Designations

7 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

1 hr coding with 2 basic questions.

Round 2 - Technical 

(1 Question)

  • Q1. .Net and angular basic questions, such as oops concepts, dependency Injection etc..
Round 3 - Behavioral 

(1 Question)

  • Q1. Questions about current project such as agile, git, team work

Full Stack Software Developer Interview Questions asked at other Companies

Q1. Oops in Java Patterns in Java JDK,JRE,JVM MVC Array questions strings in Java This,super keywords Java problems like palindrome, prime number,and so many problems and logics Why java is platform independent Why java is not platform dependen... read more
View answer (1)
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Questions were related to past work experience
  • Q2. Case study/ situational questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Please do not be hopeful about joining the org as they can even cancel your application even after all the discussions are over and HR commits to sending you the offer letter. The HR didn't even inform me that they hired someone else and would not be sending the offer letter to me until I followed up by calling multiple times.
It took more than 2 months to complete all the rounds of Interviews. There are 3 rounds of interviews.
The interviewer was good and polite. You will asked about your work experience and they will test you on your skills by giving situational questions or case studies.
There wasn't any code or written assessment for this role.

Project Manager Interview Questions asked at other Companies

Q1. What is success & what is failure to you? How do you handle failure? - not much interviewer asks such questions, but I believe these are very important questions, if you want to succeed.
View answer (1)

Project Manager Interview Questions & Answers

user image Vidya Wakodikar

posted on 12 Jan 2024

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

(1 Question)

  • Q1. The interview was more about handling conflict resolution, stakeholder management and budget over run.

Project Manager Interview Questions asked at other Companies

Q1. What is success & what is failure to you? How do you handle failure? - not much interviewer asks such questions, but I believe these are very important questions, if you want to succeed.
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Simple straightforward test,

Round 2 - One-on-one 

(1 Question)

  • Q1. One on one round with the head of Talent Acquisition
Round 3 - One-on-one 

(1 Question)

  • Q1. One on One with senior management - Director, tough interview to crack, the person is not going to react to anything you say but observe everything thing you do, but being honest is the best bet here

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Honest, have a little confidence, be brave and tell them your hopes and aspirations, make sure you have an answer for that

Social Media Executive Interview Questions asked at other Companies

Q1. how you will reach to particular target audience through social media marketing?
View answer (1)

Nalashaa Solutions interview questions for popular designations

 Project Manager

 (2)

 Full Stack Software Developer

 (1)

 PHP Developer

 (1)

 Social Media Executive

 (1)

 Software Engineer

 (1)

Scrum Master cum Lead Engineer Interview Questions & Answers

user image Anonymous

posted on 24 Aug 2023

Interview experience
5
Excellent
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 - Technical 

(1 Question)

  • Q1. Tell me abt your self.
Round 3 - Assignment 

Tell me about your self
Case study live scenario

Interview Preparation Tips

Interview preparation tips for other job seekers - It's really a very good company for both freshers and experienced people. Pay is good hike is also too good

I applied via Naukri.com and was interviewed in Jun 2022. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Most on .net core,C#, sql
Round 2 - Technical 

(1 Question)

  • Q1. Coding round, will ask to write a code for some on string and arrays

Interview Preparation Tips

Interview preparation tips for other job seekers - On dotnet core. The interview is went well and the most of cover on oops, advance c#, .net core and SQL part

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)

Jobs at Nalashaa Solutions

View all

I applied via Recruitment Consultant and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

11 Questions

  • Q1. Object-oriented concepts with example
  • Ans. 

    Object-oriented concepts are fundamental principles in programming that allow for the creation and manipulation of objects.

    • Encapsulation: bundling data and methods together in a single unit (class)

    • Inheritance: creating new classes from existing ones, inheriting their properties and behaviors

    • Polymorphism: the ability of objects to take on many forms, allowing for flexibility and extensibility

    • Abstraction: simplifying com...

  • Answered by AI
  • Q2. Explain magic methods in PHP?
  • Ans. 

    Magic methods in PHP are special methods that are automatically called in response to certain events or actions.

    • Magic methods start with a double underscore (__) followed by the method name.

    • They are used to implement functionality such as overloading, property access, and object serialization.

    • Examples of magic methods include __construct(), __get(), __set(), __toString(), etc.

  • Answered by AI
  • Q3. List a few arrays and string functions?
  • Ans. 

    Arrays and string functions are essential in PHP development.

    • Array functions: array_push(), array_pop(), array_merge(), array_slice()

    • String functions: strlen(), str_replace(), strpos(), strtolower()

    • Examples: array_push($array, 'value'), strlen('hello'), str_replace('world', 'PHP', 'Hello world')

  • Answered by AI
  • Q4. How can handle exceptions?
  • Ans. 

    Exceptions can be handled using try-catch blocks in PHP.

    • Use try-catch blocks to enclose the code that may throw an exception.

    • Catch the exception using catch block and handle it appropriately.

    • Multiple catch blocks can be used to handle different types of exceptions.

    • Finally block can be used to execute code regardless of whether an exception occurred or not.

  • Answered by AI
  • Q5. How can we report errors in the log file while working on a core PHP project?
  • Ans. 

    Errors can be reported in log files using error_log() function in PHP.

    • Use error_log() function to log errors in a file

    • Specify the error message and the log file path as parameters

    • Example: error_log('Error message', 3, '/var/log/php_errors.log')

    • Use error_reporting() function to set the level of error reporting

  • Answered by AI
  • Q6. Explain MySQL Join?
  • Ans. 

    MySQL Join is used to combine rows from two or more tables based on a related column between them.

    • Join is used to retrieve data from multiple tables in a single query.

    • It helps in avoiding data redundancy and improves query performance.

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • Join conditions are specified using the ON keyword.

    • Example: SELECT * FROM table1 JOIN table2 ON table1.column = tab

  • Answered by AI
  • Q7. Asked to write join query using any joins by considering few dummy tables?
  • Q8. What is the use of group by and having? Write sample query using those ?
  • Ans. 

    Group by and having are used to group data and filter groups based on conditions.

    • Group by is used to group data based on a specific column or expression.

    • Having is used to filter groups based on conditions.

    • Sample query: SELECT column1, COUNT(column2) FROM table GROUP BY column1 HAVING COUNT(column2) > 10;

  • Answered by AI
  • Q9. Write a query to get 4th highest salary from employees table?
  • Ans. 

    Query to get 4th highest salary from employees table

    • Use ORDER BY and LIMIT to get the 4th highest salary

    • Join the employees table with itself to avoid duplicates

    • Use subquery to get the 4th highest salary

  • Answered by AI
  • Q10. How does request flow work in Laravel?
  • Ans. 

    Laravel follows a series of steps to handle a request and generate a response.

    • The request is first received by the web server and passed to the index.php file in the public directory.

    • The index.php file loads the Laravel framework and creates an instance of the application.

    • The application then handles the request by routing it to the appropriate controller method.

    • The controller method processes the request and returns a...

  • Answered by AI
  • Q11. What middleware in laravel? How can we use them?
  • Ans. 

    Middleware in Laravel is a mechanism that allows filtering HTTP requests entering your application.

    • Middleware can be used to authenticate users, authorize access, handle CORS, log requests, etc.

    • Middleware can be applied globally to all routes or specific to certain routes or groups of routes.

    • To create a middleware, use the `make:middleware` Artisan command.

    • Middleware can be registered in the `app/Http/Kernel.php` file.

    • ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The first thing they will check your basic skills in PHP and MySQL.

Skills evaluated in this interview

Top Nalashaa Solutions PHP Developer Interview Questions and Answers

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

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)

Interview questions from similar companies

dev2 Interview Questions & Answers

Hyland Software Solutions India LLP user image Anonymous

posted on 7 Feb 2025

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

I was interviewed in Jan 2025.

Round 1 - Coding Test 

DSA- 1easy, 1 medium

Round 2 - Technical 

(7 Questions)

  • Q1. Project discussion
  • Q2. DBMS views
  • Q3. Hibernate
  • Q4. What happens when u enter www.google.com
  • Q5. Authentication
  • Q6. What is socket
  • Q7. Bubble sort and time complexity

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare DBMS, CN properly
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(4 Questions)

  • Q1. What are the concepts of threads in Java?
  • Ans. 

    Threads in Java allow for concurrent execution of code, enabling multitasking and improving performance.

    • Threads are lightweight sub-processes within a process.

    • They allow for concurrent execution of code, enabling multitasking.

    • Threads share the same memory space, allowing for efficient communication and data sharing.

    • Examples include creating threads using the Thread class or implementing the Runnable interface.

  • Answered by AI
  • Q2. Volatile keyword uses, refied keyword and its use in generics
  • Ans. 

    Volatile keyword ensures visibility of changes to variables across threads. Reified keyword is used to access type information at runtime in generics.

    • Volatile keyword is used to indicate that a variable's value will be modified by different threads.

    • It ensures that changes made by one thread to a volatile variable are visible to other threads.

    • Reified keyword is used in generics to access type information at runtime, whi...

  • Answered by AI
  • Q3. Multi module architecture in android pros and cons
  • Ans. 

    Multi module architecture in Android involves breaking down an app into multiple modules for better organization and scalability.

    • Pros: better organization, easier maintenance, faster build times, code reusability

    • Cons: increased complexity, potential for dependency issues, learning curve for developers

    • Example: Breaking down an app into separate modules for UI, networking, and data storage can make it easier to work on d

  • Answered by AI
  • Q4. Generics in java
  • Ans. 

    Generics in Java allow for creating classes, interfaces, and methods that operate on types parameterized at compile time.

    • Generics provide type safety by allowing the compiler to detect and prevent type errors at compile time.

    • They enable code reusability by writing generic algorithms that work on different types.

    • Example: List<String> names = new ArrayList<>();

    • Example: public class Box<T> { private T va

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Litmus7 Systems Consulting Senior Android Developer interview:
  • Java
  • Kotlin
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. What are Agile Values? Scrum Values? Scrum Ceremonies? Story Points?
  • Ans. 

    Agile values include individuals and interactions over processes and tools, while Scrum values include commitment, courage, focus, openness, and respect.

    • Agile values prioritize individuals and interactions over processes and tools

    • Scrum values include commitment, courage, focus, openness, and respect

    • Scrum ceremonies include Sprint Planning, Daily Standup, Sprint Review, and Sprint Retrospective

    • Story points are a unit of...

  • Answered by AI
  • Q2. As project manager what docs do you prepare? How do you contribute as a PM?
  • Ans. 

    As a project manager, I prepare various documents such as project plans, schedules, budgets, risk assessments, and progress reports. I contribute by leading the team, managing resources, and ensuring project success.

    • Prepare project plans outlining scope, objectives, deliverables, and timelines

    • Create schedules to allocate tasks and track progress

    • Develop budgets to manage project costs effectively

    • Conduct risk assessments...

  • Answered by AI
  • Q3. Capacity? Velocity? etc Agile/Scrum-based questions (bookish) this round was taken by Rajni
Round 2 - One-on-one 

(6 Questions)

  • Q1. Megha took my final round and asked me questions about Agile/Scrum, Stroy Points (estimation).
  • Q2. Ques on explaining Sprint Planning, Retro, Review, using Doc/Excel (screen sharing)
  • Q3. Ques on Conflict and Resource Management, some scenario-based question.
  • Q4. How will you make a low-performing resource a high-performing one?
  • Ans. 

    Provide clear expectations, offer support and training, provide feedback and recognition, set goals and milestones.

    • Clearly communicate expectations and goals to the resource.

    • Offer support and training to help the resource improve their skills and knowledge.

    • Provide regular feedback and recognition for progress made.

    • Set specific goals and milestones to track improvement.

    • Create a development plan with the resource to addr...

  • Answered by AI
  • Q5. Megha did not hire me because she felt I had adequate knowledge and practical experience. (insecurities) Anyway, good luck with your interview.
  • Q6. What is Scrum of Scrums? What is PI planning?
  • Ans. 

    Scrum of Scrums is a scaled agile framework where multiple Scrum teams coordinate their work. PI planning is a key event in SAFe where teams plan their work for the upcoming Program Increment.

    • Scrum of Scrums involves representatives from each Scrum team meeting regularly to discuss dependencies and progress.

    • PI planning is a two-day event where teams align on their objectives, dependencies, and priorities for the upcomi...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Magic Edtech Project Manager interview:
  • Agile Methodology
  • Waterfall
  • Scrum
  • Project Management
Interview preparation tips for other job seekers - Be well prepared with your bookish as well as practical answers.

Skills evaluated in this interview

Nalashaa Solutions Interview FAQs

How many rounds are there in Nalashaa Solutions interview?
Nalashaa Solutions interview process usually has 2-3 rounds. The most common rounds in the Nalashaa Solutions interview process are Technical, One-on-one Round and Coding Test.
How to prepare for Nalashaa 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 Nalashaa Solutions. The most common topics and skills that interviewers at Nalashaa Solutions expect are Javascript, HTML, JQuery, Business Analysis and Computer science.
What are the top questions asked in Nalashaa Solutions interview?

Some of the top questions asked at the Nalashaa Solutions interview -

  1. How can we report errors in the log file while working on a core PHP proje...read more
  2. Write a query to get 4th highest salary from employees tab...read more
  3. What is the use of group by and having? Write sample query using thos...read more

Tell us how to improve this page.

Nalashaa Solutions Interview Process

based on 6 interviews

Interview experience

4.3
  
Good
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
View all

Nalashaa Solutions Reviews and Ratings

based on 58 reviews

3.9/5

Rating in categories

3.6

Skill development

3.8

Work-life balance

4.0

Salary

3.6

Job security

3.8

Company culture

3.8

Promotions

3.6

Work satisfaction

Explore 58 Reviews and Ratings
Senior Software Engineer - AS400

Bangalore / Bengaluru

7-12 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
39 salaries
unlock blur

₹6.2 L/yr - ₹20.5 L/yr

Software Engineer
33 salaries
unlock blur

₹4.2 L/yr - ₹14.1 L/yr

Lead Engineer
21 salaries
unlock blur

₹12.6 L/yr - ₹27.8 L/yr

Software Developer
20 salaries
unlock blur

₹5 L/yr - ₹14 L/yr

Business Analyst
12 salaries
unlock blur

₹7 L/yr - ₹15 L/yr

Explore more salaries
Compare Nalashaa Solutions with

Persistent Systems

3.5
Compare

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

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