Upload Button Icon Add office photos

Filter interviews by

Signode Associate Engineer Interview Questions and Answers

Updated 9 Mar 2024

Signode Associate Engineer Interview Experiences

1 interview found

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

I applied via Company Website and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Machine parts name

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Technical skill
  • Q2. Family background

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Technical assesment was there in first round

Round 2 - One-on-one 

(1 Question)

  • Q1. Interview with national manager, CTO and fellow developer
Round 3 - HR 

(1 Question)

  • Q1. Meeting with regional head of IT department
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Questions were asked on Recursive programming
  • Q2. What is the output of this? static void Main(string[] args) { DivideNumber(233) } static void DivideNumber(int n) { if(n>=10) { DivideNumber(n/10); } Console.Write(n/10) }
  • Ans. 

    The output will be 23323

    • The DivideNumber method recursively divides the input number by 10 until it is less than 10

    • The Console.Write statement prints the result of n/10 each time the method is called

  • Answered by AI
  • Q3. Write Code If Input is 123, output should be "One Hundred Twenty Three";
  • Ans. 

    Convert numeric input to words in English

    • Break down the input number into hundreds, tens, and ones place

    • Use a dictionary or array to map numbers to their corresponding words

    • Handle special cases like teens and tens separately

  • Answered by AI

Skills evaluated in this interview

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic questions people struggle to speak English though
Round 2 - HR 

(1 Question)

  • Q1. Tell me about yourself.
  • Ans. 

    I am a highly motivated and experienced professional with a strong background in the field.

    • I have a Bachelor's degree in Business Administration.

    • I have over 5 years of experience working as an Associate in a reputable company.

    • I am skilled in data analysis, project management, and client relations.

    • I have successfully led a team of 10 members to achieve project goals within tight deadlines.

    • I am a quick learner and adapt

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I guess someone's who's been rejected in a BPO with a reason of communication will clear this organisations interview
Interview experience
3
Average
Difficulty level
Easy
Process Duration
-
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude is easy and if your basics are strong

Round 2 - Coding Test 

Coding round has 2 parts realtime coding and coding

Round 3 - Technical 

(2 Questions)

  • Q1. Asked about projects
  • Q2. Asked about oop concept
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - HR 

(1 Question)

  • Q1. Qualifications and Experience
Round 3 - Technical 

(1 Question)

  • Q1. All about my Working experience

I appeared for an interview in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 minutes
Round difficulty - Easy

The test had it's webcam on, we were not allowed to go out of the frame.

  • Q1. 

    Nth Fibonacci Number Problem Statement

    Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1.

    Input:

    ...
  • Ans. 

    The program calculates the Nth Fibonacci number using a recursive formula.

    • The Fibonacci series starts with 1, 1, and each subsequent number is the sum of the two preceding numbers.

    • The program uses a recursive function to calculate the Nth Fibonacci number.

    • The time complexity of the program is O(2^N), which can be optimized using memoization or dynamic programming.

  • Answered by AI
  • Q2. 

    Longest Consecutive Sequence Problem Statement

    You are provided with an unsorted array/list ARR of N integers. Your task is to determine the length of the longest consecutive sequence present in the array...

  • Ans. 

    The task is to find the length of the longest consecutive sequence in an unsorted array of integers.

    • Sort the array to bring consecutive numbers together

    • Iterate through the sorted array and keep track of the current consecutive sequence length

    • Update the maximum length if a longer sequence is found

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

The interview was online from home.

  • Q1. 

    Reverse the String Problem Statement

    You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string.

    Example:

    Input:
    STR = "abcde"
    Output:
    "e...
  • Ans. 

    The task is to reverse a given string containing lowercase letters, uppercase letters, digits, and special characters.

    • Iterate through the string from the last character to the first character and append each character to a new string.

    • Alternatively, you can use built-in string reversal functions or methods available in your programming language.

    • To solve the follow-up question with O(1) space complexity, you can use a tw...

  • Answered by AI
Round 3 - HR 

Round duration - 20 minutes
Round difficulty - Easy

