Upload Button Icon Add office photos

Filter interviews by

Celusion Technologies Software Developer Interview Questions, Process, and Tips

Updated 16 Nov 2024

Top Celusion Technologies Software Developer Interview Questions and Answers

View all 8 questions

Celusion Technologies Software Developer Interview Experiences

3 interviews found

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is mirror conatiner
  • Ans. 

    A mirror container is a duplicate container that reflects the changes made to the original container.

    • Mirror containers are used for redundancy and failover purposes.

    • Changes made to the original container are automatically replicated to the mirror container.

    • Mirror containers can be used in high availability setups to ensure continuous operation.

    • Example: Docker Swarm supports mirror containers for high availability.

  • Answered by AI
  • Q2. Explain middleware
  • Ans. 

    Middleware is software that acts as a bridge between different applications or components, allowing them to communicate and work together.

    • Middleware helps in integrating different systems and applications

    • It provides a layer of abstraction for communication between components

    • Examples include message brokers like RabbitMQ, web servers like Apache Tomcat, and API gateways like Kong

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview not good

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Sep 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What do you understand by Model View Control
  • Ans. 

    MVC is a software design pattern that separates an application into three interconnected components: Model, View, and Controller.

    • Model represents the data and business logic

    • View displays the data to the user

    • Controller handles user input and updates the model and view accordingly

    • MVC promotes separation of concerns and modularity

    • Examples: Ruby on Rails, ASP.NET MVC, AngularJS

  • Answered by AI
  • Q2. Current Project
  • Ans. 

    I am currently working on a web application for a retail company.

    • Using React for the front-end

    • Node.js and Express for the back-end

    • MongoDB for the database

    • Implementing features such as user authentication and product search

  • Answered by AI
  • Q3. Why are Minification & Bundling introduced in MVC
  • Ans. 

    Minification & Bundling are introduced in MVC to improve web application performance.

    • Minification reduces the size of JavaScript and CSS files by removing unnecessary characters like white spaces, comments, etc.

    • Bundling combines multiple JavaScript and CSS files into a single file to reduce the number of HTTP requests.

    • This improves web application performance by reducing the load time of web pages.

    • MVC provides built-in...

  • Answered by AI
  • Q4. Latest Technology in Market
  • Ans. 

    The latest technology in the market is Artificial Intelligence (AI).

    • AI is being used in various industries such as healthcare, finance, and retail.

    • Machine learning and deep learning are subsets of AI that are gaining popularity.

    • Natural Language Processing (NLP) is another area of AI that is being explored.

    • AI is also being used for automation and improving efficiency in businesses.

    • AI-powered chatbots are becoming more c...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - More than Theory they focus on Practical's. Understanding person logic .
