Upload Button Icon Add office photos

Filter interviews by

Agicent Technologies Software Engineer Interview Questions and Answers

Updated 27 Jun 2024

Agicent Technologies Software Engineer Interview Experiences

2 interviews found

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

Ask coding questions

Round 2 - Technical 

(1 Question)

  • Q1. Based role depended
Round 3 - Technical 

(1 Question)

  • Q1. Project manager
Round 4 - HR 

(1 Question)

  • Q1. Sallary discuss

I appeared for an interview in Oct 2021.

Interview Questionnaire 

4 Questions

  • Q1. What is oops Concept
  • Ans. 

    OOPs (Object-Oriented Programming) is a programming paradigm that uses objects to design applications and programs.

    • OOPs focuses on creating reusable code and organizing it into objects.

    • It involves the concepts of inheritance, encapsulation, and polymorphism.

    • Inheritance allows a class to inherit properties and methods from another class.

    • Encapsulation is the process of hiding data and methods within a class.

    • Polymorphism ...

  • Answered by AI
  • Q2. Why use inheritence?
  • Ans. 

    Inheritance allows for code reuse and promotes polymorphism.

    • Inheritance allows for creating a new class from an existing class.

    • The new class can inherit all the properties and methods of the existing class.

    • Inheritance promotes code reuse and reduces code duplication.

    • Inheritance also allows for polymorphism, where objects of different classes can be treated as if they are of the same class.

    • For example, a Car class can i...

  • Answered by AI
  • Q3. Difference b/w string , StringBuilder , Stringbuffer
  • Ans. 

    String is immutable, StringBuilder and StringBuffer are mutable. StringBuffer is thread-safe.

    • String is immutable, meaning its value cannot be changed once it is created.

    • StringBuilder and StringBuffer are mutable, meaning their values can be changed.

    • StringBuilder is not thread-safe, while StringBuffer is thread-safe.

    • Use StringBuilder when you don't need thread-safety, and StringBuffer when you do.

    • Example: String str = "...

  • Answered by AI
  • Q4. Why String is immutable ? what is string pooling?
  • Ans. 

    String is immutable to ensure thread safety and security. String pooling is a technique to reuse string literals.

    • Immutable strings prevent accidental modification and ensure thread safety.

    • String pooling reduces memory usage by reusing string literals.

    • String objects can be created using the new keyword, but it is not recommended.

    • StringBuffer and StringBuilder classes can be used for mutable strings.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - keep calm don't be nervous just try your best. what ever you know just try to explain.

Skills evaluated in this interview

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Water scarcity, 3 mins , name-area-parents-topic

Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a passionate software engineer with experience in developing web applications using various technologies.

    • Experienced in developing web applications using HTML, CSS, JavaScript, and frameworks like React and Angular

    • Proficient in backend development with Node.js and databases like MySQL and MongoDB

    • Familiar with version control systems like Git and deployment tools like Docker

    • Strong problem-solving skills and ability

  • Answered by AI
  • Q2. What is your background
  • Ans. 

    I have a Bachelor's degree in Computer Science and 5 years of experience in software development.

    • Bachelor's degree in Computer Science

    • 5 years of experience in software development

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - whatever just enjoy the experiance
Interview experience
3
Average
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 - Aptitude Test 

Normal aptitude questions they will ask

Round 3 - Coding Test 

Program like palindrome, String reverse etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basic good and practice well for programming
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Job Portal and was interviewed in Jan 2023. There were 3 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 - HR 

(1 Question)

  • Q1. More than technology,a senior recruiter asks where you stay which gali you stay,which temple is near by,what your husband do,getting into more personal and final he will ask your janam kundali and tell you...
Round 3 - One-on-one 

(1 Question)

  • Q1. Senior recruiter will ask more personal questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Girls and ladies please don't join this company as it is more into priest kinda,they check your caste,class rather your hardwork it seems. This so called senior recruiter totally flirts with you if you are single,divorce,seperarated and also heard his eyes rolls on always girls upper part,no matter whatever she is wearing. I heard after complaining also higher authorities didn't taken the action. Now you people only imagine how is it safe for a girl to work in that disgusting atmosphere. And in any MNC company if the complain is raised the higher authority should take an action but still they kept him then think what kinda company is this. INDIA HR cgs is worst the worst. They are not giving you secured job,HR are saving there job to close that position and you are bakra,who will be paid with very less salary comparative outside and also you are treated like a dog. Think twice thrice to take the decision.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

