Upload Button Icon Add office photos

Filter interviews by

Centrica Software Engineer Intern Interview Questions and Answers

Updated 20 Mar 2024

Centrica Software Engineer Intern Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Video Call 

(3 Questions)

  • Q1. What do you think makes our program unique?
  • Ans. 

    The program offers hands-on experience with cutting-edge technologies and provides mentorship from industry experts.

    • Access to cutting-edge technologies

    • Mentorship from industry experts

    • Hands-on experience with real-world projects

  • Answered by AI
  • Q2. Based on what you know, what do you think are the main changes and challenges that Centrica is likely to face over the next few years?
  • Q3. What challenges do you think you'd likely to face?

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Gate 2017 test for appti. bsnsn

Round 2 - Interview 

(2 Questions)

  • Q1. What is your r strength
  • Q2. How do you read newspapers

Interview Preparation Tips

Interview preparation tips for other job seekers - Company not suggested.. Join IOcl it's better
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic math and quantitative aptitude related questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me about thecompany
  • Ans. 

    The company is a leading technology firm specializing in software development and engineering solutions.

    • Founded in 2005 by a group of software engineers

    • Provides services in web development, mobile app development, and cloud computing

    • Clients include Fortune 500 companies such as Google and Microsoft

  • Answered by AI
  • Q2. How will you solve a critical problem coming to you as a engineer
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. If else statement difference
  • Ans. 

    If else statement is used to make decisions in programming based on conditions.

    • If statement is used to execute a block of code if a condition is true.

    • Else statement is used to execute a block of code if the same condition is false.

    • Else if statement can be used to check multiple conditions.

    • Example: if (condition) { // code block } else { // code block }

  • Answered by AI
  • Q2. Guard let statement diffrence
Round 2 - Aptitude Test 

Maths and reasoning basic questions

I was interviewed in May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 120 Minutes
Round difficulty - Easy

  • Q1. 

    Check Word Presence in String

    Given a string S and a list wordList containing N distinct words, determine if each word in wordList is present in S. Return a boolean array where the value at index 'i' indi...

  • Ans. 

    Given a string and a list of words, determine if each word in the list is present in the string and return a boolean array indicating their presence.

    • Iterate through each word in the word list and check if it is present in the string.

    • Use a boolean array to store the presence of each word in the string.

    • Consider case sensitivity when checking for word presence.

    • Do not use built-in string-matching methods.

    • Return the boolean

  • Answered by AI
Round 2 - Video Call 

Round duration - 20 Minutes
Round difficulty - Easy

Interview Preparation Tips

Eligibility criteria6.75+ CGPATata interview preparation:Topics to prepare for the interview - Data Structures, OOPS, DBMS, OOPs, Algorithms, DP, GreedyTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Try solving Love Babbar 450 Prog questions
Tip 2 : Have a good resume
Tip 3 : Do learn some extra technologies eg. ML/AI

Application resume tips for other job seekers

Tip 1 : Do not lie at all
Tip 2 : Have some projects listed

Final outcome of the interviewSelected
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 

(2 Questions)

  • Q1. What is array?? Detail in programming
  • Ans. 

    An array is a collection of similar data types stored in contiguous memory locations.

    • Arrays can be one-dimensional or multi-dimensional

    • Elements in an array can be accessed using their index

    • Arrays can be initialized during declaration or later in the code

    • Arrays can be passed as arguments to functions

    • Example: int arr[5] = {1, 2, 3, 4, 5};

    • Example: char str[10] = "Hello";

  • Answered by AI
  • Q2. About programming and Java script

Interview Preparation Tips

Interview preparation tips for other job seekers - Always prepare for interview and need you have to know about jd

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Apr 2022. There were 3 interview rounds.

Round 1 - Coding Test 

Ninja Coding Round Basic Coding questions available on youtube or sources online

Round 2 - Technical 

(1 Question)

  • Q1. Panel of 2 people will ask basic technical questions and it depends on what you have mentioned in your resume
Round 3 - HR 

(1 Question)

  • Q1. Basic HR questions about relocation etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Practise basic coding and math aptitude questions. To crack TCS
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 

C and c++ and data structure

Round 3 - Technical 

(1 Question)

  • Q1. Question front Data structure, c++ and c
Round 4 - HR 

(1 Question)

  • Q1. Ask all those questions that you want

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on body language.
Learn new things.

I applied via Naukri.com and was interviewed in Oct 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 - HR 

(4 Questions)

  • Q1. What is java? What is variable?
  • Ans. 

    Java is a popular programming language used for developing various applications. A variable is a named memory location used to store data.

    • Java is an object-oriented language

    • It is platform-independent

    • Variables in Java have a specific data type

    • Variables can be assigned values and their values can be changed

    • Example: int age = 25; String name = "John";

  • Answered by AI
  • Q2. What is inheritance? types of inheritance
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows code reuse and promotes code organization.

    • There are different types of inheritance: single inheritance, multiple inheritance, multilevel inheritance, and hierarchical inheritance.

    • Single inheritance involves a class inheriting from a single base class.

    • Multiple inheritance involves...

  • Answered by AI
  • Q3. 1.Java is a high level language 2.java is a programme is called a set of instructions 3.java run time environment (jre) 4.java is a platform independent. Variable: A variable which is container that some d...
  • Q4. Inheritance; 1.Acquring the properties of parent class to the child class with out changeing the properties of parent class is known as inheritance 2.inheritanc is a is relationship 3.extends keyword is us...
  • Ans. 

    Inheritance is acquiring properties of parent class to child class without changing parent class properties. It is classified into 5 types.

    • Inheritance is a way to reuse code and establish a relationship between classes

    • The 'extends' keyword is used to implement inheritance in Java

    • Examples of inheritance include a 'Car' class inheriting properties from a 'Vehicle' class

    • Single level inheritance involves one parent class a...

  • Answered by AI
Round 3 - Group Discussion 

May I about you ? Which your qualification and which stream

Interview Preparation Tips

Topics to prepare for Tata Group Software Developer interview:
  • Core Java
  • Web Technologies
Interview preparation tips for other job seekers - My strength is quick learner, self motivated, Hard working
My weakness is if any body ask for help me,I never say know.

Skills evaluated in this interview

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

Round 1 - Coding Test 

2 c++ coding questions will be asked based on the STL and array operations

Round 2 - One-on-one 

(1 Question)

  • Q1. Project manager will ask you project related knowledge.
Round 3 - HR 

(1 Question)

  • Q1. Will discuss basic HR round questions and discuss salary.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare c++ well as many questions will be based on that

Centrica Interview FAQs

How many rounds are there in Centrica Software Engineer Intern interview?
Centrica interview process usually has 1 rounds. The most common rounds in the Centrica interview process are Video Call.

Tell us how to improve this page.

Centrica Software Engineer Intern Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Tata Group Interview Questions
4.2
 • 358 Interviews
Adani Power Interview Questions
3.9
 • 218 Interviews
Adani Group Interview Questions
3.9
 • 187 Interviews
Tata Power Interview Questions
3.9
 • 162 Interviews
NTPC Interview Questions
4.2
 • 158 Interviews
Bharat Petroleum Interview Questions
4.1
 • 148 Interviews
Suzlon Group Interview Questions
4.1
 • 129 Interviews
Torrent Power Interview Questions
3.7
 • 126 Interviews
View all
Compare Centrica with

Adani Group

3.9
Compare

Tata Group

4.2
Compare

Reliance Industries

4.0
Compare

Bharat Petroleum

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