The HR also make us aware on technical things what the company is looking for, where the candidate is also prepared she seems to be technical person ( Entity Framework, Dependency Injection,Javascript,.net core ,VueJS,Sql Server. Things are well defined

Skills evaluated in this interview

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray SumGiven an array of numbers, find the maximum s ... read more
asked in Cognizant
Q2. Nth Fibonacci NumberNth term of Fibonacci series F(n), where F(n) ... read more
asked in Rakuten
Q3. Merge two sorted arraysNinja has been given two sorted integer ar ... read more
asked in GlobalLogic
Q4. Terms Of APAyush is given a number ‘X’. He has been told that he ... read more
asked in Amazon
Q5. Minimum Number of Platform NeededYou are given the arrival and de ... read more
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before May 2022. 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 

(2 Questions)

  • Q1. What is .net framework
  • Ans. 

    .NET Framework is a software framework developed by Microsoft that runs primarily on Microsoft Windows.

    • It provides a large library of pre-coded solutions to common programming problems.

    • It supports multiple programming languages such as C#, VB.NET, and F#.

    • It includes a runtime environment, a set of libraries, and a compiler.

    • It allows developers to create applications for desktop, web, mobile, gaming, and IoT platforms.

    • E...

  • Answered by AI
  • Q2. What are the OOPS concept
  • Ans. 

    OOPS concepts are the fundamental principles of Object-Oriented Programming.

    • Abstraction

    • Encapsulation

    • Inheritance

    • Polymorphism

  • Answered by AI

Interview questions from similar companies

Software Developer Interview Questions & Answers

Snovasys user image 218A1A05A9 GOGATI GOVARDHAN

posted on 1 Nov 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

(2 Questions)

  • Q1. Number series in aptitude
  • Ans. 

    Number series in aptitude involves identifying the pattern in a sequence of numbers and predicting the next number.

    • Look for patterns such as arithmetic progression, geometric progression, or a combination of both.

    • Check for alternate numbers, differences between consecutive numbers, or multiplication factors.

    • Consider prime numbers, squares, cubes, or other mathematical operations applied to the series.

    • Example: 2, 4, 6, ...

  • Answered by AI
  • Q2. Relation ships in berbal
  • Ans. 

    Relationships in verbal communication are crucial for effective collaboration and understanding.

    • Verbal communication involves both verbal and non-verbal cues

    • Active listening is key to building strong relationships in verbal communication

    • Clarity and conciseness in speech can enhance relationships

    • Empathy and understanding of others' perspectives are important in verbal relationships

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Explain the four branches of oops
  • Ans. 

    The four branches of OOP are encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Inheritance: Allowing a class to inherit properties and behavior from another class.

    • Polymorphism: The ability for objects of different classes to respond to the same method call.

    • Abstraction: Hiding the complex implementation details and showing only

  • Answered by AI
  • Q2. Explain about the structures in c
  • Ans. 

    Structures in C are user-defined data types that allow grouping of variables of different data types under a single name.

    • Structures are used to represent a record which consists of different data types.

    • They are defined using the 'struct' keyword.

    • Each variable in a structure is called a member.

    • Structures can be nested within other structures.

    • Example: struct employee { int emp_id; char emp_name[50]; float emp_salary; };

    • E

  • 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 was interviewed in Nov 2024.

Round 1 - Aptitude Test 

The aptitude test evaluates problem-solving, coding skills, and logical reasoning, offering a fair challenge to showcase technical expertise.

Round 2 - One-on-one 

(2 Questions)

  • Q1. How do you handle conflicts in a team project?
  • Ans. 

    I address conflicts in team projects by promoting open communication, active listening, and seeking compromise.

    • Encourage open communication among team members to address conflicts early on

    • Practice active listening to understand all perspectives and concerns

    • Seek compromise and find common ground to resolve conflicts effectively

  • Answered by AI
  • Q2. What is the difference between an interface and an abstract class?
  • Ans. 

    Interface is a contract that defines the methods a class must implement, while an abstract class can have both implemented and abstract methods.

    • Interface can only have abstract methods and cannot have any implementation, while abstract class can have both abstract and implemented methods.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Interfaces are used to achieve multiple inheri...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Research the company, practice technical skills, communicate, showcase problem-solving abilities, stay confident, and demonstrate enthusiasm for the role
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Tell Me about yourself
  • Q2. What is C# and coding.
Round 2 - HR 

(1 Question)

  • Q1. What is your CCTC?

Interview Preparation Tips

Interview preparation tips for other job seekers - Consider this company your last choice.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the difference between an abstract class and an interface in object-oriented programming?
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have method implementations, while interface cannot.

    • A class can implement multiple interfaces, but can only inherit from one abstract class.

    • Interfaces are used to define contracts for classes to implement, while abstract classes are used to provide a common base for subclasses.

    • Example: Abstr...

  • Answered by AI
  • Q2. Abstract classes can have implemented methods; interfaces can only have declarations (before JAVA 8).

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay updated with the latest tools and technologies in your field to remain competitive.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Assignment 

Give 10 questions from node js backend

Round 2 - One-on-one 

(6 Questions)

  • Q1. Ask about angular and node js
  • Q2. What is package.json
  • Ans. 

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

    • It is a JSON file that contains information about the project, such as name, version, dependencies, and scripts.

    • It is used to manage project dependencies by listing them in the 'dependencies' and 'devDependencies' fields.

    • It allows developers to define scripts for tasks like building, testing, and running the project.

    • Example: {...

  • Answered by AI
  • Q3. What is components in angular,how share data to component
  • Ans. 

    Components in Angular are building blocks of an application. Data can be shared between components using input properties and output events.

    • Components in Angular are reusable, self-contained units of code that define a part of the user interface.

    • Data can be shared to a component using input properties, where data is passed from the parent component to the child component.

    • Data can also be shared from a child component t...

  • Answered by AI
  • Q4. What is === and == ,and wher use === is real time projects
  • Ans. 

    === is strict equality operator, while == is loose equality operator. === is commonly used in real-time projects for accurate comparisons.

    • === is a strict equality operator that checks both value and type of operands

    • == is a loose equality operator that only checks the value of operands

    • === is commonly used in real-time projects to ensure accurate comparisons and prevent unexpected type coercion issues

  • Answered by AI
  • Q5. Write arrow function syntax
  • Ans. 

    Arrow function syntax in JavaScript

    • Arrow functions are concise syntax for writing function expressions in JavaScript

    • They have a shorter syntax compared to traditional function expressions

    • They do not have their own 'this', 'arguments', 'super', or 'new.target' keywords

  • Answered by AI
  • Q6. What is difference between arrow function and anonymous function
  • Ans. 

    Arrow functions are concise syntax for writing function expressions, while anonymous functions do not have a name.

    • Arrow functions have a shorter syntax compared to anonymous functions.

    • Arrow functions do not have their own 'this' keyword, while anonymous functions do.

    • Arrow functions do not have 'arguments' object, while anonymous functions do.

    • Arrow functions are not hoisted, while anonymous functions are hoisted.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare about ur role

Skills evaluated in this interview

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

(1 Question)

  • Q1. 3 Question was there related to architecture and Computer networks.
Round 2 - Technical 

(2 Questions)

  • Q1. Microservices and Monolith.
  • Q2. Leetcode hard Sum.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude questions with some basic coding questions

Round 2 - Coding Test 

They have given 3 coding questions and some pseudo codings

Round 3 - Technical 

(2 Questions)

  • Q1. Tell about your self
  • Q2. Some coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident

Celusion Technologies Interview FAQs

How many rounds are there in Celusion Technologies Software Developer interview?
Celusion Technologies interview process usually has 1-2 rounds. The most common rounds in the Celusion Technologies interview process are Resume Shortlist, One-on-one Round and Technical.
What are the top questions asked in Celusion Technologies Software Developer interview?

Some of the top questions asked at the Celusion Technologies Software Developer interview -

  1. What do you understand by Model View Cont...read more
  2. Why are Minification & Bundling introduced in ...read more
  3. What is .net framew...read more

Tell us how to improve this page.

Celusion Technologies Software Developer Salary
based on 104 salaries
₹1.9 L/yr - ₹9.8 L/yr
35% less than the average Software Developer Salary in India
View more details

Celusion Technologies Software Developer Reviews and Ratings

based on 22 reviews

4.3/5

Rating in categories

4.4

Skill development

3.2

Work-life balance

3.2

Salary

3.5

Job security

3.4

Company culture

3.2

Promotions

3.9

Work satisfaction

Explore 22 Reviews and Ratings
Software Developer
104 salaries
unlock blur

₹2 L/yr - ₹9.8 L/yr

Quality Analyst
40 salaries
unlock blur

₹2.9 L/yr - ₹7.5 L/yr

Business Analyst
22 salaries
unlock blur

₹4.2 L/yr - ₹13 L/yr

Senior Software Developer
12 salaries
unlock blur

₹8 L/yr - ₹12 L/yr

Senior Software Engineer
8 salaries
unlock blur

₹6.8 L/yr - ₹13 L/yr

Explore more salaries
Compare Celusion Technologies with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

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