Upload Button Icon Add office photos

Filter interviews by

Scomi Group Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

Interview experience
5
 Excellent
Difficulty level
 Easy
Duration
 2-4 weeks
Result
Selected  Selected

I applied via Approached by Company and was interviewed in Sep 2024.

2 Interview Rounds

1

Technical Round (3 Questions)

  • Q1. Clouds are just water vapor, so why do they move?
  • Q2. What keeps space empty?
  • Q3. Why don't the gases in the atmosphere separate out according to mass
2

Technical Round (2 Questions)

  • Q1. Where does the atmosphere end? Where is the edge of space?
  • Q2. Why does the air only contain water vapor and not other kinds of vapors?

Interview Preparation Tips

Interview preparation tips for other job seekers - I'm currently need to job

Area Head Interview Questions

Castrol user image Anonymous

posted on 18 Dec 2024

Interview experience
5
 Excellent
Difficulty level
 Hard
Duration
 2-4 weeks
Result
Selected  Selected

I applied via Company Website and was interviewed in Nov 2024.

2 Interview Rounds

1

HR Round (2 Questions)

  • Q1. Asking question about work of lubricant and type of grade
  • Q2. Previous work
2

Technical Round (2 Questions)

  • Q1. Asking question on engine related
  • Q2. Asking about latest technology in automobile
Interview experience
5
 Excellent
Difficulty level
 -
Duration
 -
Result
 -

1 Interview Round

1

Technical Round (5 Questions)

  • Q1. IP rating of equipment?
  • Q2. Which ISO is require for safety in H2S environmental
  • Q3. Why HVAC IS USED.
  • Q4. What is the Layer protection
  • Q5. What is Ring topology

Interview Preparation Tips

Interview preparation tips for other job seekers - All is good
Interview experience
5
 Excellent
Difficulty level
 Easy
Duration
 4-6 weeks
Result
Selected  Selected

I applied via Approached by Company and was interviewed in Sep 2024.

1 Interview Round

1

Technical Round (5 Questions)

  • Q1. Reverse the string
  • Q2. Merge sort on infinite linklist
  • Q3. Operating systems
  • Q4. System designing
  • Q5. Object oriented programming

General Manager - Quality Management Interview Questions

Doosan Power Systems user image Karunanithy Posanguraja

posted on 20 Nov 2024

Interview experience
5
 Excellent
Difficulty level
 -
Duration
 -
Result
 -

3 Interview Rounds

1

Assignment Round

Relevant area synapses of preparation through PPT

2

Technical Round (2 Questions)

  • Q1. Relevant field with the technical
  • Q2. Experience in relevant previously work areaS
3

HR Round (2 Questions)

  • Q1. Salary Part with negotiation
  • Q2. Medical check up

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your present work areas with experience
Interview experience
 -
Difficulty level
 Moderate
Duration
 2-4 weeks
Result
Selected  Selected

I applied via Recruitment Consulltant and was interviewed before Dec 2020.

4 Interview Rounds

1

Technical Round (2 Questions)

  • Q1. Pls take my interview
  • Q2. Consider my resume
2

HR Round (2 Questions)

  • Q1. Pls take my resume
  • Q2. Pls consider my resume
3

Personal Interview Round (3 Questions)

  • Q1. Any types& Pipeline Engineering
  • Q2. NDT related & quality related
  • Q3. Pipeline field CGD and cross country related
4

Technical Round (2 Questions)

  • Q1. Pls take my resume
  • Q2. Pls consider my resume

Interview Preparation Tips

Interview preparation tips for other job seekers - Technical & non-technical
Interview experience
5
 Excellent
Difficulty level
 Moderate
Duration
 Less than 2 weeks
Result
 Not Selected

I applied via Naukri.com and was interviewed in May 2024.

3 Interview Rounds

1

HR Round (1 Question)

  • Q1. Ask Current working details & Notice period
2

Technical Round (2 Questions)

  • Q1. What about Lpg gas?
  • Q2. Do you have any B2C EXPERIENCE
3

One-on-one Round (5 Questions)

  • Q1. Ask Previous company job responsibilities
  • Q2. How many team members worked under you
  • Q3. How handle your team members
  • Q4. Are you ready to field marketing
  • Q5. Are you ready for travel overall india

