Upload Button Icon Add office photos
Engaged Employer

i

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

Centelon Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Centelon Consultant Interview Questions and Answers

Updated 12 Nov 2024

Centelon Consultant Interview Experiences

2 interviews found

Consultant Interview Questions & Answers

user image Anonymous

posted on 21 Aug 2024

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

I applied via Naukri.com and was interviewed in Jul 2024. There were 4 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. JavaScript concepts
  • Q2. JavaScript coding
  • Q3. Angular questions
Round 2 - Technical 

(2 Questions)

  • Q1. Angular questions
  • Q2. Angular implementation explanation
  • Ans. 

    Angular implementation explanation

    • Angular is a popular front-end framework for building web applications

    • Uses TypeScript for development

    • Components, services, modules, and directives are key concepts in Angular

    • Data binding, dependency injection, and routing are important features

    • Example: Creating a new component in Angular - ng generate component my-component

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. Casual questions and discussion
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion and casual discussion

Skills evaluated in this interview

Consultant Interview Questions & Answers

user image Anonymous

posted on 12 Nov 2024

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

(2 Questions)

  • Q1. Difference between String and StringBuilder?
  • Ans. 

    String is immutable, StringBuilder is mutable.

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

    • StringBuilder is mutable, allowing for the modification of its value without creating a new object.

    • String concatenation in a loop is more efficient with StringBuilder to avoid creating multiple String objects.

    • StringBuilder has methods like append(), insert(), delete(), etc. for modifying its value.

  • Answered by AI
  • Q2. What are AWS services?
  • Ans. 

    AWS services are a collection of cloud computing services provided by Amazon Web Services.

    • Compute services (e.g. EC2, Lambda)

    • Storage services (e.g. S3, EBS)

    • Database services (e.g. RDS, DynamoDB)

    • Networking services (e.g. VPC, Route 53)

    • Analytics services (e.g. Redshift, Athena)

    • Machine Learning services (e.g. SageMaker)

    • Security services (e.g. IAM, KMS)

  • Answered by AI

Skills evaluated in this interview

Consultant Interview Questions Asked at Other Companies

asked in Deloitte
Q1. How would you pass an entry for travel expenses incurred and paid ... read more
asked in Accenture
Q2. There is an international bank (US based) that has been operating ... read more
asked in EXL Service
Q3. You have 20 red balls, 14 blue balls. You draw out balls, 2 at a ... read more
Q4. If a policy is billed monthly and is an annual policy and due to ... read more
asked in BCG
Q5. “there is a company in the telecom sector and has a product “X” – ... read more

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Rate yourself on a scale of 1 to 5, where do you stand at handling client requirement

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - just basic questions from my cv

I applied via Campus Placement and was interviewed before Jun 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Profit and losses, time

Round 2 - Coding Test 

C language

Round 3 - Technical 

(2 Questions)

  • Q1. On programming questions
  • Q2. On our Engineering project

Interview Preparation Tips

Interview preparation tips for other job seekers - Be polite and your English language should be perfect

I applied via Referral and was interviewed before Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Networking Advanced with all Routing Protocols, Linux Scenario Based Questions, Openstack, AWS, Docker, Kubernetes, Cloud Computing, Python

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't mug up, try to dive deep into concepts.

I applied via Approached by Company and was interviewed before May 2021. 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 - Technical 

(1 Question)

  • Q1. Basis knowledge of SAP HANA and system upgrade/Installations
Round 3 - HR 

(1 Question)

  • Q1. Related to package and location

Interview Preparation Tips

Interview preparation tips for other job seekers - Please give some interviews to get knowledge of the question which are trending

