Upload Button Icon Add office photos

Filter interviews by

Global Pipeline Services System Software Engineer Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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

I applied via Approached by Company and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Asked basic C questions with pointers and arrays.
  • Q2. 2 sum problem , dutch national flag problem

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was mostly about C , OS concepts such memory management , TCP/ IP stack questions.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Apti+ coding round as a single test in a day

Round 2 - One-on-one 

(2 Questions)

  • Q1. What is stack , queue
  • Ans. 

    Stack and queue are data structures used to store and retrieve data in a specific order.

    • Stack is a Last In First Out (LIFO) data structure where elements are added and removed from the same end.

    • Queue is a First In First Out (FIFO) data structure where elements are added at the rear and removed from the front.

    • Example of stack: Undo feature in text editors.

    • Example of queue: Print job queue in a printer.

  • Answered by AI
  • Q2. Give examples of some data structures, real life examples of stack queue etc
  • Ans. 

    Data structures like stack and queue have real-life applications in various fields.

    • Stack: browser history, undo functionality in text editors

    • Queue: waiting in line at a grocery store, printer queue

    • Linked List: train cars linked together, playlist in music apps

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Simple question and very basic.

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is abstract class
  • Ans. 

    An abstract class is a class that cannot be instantiated and is meant to be subclassed.

    • An abstract class can have abstract and non-abstract methods.

    • Abstract methods have no implementation and must be implemented by the subclass.

    • A subclass can only extend one abstract class but can implement multiple interfaces.

    • Example: Animal is an abstract class with abstract method 'makeSound'. Dog and Cat are subclasses that impleme

  • Answered by AI
  • Q2. Difference in abstract and interface
  • Ans. 

    Abstract is a class while interface is a contract. Abstract can have implementation while interface cannot.

    • Abstract class can have constructors while interface cannot

    • Abstract class can have non-abstract methods while interface cannot

    • A class can implement multiple interfaces but can only inherit from one abstract class

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. What is your Location Preference?
  • Q2. Would you like to work Offline after pandemic is over

Interview Preparation Tips

Interview preparation tips for other job seekers - Simple oops concepts and sql concepts
Classes,inheritance, abstract class,delete and truncate difference,views,primary key,joins

Skills evaluated in this interview

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

I applied via campus placement at Jawaharlal Nehru Technological University (JNTU) and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Coding Test 

1 coding algo question and MCQ

Round 2 - Technical 

(2 Questions)

  • Q1. Kth element from last in linked list
  • Ans. 

    To find the Kth element from the end in a linked list, we can use the two-pointer technique.

    • Use two pointers, one moving K steps ahead of the other

    • When the first pointer reaches the end, the second pointer will be at the Kth element from the end

    • Handle edge cases like K being larger than the length of the linked list

  • Answered by AI
  • Q2. Search in a row wise column wise sorted 2D array
  • Ans. 

    Search for a target value in a row-wise and column-wise sorted 2D array.

    • Start from the top right corner of the array

    • If the target value is less than the current element, move left

    • If the target value is greater than the current element, move down

    • Repeat until the target value is found or the boundaries of the array are reached

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Amazon System Software Engineer interview:
  • Leetcode
Interview preparation tips for other job seekers - Be confident during interview and communicate with the interviewer

Skills evaluated in this interview

I applied via Company Website and was interviewed in Feb 2022. There were 3 interview rounds.

Round 1 - Coding Test 

We will have6-8 codes to write atleast 1 or 2 testcases should be cleared

Round 2 - Aptitude Test 

They dont focus much on this you can just consider as formality and hit the right options

Round 3 - Technical 

(1 Question)

  • Q1. They asked all about coding like opps concept theory and they share screen and ask us to write code

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and don't attend interviews unless you believe there is something ready for you.

I applied via Company Website and was interviewed in May 2022. There were 2 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 

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn the basic skills. I hope strong basic skills and little experience makes huge confident.

I applied via LinkedIn and was interviewed in Nov 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What is science?
  • Ans. 

    Science is the systematic study of the natural world through observation and experimentation.

    • Science involves the use of the scientific method to test hypotheses and theories

    • It aims to explain natural phenomena and make predictions about future events

    • Examples of scientific fields include physics, biology, chemistry, and astronomy

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview is a majorly stress test .It lasted for about 1hour 10 minutes. The interviewer wants to test our communication skills and knowledge most of questions to me are related to my graduation. Interviewer recheck the resume to ensure that you are best for the posit6

I applied via campus placement at Vishwakarma Institute of Technology, Pune and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