This was last round. In this round interviewer ask about me and what i know about company. Also he ask about my projects as well as my future goals . 
The interviewer was very understanding and supportive.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in GurgaonEligibility criteriaNoGreyOrange interview preparation:Topics to prepare for the interview - Data Structures, Object-Oriented Programming, Algorithms, Dynamic programming, Graphs, Operating Systems and Database Management System,Java, MySQL, HTML, CSS, JavaScript, Nodejs, PythonTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Find a good course, and first clear all your fundamentals and implementation of every data structure. You should be thorough with their time as well as space complexities. 
Tip 2 : Upon clearing the fundamentals, select a platform where you have a large no of questions, also whose test cases are good. eg. LeetCode, InterviewBit or Codezen. Go and complete 300-400 questions.
Tip 3 : Also whenever you're not able to solve the problem, check out the editorial and then re-attempt it again. Also, check the discussion if there is some good solution to the same problem.
Tip 4 : For OOPS, DS and programming, I recommend Codezen, Leetcode, InterviewBit and GeeksforGeeks.
Tip 5 : For OS, DBMS and Computer Network, I recommend GateSmasher, Knowledge Gate and TutorialsPoint.

Application resume tips for other job seekers

Tip 1 : Resume should contain facts, numbers, and data comparison.
Tip 2 : Mention only those projects and internships in your resume that you are comfortable with, that is, you can explain to the interviewee.
Tip 3 : Technical achievements in the field you're applying to, would be good.
Tip 4 : DO NOT FAKE THINGS, the interviewer is smart enough.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

2 dsa questions need to be implemented in 1hr

Round 2 - Technical 

(1 Question)

  • Q1. Projects you have worked on. 1. vector implementation in C++
  • Ans. 

    Implemented vector data structure in C++

    • Used templates to create a generic vector class

    • Implemented basic vector operations like push, pop, insert, erase

    • Optimized vector resizing by using exponential growth

    • Used iterators to traverse the vector elements

    • Implemented vector algorithms like sort and binary search

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Compensation, expected and other document submitting.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for dsa and puzzles. Communicate with interviewer

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

It started with basic introduction, than move ahead with Java, Spring boot question in the end, he asked one leetcode medium question based on DP . Ques : Find a minimum number of jumps required to reach the end of the array, and each index , it can jump arr[index] time at max, you need to calculate minimum number of steps required to reach at the end.

Interview Preparation Tips

Interview preparation tips for other job seekers - Java , Spring boot and Data structures

Signode Interview FAQs

How many rounds are there in Signode Associate Engineer interview?
Signode interview process usually has 1 rounds. The most common rounds in the Signode interview process are Technical.

Tell us how to improve this page.

Signode Associate Engineer Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

Knorr-Bremse Interview Questions
3.9
 • 55 Interviews
Grey Orange Interview Questions
3.2
 • 38 Interviews
McCain Foods Interview Questions
4.0
 • 31 Interviews
RAK Ceramics Interview Questions
4.0
 • 29 Interviews
Sulzer Interview Questions
3.8
 • 27 Interviews
Buhler Interview Questions
3.9
 • 26 Interviews
Rolls-Royce Interview Questions
3.8
 • 26 Interviews
Alpla Interview Questions
3.9
 • 25 Interviews
View all
Signode Associate Engineer Salary
based on 9 salaries
₹2.4 L/yr - ₹4.1 L/yr
43% less than the average Associate Engineer Salary in India
View more details

Signode Associate Engineer Reviews and Ratings

based on 7 reviews

3.6/5

Rating in categories

3.4

Skill development

3.6

Work-life balance

3.4

Salary

3.6

Job security

3.5

Company culture

3.0

Promotions

3.5

Work satisfaction

Explore 7 Reviews and Ratings
Senior Executive
72 salaries
unlock blur

₹3 L/yr - ₹11.6 L/yr

Assistant Manager
57 salaries
unlock blur

₹7 L/yr - ₹17.2 L/yr

Executive
27 salaries
unlock blur

₹2.5 L/yr - ₹6 L/yr

Design Engineer
20 salaries
unlock blur

₹3 L/yr - ₹7.8 L/yr

Service Engineer
20 salaries
unlock blur

₹2 L/yr - ₹5 L/yr

Explore more salaries
Compare Signode with

Knorr-Bremse

3.9
Compare

Gestamp

3.7
Compare

RAK Ceramics

4.0
Compare

McCain Foods

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