It was Very Easy and HR was Very Friendly Nature

Round 2 - Technical 

(2 Questions)

  • Q1. What Is OOOps and explain those?
  • Ans. 

    OOOps stands for Out Of Order packets. It refers to packets that arrive at their destination out of sequence.

    • OOOps can occur in network communication when packets are sent out of order and arrive at the destination in a different order than they were sent.

    • This can lead to issues in data transmission and can cause delays in processing the information.

    • One way to handle OOOps is by using sequence numbers in packets to ens...

  • Answered by AI
  • Q2. What is Exception Handling ?
  • Ans. 

    Exception handling is a mechanism to handle runtime errors and prevent program crashes.

    • It is a way to deal with unexpected errors or exceptional conditions in a program.

    • Exceptions can be caught and handled using try-catch blocks.

    • Common exceptions include NullPointerException, ArrayIndexOutOfBoundsException, and IOException.

    • Handling exceptions properly can improve the robustness and reliability of a software application

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Well
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Aug 2024.

Round 1 - Aptitude Test 

There was no aptitude test; we proceeded directly to coding questions.

Round 2 - Coding Test 

Level 1, Level 2, and Level 3 questions of simple, medium, and hard difficulty.

Round 3 - HR 

(2 Questions)

  • Q1. Normal hr questions
  • Q2. About yourself, etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Simply prepare for basic number generation problems and build upon that knowledge.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Basics of C language

I applied via Naukri.com and was interviewed in Aug 2021. There were 2 interview rounds.

Round 1 - Case Study 

Case study

Round 2 - Coding Test 

Matrix question

Interview Preparation Tips

Interview preparation tips for other job seekers - Improvise DS Algo part before going
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Intro about Experience
  • Q2. Knowledge on tools
Round 2 - One-on-one 

(2 Questions)

  • Q1. Sdfsfd kjdk dvfikjsf vsjv
  • Q2. Sdjvks sdkvjsk skdcj

Agicent Technologies Interview FAQs

How many rounds are there in Agicent Technologies Software Engineer interview?
Agicent Technologies interview process usually has 4 rounds. The most common rounds in the Agicent Technologies interview process are Technical, Coding Test and HR.
What are the top questions asked in Agicent Technologies Software Engineer interview?

Some of the top questions asked at the Agicent Technologies Software Engineer interview -

  1. why String is immutable ? what is string pooli...read more
  2. Difference b/w string , StringBuilder , Stringbuf...read more
  3. why use inheritenc...read more

Tell us how to improve this page.

Agicent Technologies Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Fast track your campus placements

View all
Agicent Technologies Software Engineer Salary
based on 9 salaries
₹2.2 L/yr - ₹5 L/yr
55% less than the average Software Engineer Salary in India
View more details

Agicent Technologies Software Engineer Reviews and Ratings

based on 3 reviews

3.7/5

Rating in categories

2.7

Skill development

3.5

Work-life balance

2.7

Salary

2.7

Job security

3.1

Company culture

2.7

Promotions

3.1

Work satisfaction

Explore 3 Reviews and Ratings
Software Developer
18 salaries
unlock blur

₹2.5 L/yr - ₹4 L/yr

Android Developer
13 salaries
unlock blur

₹2 L/yr - ₹4.3 L/yr

QA Engineer
10 salaries
unlock blur

₹2 L/yr - ₹3.8 L/yr

IOS Developer
9 salaries
unlock blur

₹3 L/yr - ₹5.4 L/yr

Software Engineer
9 salaries
unlock blur

₹2.2 L/yr - ₹5 L/yr

Explore more salaries
Compare Agicent Technologies with

Primus Global Technologies

3.9
Compare

TriGeo Technologies

3.2
Compare

GrapplTech

4.8
Compare

Plada Infotech Services

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