Sr.Surveyor Transmission Lines Interview Questions

R.S. Infraprojects user image Anonymous

posted on 25 Jun 2024

Interview experience
5
 Excellent
Difficulty level
 -
Duration
 -
Result
 -

1 Interview Round

1

Technical Round (4 Questions)

  • Q1. Knowledge about survey equipments?
  • Q2. Knowledge about profiling and other proposals?
  • Q3. Knowledge about contour and benching in transmission line?
  • Q4. Which is required for start survey at starting point?
Interview experience
5
 Excellent
Difficulty level
 Moderate
Duration
 4-6 weeks
Result
Selected  Selected

I applied via Naukri.com and was interviewed in Feb 2024.

2 Interview Rounds

1

One-on-one Round (7 Questions)

  • Q1. Tell me about yourself?
  • Q2. What was your work profile and KRA in previous organisation?
  • Q3. How did you overcome through challenges?
  • Q4. What were the biggest challenges & your achievements?
  • Q5. What is your strength?
  • Q6. Who are you or what are the specialty in you that makes you fit to the job profile ?
  • Q7. What are the additional skills which you have like Excel,Power Point,World and how will you rate your self out of 10.
2

HR Round (4 Questions)

  • Q1. What is your qualifications?
  • Q2. What were your work profile?
  • Q3. What is your CTC?
  • Q4. What’s expected CTC ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and present your self in-front of interviewer with strong knowledge and good communication which should be relevant to the profile.

Just rigid on your salary demand and communication with HR regarding your CTC can take up to 1 month so keep patience to get the good hike.
Interview experience
4
 Good
Difficulty level
 Moderate
Duration
 Less than 2 weeks
Result
Selected  Selected

I applied via Company Website and was interviewed in Mar 2024.

3 Interview Rounds

1

Aptitude Test Round

Verbal Reasoning Test,evaluates the ability to comprehend written information, analyze arguments, and draw logical conclusions. It's useful for roles that require strong communication and critical thinking skills.

2

Technical Round (1 Question)

  • Q1. Explain the difference between procedural programming and object-oriented programming (OOP). Provide examples of each?
3

Coding Test Round

Function in Python that takes a list of integers as input and returns the sum of all the even numbers in the list.
# Input
numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

# Output
# Sum of even numbers: 2 + 4 + 6 + 8 + 10 = 30
print(sum_even_numbers(numbers)) # Output: 30
Solution:
def sum_even_numbers(numbers):
"""
Calculate the sum of all even numbers in a list.

Args:
numbers (list of int): List of integers.

Returns:
int: Sum of all even numbers in the list.
"""
return sum(num for num in numbers if num % 2 == 0)

# Test the function
numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
print(sum_even_numbers(numbers)) # Output: 30

Interview Preparation Tips

Topics to prepare for Al Turki Enterprises Tele Marketing Executive interview:
  • Apptitude test
  • Coding
Interview preparation tips for other job seekers - Don't underestimate the power of networking. Reach out to professionals in your field, attend industry events, and join online communities. Networking can lead to valuable connections and job opportunities.

Scomi Group Interview FAQs

How to prepare for Scomi Group 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 Scomi Group. The most common topics and skills that interviewers at Scomi Group expect are People Management, Troubleshooting Skills, Analytical, Auditing and Business Development.

Tell us how to improve this page.

Interview Questions from Similar Companies

Torrent Gas Interview Questions
3.2
 • 48 Interviews
VA Tech Wabag Interview Questions
3.9
 • 45 Interviews
Mahanagar Gas Interview Questions
4.3
 • 27 Interviews
Adani Gas Interview Questions
3.3
 • 25 Interviews
Livguard Interview Questions
4.1
 • 24 Interviews
View all

Scomi Group Reviews and Ratings

based on 6 reviews

1.9/5

Rating in categories

1.1

Skill development

1.8

Work-Life balance

1.8

Salary & Benefits

1.8

Job Security

1.1

Company culture

1.4

Promotions/Appraisal

1.5

Work Satisfaction

Explore 6 Reviews and Ratings
Compare Scomi Group with

VA Tech Wabag

3.9
Compare

Doosan Power Systems

4.2
Compare

Livguard

4.1
Compare

R.S. Infraprojects

3.9
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview