Upload Button Icon Add office photos

Filter interviews by

Qmex Steel Construction Full Stack Developer 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
More than 8 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jun 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

All good nothing much

Round 2 - Coding Test 

2 Question will be given you have answer them

Round 3 - communication 

(2 Questions)

  • Q1. English Speaking skills
  • Q2. Fill in the blanks
Round 4 - Technical 

(1 Question)

  • Q1. About python/java based on your resume
Round 5 - HR 

(1 Question)

  • Q1. Basic HR Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - All are good, but onboarding will be late.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Rest api standards
  • Q2. Client server communication
  • Q3. Framework related questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

90 min, DSA, hacker platform 3 question

Round 2 - Technical 

(2 Questions)

  • Q1. 2D DP WITH SPACE OPTIMIZATION
  • Ans. 

    2D DP with space optimization is a technique to reduce memory usage while solving dynamic programming problems.

    • Use a 1D array instead of a 2D array to store values in dynamic programming problems.

    • Update the values in the 1D array based on the dependencies between subproblems.

    • Example: Solving the longest common subsequence problem using 2D DP with space optimization.

  • Answered by AI
  • Q2. GRAPH WITH BFS ON TREE
  • Ans. 

    Breadth First Search (BFS) on a tree involves visiting nodes level by level starting from the root.

    • Start by visiting the root node, then visit all its children before moving on to the next level

    • Use a queue data structure to keep track of nodes to visit next

    • Repeat the process until all nodes have been visited

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. Basic C++/OOPS concepts like RAII. Types of constructors/destructors etc. very theoretical
  • Q2. Palindrome check
  • Q3. Lambda function program
  • Ans. 

    A lambda function program demonstrates the use of anonymous functions in programming.

    • Lambda functions are anonymous functions that can be used as arguments to higher-order functions.

    • They are often used for short, one-off operations without the need to define a separate function.

    • Example: In Python, a lambda function can be used to sort a list of tuples based on the second element: sorted_list = sorted(list, key=lambda x

  • Answered by AI

Interview Preparation Tips

Topics to prepare for VVDN Technologies Senior Software Developer interview:
  • C++
Interview preparation tips for other job seekers - I was not successful in the interview because I was not sufficiently thorough with the concepts. With proper preparation, it should be manageable.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Explain Java oops concepts, exceptions, and java 8 features
  • Ans. 

    Java OOPs concepts include inheritance, polymorphism, encapsulation, and abstraction. Exceptions are used for error handling. Java 8 features include lambda expressions, streams, and functional interfaces.

    • OOPs concepts: Inheritance (e.g. class B extends class A), Polymorphism (e.g. method overloading, overriding), Encapsulation (e.g. private variables with public methods), Abstraction (e.g. abstract classes, interfaces...

  • Answered by AI

Skills evaluated in this interview

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

Aptitude questions basic for 1 hour

Round 2 - Coding Test 

Dsa basic to medium questions

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. C and security, protocol, middleware

Interview Preparation Tips

Interview preparation tips for other job seekers - Good
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Apr 2023. 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 - Coding Test 

There was a 1 hr coding test

Round 3 - Technical 

(2 Questions)

  • Q1. It was mostly from the resume
  • Q2. Remove duplicates from an array
  • Ans. 

    Remove duplicates from an array of strings

    • Iterate through the array and use a Set to store unique values

    • Convert the Set back to an array to get the final result

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be good with what's on resume

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

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 

(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

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

I applied via LinkedIn and was interviewed before Apr 2022. There were 5 interview rounds.

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 

It was easy, basic questions only.

Round 3 - Coding Test 

It basic question with sorting and puzzle

Round 4 - One-on-one 

(1 Question)

  • Q1. Interview questions were basically form basic of java
Round 5 - HR 

(1 Question)

  • Q1. Basic question as HR askew

Tell us how to improve this page.

Interview Questions from Similar Companies

Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
JSW Steel Interview Questions
3.9
 • 561 Interviews
UltraTech Cement Interview Questions
4.2
 • 527 Interviews
Tata Group Interview Questions
4.2
 • 357 Interviews
JLL Interview Questions
4.1
 • 334 Interviews
Bosch Interview Questions
4.2
 • 328 Interviews
Quest Global Interview Questions
3.6
 • 292 Interviews
View all
Compare Qmex Steel Construction with

Tech Mahindra

3.6
Compare

UltraTech Cement

4.2
Compare

JSW Steel

3.9
Compare

Indian Army

4.7
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