Upload Button Icon Add office photos

Filter interviews by

Bluescope Information Technology Software Analyst Interview Questions and Answers

Updated 11 Dec 2023

Bluescope Information Technology Software Analyst Interview Experiences

1 interview found

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

I applied via Indeed and was interviewed in Jun 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 - Technical 

(1 Question)

  • Q1. Technical Questions on Flutter Basics
Round 3 - Coding Test 

Coding test to test the problematic skills in flutter

Round 4 - Behavioral 

(1 Question)

  • Q1. Discussed on Projects handled previously

Interview Preparation Tips

Topics to prepare for Bluescope Information Technology Software Analyst interview:
  • Basics of Flutter

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed in Jul 2022. 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 - Aptitude Test 

Aptitude test is very easy and in my case it was an online test.

Round 3 - Technical 

(2 Questions)

  • Q1. Interviewer asked me to make a code.
  • Q2. Interviewer asked me What is DBMS?
Round 4 - HR 

(3 Questions)

  • Q1. Are you ready to re-allocate?
  • Q2. Tell me about your strength and weakness.
  • Q3. Why should we hire you?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and confident and all the best for your placement drive.
Interview experience
5
Excellent
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 - HR 

(3 Questions)

  • Q1. Hr is one in which they will check ur mental strength in the interview.
  • Q2. What is ur weakness and strength.
  • Q3. Tell abt ur previous company.

Interview Preparation Tips

Interview preparation tips for other job seekers - Have good communication skills and be confident in interview.

I applied via Recruitment Consultant and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Array sorting using bubble sort , indexing , broken links handling.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just touch base with your basics and you should do fine.

I applied via Company Website

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

Aptitude and resoninh test
Coding test ,

Round 3 - Coding Test 

Coding test,coding skills in all languages

Interview Preparation Tips

Interview preparation tips for other job seekers - Have excellent communication skills
And coding and technical skills

I applied via Walk-in and was interviewed in Mar 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What I'd c language ?
  • Ans. 

    C is a general-purpose, procedural programming language.

    • C was developed by Dennis Ritchie at Bell Labs in 1972.

    • It is widely used for system programming, embedded systems, and game development.

    • C is a compiled language and has a low-level memory manipulation feature.

    • It has influenced many other programming languages such as C++, Java, and Python.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Take a fast interview process.Take rounds 2 to 3

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. They ask few basic. Question on core java...and basic program On collection framework.diffrence between sets and mapdand list..singlton design patterns.oops concept..
  • Q2. Give a any basic program and in same prog.ask to write reverse string,even odd,gretest no...such a basic program only

I applied via Naukri.com and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. What was the architecture used in your project?
  • Q2. What is the IDisposal? Give an example used in the applicstion.
  • Ans. 

    IDisposable is an interface used to release unmanaged resources.

    • It is used to release unmanaged resources like file handles, database connections, etc.

    • It has a single method called Dispose() which is used to release the resources.

    • It is implemented by classes that use unmanaged resources and needs to be disposed of.

    • Example: SqlConnection class implements IDisposable to release the database connection.

    • Example: FileStream...

  • Answered by AI
  • Q3. What is Dependency Injection and how can we inplement those?
  • Ans. 

    Dependency Injection is a design pattern that allows objects to receive dependencies rather than creating them internally.

    • Dependency Injection is used to reduce tight coupling between software components.

    • It allows for easier testing and maintenance of code.

    • There are three types of Dependency Injection: Constructor Injection, Setter Injection, and Interface Injection.

    • Frameworks like Spring and Angular provide built-in s

  • Answered by AI
  • Q4. Write the code to concatenate the value with comma in the given array. int[] arr = {1, 2, 3,4,5}
  • Ans. 

    Concatenate the values in the given integer array with comma.

    • Convert the integer array to string array using Arrays.toString()

    • Use String.join() method to concatenate with comma

  • Answered by AI
  • Q5. Explaination of Interface and Abstract classes.
  • Q6. Is it possible to instanciate the abstract class? Explain.
  • Ans. 

    No, abstract classes cannot be instantiated.

    • Abstract classes are incomplete and cannot be instantiated on their own.

    • They can only be used as a base class for other classes.

    • Instantiation of an abstract class will result in a compile-time error.

    • However, concrete classes that inherit from the abstract class can be instantiated.

  • Answered by AI
  • Q7. What is Solid Principle? Give the examples used in your application.
  • Ans. 

    SOLID is a set of principles for object-oriented programming to make software more maintainable and scalable.

    • S - Single Responsibility Principle

    • O - Open/Closed Principle

    • L - Liskov Substitution Principle

    • I - Interface Segregation Principle

    • D - Dependency Inversion Principle

    • Example: Using Single Responsibility Principle to separate UI and business logic

    • Example: Using Open/Closed Principle to extend functionality without mo

  • Answered by AI
  • Q8. Explain about the design pattern used in your application.
  • Ans. 

    We used the Model-View-Controller (MVC) design pattern in our application.

    • MVC separates the application into three interconnected components: the model, the view, and the controller.

    • The model represents the data and business logic of the application.

    • The view displays the data to the user.

    • The controller handles user input and updates the model and view accordingly.

    • MVC promotes separation of concerns and modularity.

    • Examp...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare strongly whatever you have worked practically in your projects.