12 Questions

  • Q1. What is slew rate?
  • Ans. 

    Slew rate is the rate at which an electrical signal changes over time.

    • Slew rate measures how quickly the voltage of a signal can change.

    • It is typically expressed in volts per microsecond (V/μs).

    • A high slew rate indicates a signal can change rapidly, while a low slew rate indicates a slower change.

    • Slew rate is important in applications where fast signal transitions are required, such as in amplifiers or digital circuits

  • Answered by AI
  • Q2. What is oscillator?
  • Ans. 

    An oscillator is an electronic circuit that produces a periodic, oscillating electronic signal.

    • Oscillators are used in many electronic devices, such as radios, televisions, and computers.

    • They are also used in clocks, watches, and other timekeeping devices.

    • There are many different types of oscillators, including crystal oscillators, LC oscillators, and RC oscillators.

    • Oscillators can produce signals at a wide range of fr...

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

    Gain is the increase in signal power or amplitude produced by an amplifier or other electronic device.

    • Gain is a measure of amplification.

    • It is the ratio of output power to input power.

    • It can be expressed in decibels (dB).

    • For example, if an amplifier has a gain of 10, it will increase the input signal by a factor of 10.

    • Gain is an important parameter in designing and analyzing electronic circuits.

  • Answered by AI
  • Q4. What is flip-flop?
  • Ans. 

    A flip-flop is a digital circuit that can store a single bit of information.

    • It has two stable states: 0 and 1.

    • It can be used to store data, count pulses, and synchronize digital circuits.

    • Examples include D flip-flop, JK flip-flop, and T flip-flop.

  • Answered by AI
  • Q5. What is gsm?
  • Ans. 

    GSM stands for Global System for Mobile Communications, a standard for mobile communication networks.

    • GSM is a digital cellular network technology used for voice and data communication.

    • It was first introduced in 1991 and is now widely used in over 200 countries.

    • GSM uses a SIM card to identify and authenticate users on the network.

    • It operates on different frequency bands depending on the region.

    • GSM has been largely repla...

  • Answered by AI
  • Q6. What is hamming distance?
  • Ans. 

    Hamming distance is the number of positions at which the corresponding symbols are different between two strings of equal length.

    • Hamming distance is used in coding theory, information theory, and cryptography.

    • It is also used in DNA analysis to measure the genetic distance between two sequences.

    • For example, the Hamming distance between '10101' and '11100' is 2.

    • It can be calculated by comparing each symbol in the two str...

  • Answered by AI
  • Q7. What is resonance?
  • Ans. 

    Resonance is the phenomenon of an object vibrating at its natural frequency due to the influence of an external force.

    • Resonance occurs when an object is subjected to an external force that matches its natural frequency.

    • This causes the object to vibrate with increasing amplitude.

    • Examples of resonance include a tuning fork vibrating when struck, a wine glass shattering due to a high-pitched sound, and a bridge collapsing...

  • Answered by AI
  • Q8. What is digital communication?
  • Ans. 

    Digital communication is the transmission of information through digital signals.

    • Digital communication uses binary code to represent data.

    • It can be done through various mediums such as wires, fiber optics, or wireless signals.

    • Examples include email, text messaging, and video conferencing.

    • Digital communication allows for faster and more efficient transmission of information compared to analog communication.

  • Answered by AI
  • Q9. Write a program to reverse a string?
  • Ans. 

    Program to reverse a string

    • Create an empty string to store the reversed string

    • Iterate through the original string from end to start

    • Append each character to the new string

    • Return the reversed string

  • Answered by AI
  • Q10. Write a program to print name?
  • Ans. 

    A program to print name using an array of strings.

    • Declare an array of strings with the name.

    • Assign the name to the array.

    • Loop through the array and print each string.

  • Answered by AI
  • Q11. Tell me more about your rescue team?
  • Q12. Aptitude questions on ratio and proportion,mixture and allegation, Simple interest and common interest.

Interview Preparation Tips

Interview preparation tips for other job seekers - My interview went 1 hr and 15 min long.
for the first 45 min it was like question answer round. the interviewer asked questions about all subjects in ENTC Engg. but as i have done diploma and also have a good knowledge of all subjects in ENCT Engg. also asked me to solve some aptitude questions so it went good.
after that he asked me about my participation in social activities and also about my family background. and then gave feedback in which he told me to keep that always learning attitude constant even after graduation.
you need to stay calm, honest and confident and you can easily ace the interview if you that potential of holding a strong knowledge of the field you are studying in.
i thought they will ask about IT subjects but surprisingly they asked about the field i was studying in.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What is your expectation
  • Q2. What is your relevant exp

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and technically strong

I applied via campus placement at Andhra University and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

15 Questions

  • Q1. Introduce yourself with yours goals for 10 years
  • Q2. Tell about your project,what are the conflicts faced,Have you taken the advise of the project head in the reviews and implemented them.
  • Q3. What is difference between dbms and rdbms
  • Ans. 

    DBMS is a software to manage databases while RDBMS is a type of DBMS that uses a relational model.

    • DBMS stands for Database Management System while RDBMS stands for Relational Database Management System.

    • DBMS can manage any type of database while RDBMS uses a relational model to manage data.

    • RDBMS enforces ACID properties (Atomicity, Consistency, Isolation, Durability) while DBMS may not.

    • Examples of DBMS include MongoDB, ...

  • Answered by AI
  • Q4. What is cloud computing
  • Ans. 

    Cloud computing is the delivery of computing services over the internet.

    • Cloud computing allows users to access data and applications from anywhere with an internet connection.

    • It offers scalability, flexibility, and cost-effectiveness compared to traditional on-premises computing.

    • Examples include Amazon Web Services, Microsoft Azure, and Google Cloud Platform.

  • Answered by AI
  • Q5. You are interested in sports then why did not you take that as your career
  • Q6. In between the single player games and group games what will you prefer
  • Ans. 

    I enjoy both single player and group games, depending on my mood and the type of game.

    • I prefer single player games when I want to relax and enjoy a story-driven experience.

    • I enjoy group games when I want to socialize and collaborate with others.

    • Some examples of single player games I enjoy are The Witcher 3 and Skyrim.

    • Some examples of group games I enjoy are Overwatch and League of Legends.

  • Answered by AI
  • Q7. Why do you preferred software when your hardware branch.
  • Q8. Bubble sort algorithm
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Bubble sort has a time complexity of O(n^2)

    • It is not efficient for large datasets

    • It is easy to implement and understand

    • Example: [5, 3, 8, 4, 2] -> [2, 3, 4, 5, 8]

  • Answered by AI
  • Q9. How we embed the javascript in css
  • Ans. 

    JavaScript cannot be embedded in CSS. They are separate languages used for different purposes.

    • CSS is used for styling and layout of web pages

    • JavaScript is used for adding interactivity and functionality to web pages

    • JavaScript can be included in HTML using