Upload Button Icon Add office photos

Centroxy Solution

Compare button icon Compare button icon Compare

Filter interviews by

Centroxy Solution Software Developer Interview Questions and Answers

Updated 10 Aug 2023

Centroxy Solution Software Developer Interview Experiences

2 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Jul 2023.

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 

(4 Questions)

  • Q1. What is indexing in SQL
  • Ans. 

    Indexing in SQL is a way to optimize the performance of queries by creating a data structure that allows for faster retrieval of data.

    • Indexes are created on columns in a database table to speed up the retrieval of rows that match a certain condition in a WHERE clause.

    • Indexes can be created using CREATE INDEX statement in SQL.

    • Types of indexes include clustered indexes, non-clustered indexes, unique indexes, and composit...

  • Answered by AI
  • Q2. What is Primay index and Secondary index
  • Ans. 

    Primary index is the main index used to uniquely identify records in a database, while secondary index is an additional index for faster access to specific data.

    • Primary index is typically based on the primary key of a table, ensuring uniqueness of each record.

    • Secondary index is created on non-primary key columns to improve query performance for specific data retrieval.

    • Example: In a student database, student ID can be a...

  • Answered by AI
  • Q3. What is Table Lock in SQL
  • Ans. 

    Table Lock in SQL is a mechanism that prevents other users from accessing a table while it is being used by a transaction.

    • Table Lock is used to control access to a table in a database.

    • It can be used to prevent other users from reading or writing to a table while a transaction is in progress.

    • There are different types of table locks such as shared lock, exclusive lock, and update lock.

    • Table locks can impact the performan...

  • Answered by AI
  • Q4. How do you maintain security in Web API
  • Ans. 

    Maintain security in Web API by implementing authentication, authorization, encryption, and input validation.

    • Implement authentication mechanisms such as OAuth, JWT, or API keys to verify the identity of clients accessing the API.

    • Use authorization to control access to resources based on roles and permissions.

    • Encrypt sensitive data using SSL/TLS to ensure secure communication between clients and the API.

    • Validate and sani...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through certain interview questions available on the internet

Skills evaluated in this interview

Round 1 - Coding Test 

They give you basic code for their requirements

Round 2 - HR 

(3 Questions)

  • Q1. What are your salary expectations?
  • Ans. 

    I expect a competitive salary based on my skills, experience, and industry standards.

    • Research industry standards: For example, according to Glassdoor, the average salary for a Software Developer in my area is $X.

    • Consider my experience: With over Y years in software development, I bring valuable skills that justify a higher salary.

    • Factor in the company's size and location: Larger companies in tech hubs often offer highe...

  • Answered by AI
  • Q2. What is your family background?
  • Q3. Share details of your previous job.

Interview Preparation Tips

Interview preparation tips for other job seekers - Kindly focus on Gluu,Octa,java, Spring Boot,RestApi
Complete task properly to get a job

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Rakuten
Q2. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Amazon
Q3. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Centroxy Solution?
Ask anonymously on communities.

Interview questions from similar companies

Software Developer Interview Questions & Answers

Snovasys user image Papanaboyina Manohar

posted on 6 Oct 2023

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

I applied via Campus Placement and was interviewed in Sep 2023. 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 

Python based questions

Round 3 - Technical 

(2 Questions)

  • Q1. Python based questions
  • Q2. Java based questions
Round 4 - HR 

(1 Question)

  • Q1. Tell me about yourself
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 Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Pattern question based on the coding
  • Ans. 

    This question tests your ability to identify and generate patterns in coding.

    • Understand the pattern: Analyze the given examples to identify the underlying rule.

    • Use loops: Implement loops to generate sequences based on the identified pattern.

    • Consider edge cases: Ensure your solution handles special cases, like empty arrays or single elements.

    • Optimize for performance: Think about the time complexity of your solution, esp...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Coding is the best part

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
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Feb 2025.

Round 1 - Coding Test 

They asked one coding question that is for star pattern question

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare for pattern auestions and java
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I appeared for an interview in Oct 2023.

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 

Easy to medium
profit and loss questions
Permutation and combination

Round 3 - Aptitude Test 

Easy to medium
45 mins

Round 4 - Technical 

(4 Questions)

  • Q1. Basic concept of Oops Java basic
  • Q2. Constructor Overloading
  • Q3. Operator overloading in Java?
  • Ans. 

    Operator overloading allows operators to be redefined for user-defined types in Java.

    • Operator overloading is not supported in Java as it can lead to ambiguity and confusion.

    • Java does not allow custom operators to be defined or existing operators to be overloaded.

    • Instead of operator overloading, Java provides method overloading where methods with the same name but different parameters can be defined.

  • Answered by AI
  • Q4. Define java and it's features
  • Ans. 

    Java is a high-level, object-oriented programming language known for its platform independence and robust features.

    • Java is platform-independent, meaning it can run on any device with a Java Virtual Machine (JVM)

    • It is object-oriented, allowing for modular and reusable code

    • Java is known for its robust standard library, which includes tools for networking, I/O, and more

    • It supports multithreading, allowing for concurrent e...

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Introduction Present events

Skills evaluated in this interview

Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Easy aptitude, 30 min with 20 question

Interview Preparation Tips

Interview preparation tips for other job seekers - learn OOPs concept and thorough about your project
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Simple aptitude questions.

Round 2 - HR 

(2 Questions)

  • Q1. What's your strength ?
  • Ans. 

    My strength lies in my problem-solving skills and ability to learn quickly.

    • Strong problem-solving skills

    • Quick learner

    • Adaptability to new technologies

    • Ability to work well under pressure

  • Answered by AI
  • Q2. Are you willing to work under pressure?
  • Ans. 

    Yes, I am comfortable working under pressure and have experience delivering high-quality work in tight deadlines.

    • I have successfully completed projects with tight deadlines in my previous roles.

    • I am able to prioritize tasks effectively and remain focused under pressure.

    • I thrive in challenging situations and see them as opportunities to showcase my skills.

    • I have experience working on urgent bug fixes and resolving issue...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If you have a good carrier then don't go there.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Apr 2022. 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 - Aptitude Test 

25 MCQ questions online with time limit

Round 3 - Assignment 

Create webapp . Frontend, Backend , data encryption

Centroxy Solution Interview FAQs

How many rounds are there in Centroxy Solution Software Developer interview?
Centroxy Solution interview process usually has 2 rounds. The most common rounds in the Centroxy Solution interview process are Coding Test, HR and Resume Shortlist.
What are the top questions asked in Centroxy Solution Software Developer interview?

Some of the top questions asked at the Centroxy Solution Software Developer interview -

  1. How do you maintain security in Web ...read more
  2. What is Primay index and Secondary in...read more
  3. What is Table Lock in ...read more
What are the most common questions asked in Centroxy Solution Software Developer HR round?

The most common HR questions asked in Centroxy Solution Software Developer interview are -

  1. What are your salary expectatio...read more
  2. What is your family backgrou...read more
  3. Share details of your previous j...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
Centroxy Solution Software Developer Salary
based on 12 salaries
₹1 L/yr - ₹4.6 L/yr
64% less than the average Software Developer Salary in India
View more details

Centroxy Solution Software Developer Reviews and Ratings

based on 2 reviews

1.0/5

Rating in categories

1.0

Skill development

2.9

Work-life balance

1.5

Salary

1.5

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 2 Reviews and Ratings
Assistant Software Engineer
64 salaries
unlock blur

₹1 L/yr - ₹4 L/yr

Software Engineer
34 salaries
unlock blur

₹1 L/yr - ₹8.4 L/yr

Software Developer
12 salaries
unlock blur

₹0.9 L/yr - ₹4.6 L/yr

Senior Software Engineer
9 salaries
unlock blur

₹4 L/yr - ₹5.1 L/yr

Associate Software Engineer
7 salaries
unlock blur

₹1 L/yr - ₹3.5 L/yr

Explore more salaries
Compare Centroxy Solution with

Zidio Development

4.5
Compare

Northcorp Software

4.5
Compare

Accel Frontline

4.1
Compare

Elentec Power India (EPI) Pvt. Ltd.

3.8
Compare
write
Share an Interview