Skills evaluated in this interview

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

Interview Questionnaire 

4 Questions

  • Q1. There were 3 technical rounds and 2 techno-managerial rounds conducted for the post of Senior Software Engineer. The techno-managerial rounds were straight forward with an aim to understand your comfort le...
  • Q2. In technical round 1, there were questions from Core Java, Microservices, DB, and from few techs that I had mentioned in my resume especially the CI/CD work that I have been doing.
  • Q3. In tech round 2, they started with asking questions from the Java collections framework, Kafka, Jenkins, Docker, Git, etc. Few Ques: 1. Internals of HashMap. 2. Programming ques with arrays, String, and ha...
  • Q4. Tech round 3 was to test if I can work as a manager in the team, so they gave me scenario-based questions like designing a movie ticket booking system using spring boot. And what all steps/entities I would...

Interview Preparation Tips

Interview preparation tips for other job seekers - My advice is to keep honest with the interviewer, do your homework well. If you have worked on 5 technologies in your last project make sure you brush your concepts b4 your interview. Your code doesn't have to be working if you can get the logic right and create an algorithm you can proceed. Just make sure you are verbal during the coding part make sure the interviewer is on the same page and understands what you are writing b4 you write anything. That would be all, best of luck. :)

I applied via Recruitment Consultant and was interviewed in Apr 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Simple Core Java Basic Questions, Oops Concepts and Project Discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was good, I gave all the answers, then I got selected and in 5-7 days all the rounds were completed and got the mail of selection. So in my opinion it was a great experience ☺️

Bluescope Information Technology Interview FAQs

How many rounds are there in Bluescope Information Technology Software Analyst interview?
Bluescope Information Technology interview process usually has 4 rounds. The most common rounds in the Bluescope Information Technology interview process are Resume Shortlist, Technical and Coding Test.
How to prepare for Bluescope Information Technology Software Analyst interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Bluescope Information Technology. The most common topics and skills that interviewers at Bluescope Information Technology expect are Deployment, JSP, Java, OOD and OOPS.

Tell us how to improve this page.

Bluescope Information Technology Software Analyst Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Bluescope Information Technology Software Analyst Salary
based on 16 salaries
₹3.4 L/yr - ₹7.2 L/yr
37% less than the average Software Analyst Salary in India
View more details

Bluescope Information Technology Software Analyst Reviews and Ratings

based on 5 reviews

4.0/5

Rating in categories

3.4

Skill development

2.5

Work-life balance

3.5

Salary

4.7

Job security

3.3

Company culture

3.3

Promotions

3.2

Work satisfaction

Explore 5 Reviews and Ratings
Software Analyst
16 salaries
unlock blur

₹3.4 L/yr - ₹7.2 L/yr

Software Developer
7 salaries
unlock blur

₹2.5 L/yr - ₹4.5 L/yr

System Analyst
6 salaries
unlock blur

₹2.1 L/yr - ₹5.2 L/yr

Project Lead
5 salaries
unlock blur

₹4.3 L/yr - ₹6 L/yr

Junior Software Analyst
5 salaries
unlock blur

₹3 L/yr - ₹4 L/yr

Explore more salaries
Compare Bluescope Information Technology 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