I applied via Company Website and was interviewed in Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. What is CI/CD pipeline, and why it is needed?
  • Ans. 

    CI/CD pipeline is a process of continuous integration and continuous delivery/deployment of software.

    • CI/CD pipeline automates the software delivery process

    • It helps in detecting and fixing bugs early in the development cycle

    • It ensures that the software is always in a releasable state

    • It reduces the time between writing code and deploying it to production

    • Examples of CI/CD tools include Jenkins, Travis CI, and CircleCI

  • Answered by AI
  • Q2. How did you implement Automation in your last organization?
  • Ans. 

    Implemented automation by identifying manual processes, selecting appropriate tools, and creating scripts.

    • Conducted a thorough analysis of manual processes to identify areas for automation

    • Selected appropriate automation tools based on the requirements and budget

    • Created scripts using Python and Selenium to automate repetitive tasks

    • Implemented continuous integration and delivery using Jenkins

    • Provided training to the team...

  • Answered by AI
  • Q3. What is jenkinsfile?
  • Ans. 

    Jenkinsfile is a text file that defines the entire build process for a Jenkins pipeline.

    • Jenkinsfile is written in Groovy syntax

    • It can be stored in a version control system like Git

    • It allows for defining stages, steps, and conditions for a pipeline

    • Jenkinsfile can be executed on any Jenkins instance

    • Example: pipeline { agent { docker 'maven:3-alpine' } stages { stage('Build') { steps { sh 'mvn -B -DskipTests clean package

  • Answered by AI
  • Q4. How would you connect the machine in private subnet?
  • Ans. 

    To connect a machine in a private subnet, use a bastion host or VPN.

    • Set up a bastion host in the public subnet to act as a gateway.

    • Use SSH tunneling or RDP to connect to the bastion host.

    • From the bastion host, connect to the machine in the private subnet.

    • Alternatively, set up a VPN to securely connect to the private subnet.

    • Configure the security group and network ACLs to allow the necessary traffic.

  • Answered by AI
  • Q5. How can you verfiy/check/validate your Ansible playbooks?
  • Ans. 

    Ansible playbooks can be verified/validated using various tools and techniques.

    • Use Ansible's built-in syntax checker 'ansible-playbook --syntax-check'

    • Use Ansible's 'ansible-lint' tool to check for best practices and potential issues

    • Use 'ansible-playbook --check' to simulate playbook execution without making changes

    • Use 'ansible-playbook --diff' to show the differences between the current and desired state

    • Use 'ansible-pl...

  • Answered by AI
  • Q6. What is inventory,roles,variable in ansible?
  • Ans. 

    Inventory is a list of hosts where Ansible runs tasks. Roles are reusable collections of tasks, files, and templates. Variables are used to store data.

    • Inventory is a file or directory containing a list of hosts or groups of hosts

    • Roles are used to organize tasks, files, and templates into reusable collections

    • Variables are used to store data that can be used across multiple tasks and roles

    • Example: inventory file can cont...

  • Answered by AI
  • Q7. How to add user in Jenkins?
  • Ans. 

    Adding a user in Jenkins

    • Go to Jenkins dashboard and click on 'Manage Jenkins'

    • Click on 'Manage Users' and then 'Create User'

    • Fill in the user details and click 'Create User'

    • Assign the necessary permissions to the user

  • Answered by AI
  • Q8. What is Maven? Diff B/W Install and Deploy
  • Ans. 

    Maven is a build automation tool used for Java projects. Install is for local repository, deploy is for remote repository.

    • Maven is used to manage dependencies and build Java projects

    • Install command installs the project's artifact (jar, war, etc.) to the local repository

    • Deploy command uploads the artifact to a remote repository

    • Install is used during development, deploy is used for distribution

    • Example: 'mvn install' inst...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on what your actual troubleshooting(its your achivements), something ordinary thing which you did to find out a solution. No need to fake be original.

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Most questions from your resume..consultant will be for specific domain so more questions on that

Interview Preparation Tips

Interview preparation tips for other job seekers - Do a good homework on your resume.

I applied via Naukri.com and was interviewed before Dec 2019. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Oracle Apps Technical - PlSQL concepts
  • Q2. Basic questions like logic to find even number, swap number ,etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to see all the Technology related questions in Google before going for interview.

Centelon Interview FAQs

How many rounds are there in Centelon Consultant interview?
Centelon interview process usually has 2-3 rounds. The most common rounds in the Centelon interview process are Technical, Behavioral and HR.
What are the top questions asked in Centelon Consultant interview?

Some of the top questions asked at the Centelon Consultant interview -

  1. Difference between String and StringBuild...read more
  2. What are AWS servic...read more
  3. Angular implementation explanat...read more

Tell us how to improve this page.

Centelon Consultant Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more
Centelon Consultant Salary
based on 38 salaries
₹4.5 L/yr - ₹14 L/yr
32% less than the average Consultant Salary in India
View more details

Centelon Consultant Reviews and Ratings

based on 21 reviews

4.0/5

Rating in categories

3.6

Skill development

3.9

Work-life balance

3.7

Salary

3.7

Job security

3.7

Company culture

3.6

Promotions

3.6

Work satisfaction

Explore 21 Reviews and Ratings
Associate Consultant
82 salaries
unlock blur

₹3 L/yr - ₹8 L/yr

Consultant
38 salaries
unlock blur

₹4.5 L/yr - ₹14 L/yr

Senior Consultant
29 salaries
unlock blur

₹8.5 L/yr - ₹25 L/yr

Salesforce Developer
20 salaries
unlock blur

₹3 L/yr - ₹9 L/yr

Salesforce Consultant
9 salaries
unlock blur

₹3 L/yr - ₹10.3 L/yr

Explore more salaries
Compare Centelon with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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