Upload Button Icon Add office photos

Filter interviews by

Qmex Steel Construction Sde1 Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Nov 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Why are you looking for the job change?
  • Ans. 

    I'm seeking new challenges and opportunities for growth that align with my career goals and aspirations.

    • Desire for professional growth: I'm looking to expand my skill set and take on more leadership responsibilities.

    • Seeking a better cultural fit: My current company has a different work culture than what I thrive in; I value collaboration and innovation.

    • Interest in new technologies: I'm excited about working with cuttin...

  • Answered by AI
  • Q2. Relevant technical questions, as per my current technology

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep it simple and be yourself. That's what the interviewers looked into. Also a thorough understanding of the technology is a must and that is what will help you in cracking the interview. You don't have to go in-depth, just the overview and what happens when is what they look for. Good communication skills is also an added incentive, something I always try to work on. All the best

I applied via Naukri.com and was interviewed before Mar 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Talk about any topic for atleast 3mins
  • Ans. 

    Exploring the impact of technology on education and how it shapes learning experiences for students today.

    • Technology enhances accessibility to educational resources, e.g., online courses from platforms like Coursera.

    • Interactive tools like Kahoot! and Quizlet make learning engaging and fun for students.

    • Virtual classrooms enable remote learning, allowing students to connect globally, especially during the pandemic.

    • Artifi...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with any topic and talk confidently with out stoping.

I applied via Recruitment Consulltant and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

1.It covers all aptitude topics, and English sentences
2.Essay writing
3.Coding

Round 2 - Technical 

(2 Questions)

  • Q1. In TR , languages which u mentioned in resume they will ask Basic programing Questions on Btech project They will say one idea , we need to tell the logic how can we develop (it may varies)
  • Q2. Testing questions Polymorphism, abstraction,constructors, SQL basics
Round 3 - HR 

(5 Questions)

  • Q1. What is your family background?
  • Q2. Why should we hire you?
  • Q3. Tell me about yourself.
  • Q4. What are your strengths and weaknesses?
  • Q5. Knowledge about updated technologies

Interview Preparation Tips

Interview preparation tips for other job seekers - Resume is important for your TR. Mention only languages u know well.

I applied via Walk-in and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What is C++
  • Ans. 

    C++ is a high-level programming language used for developing system software, application software, device drivers, and video games.

    • C++ is an extension of the C programming language.

    • It supports object-oriented programming concepts like classes, inheritance, polymorphism, and encapsulation.

    • C++ is used in developing operating systems, browsers, databases, and other software applications.

    • It is known for its performance an...

  • Answered by AI
  • Q2. What is Link List
  • Ans. 

    A data structure that stores a sequence of elements in a linear order.

    • Consists of nodes that contain data and a pointer to the next node.

    • Can be singly linked or doubly linked.

    • Used for implementing stacks, queues, and hash tables.

    • Example: Singly linked list - 1 -> 2 -> 3 -> null

    • Example: Doubly linked list - null <- 1 <-> 2 <-> 3 -> null

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't go

Skills evaluated in this interview

Interview Questionnaire 

15 Questions

  • Q1. What is difference between C and C++?
  • Ans. 

    C++ is an extension of C with object-oriented programming features.

    • C++ supports object-oriented programming while C does not.

    • C++ has classes and templates while C does not.

    • C++ has better support for exception handling than C.

    • C++ has a standard library while C does not.

    • C++ allows function overloading while C does not.

  • Answered by AI
  • Q2. What is difference between array and linked list?
  • Ans. 

    Arrays are contiguous blocks of memory while linked lists are made up of nodes that point to the next node.

    • Arrays have fixed size while linked lists can grow dynamically.

    • Insertion and deletion are faster in linked lists than in arrays.

    • Arrays have better cache locality while linked lists have better memory utilization.

    • Arrays are accessed using indices while linked lists are accessed using pointers.

    • Examples of arrays inc...

  • Answered by AI
  • Q3. What is data abstraction and explain with code?
  • Ans. 

    Data abstraction is the process of hiding implementation details and showing only necessary information.

    • Abstraction is achieved through abstract classes and interfaces.

    • It helps in reducing complexity and increasing efficiency.

    • Example: abstract class Shape with abstract method draw() implemented by its subclasses like Circle and Rectangle.

  • Answered by AI
  • Q4. What is TCP/IP,OSI model?
  • Ans. 

    TCP/IP is a protocol used for communication between devices on the internet. OSI model is a conceptual framework for network communication.

    • TCP/IP is a suite of protocols that governs communication between devices on the internet.

    • OSI model is a conceptual framework that divides network communication into seven layers.

    • TCP/IP is based on a four-layer model, which includes the application, transport, internet, and network ...

  • Answered by AI
  • Q5. What is program counter?
  • Ans. 

    Program counter is a register that stores the memory address of the next instruction to be executed by the processor.

    • Program counter is also known as instruction pointer.

    • It is a part of the processor's control unit.

    • The value of program counter is incremented after each instruction is executed.

    • If a program counter is corrupted, the processor may execute incorrect instructions.

    • Example: If the program counter is pointing ...

  • Answered by AI
  • Q6. WAP to reverse string?
  • Ans. 

    A program to reverse a given string.

    • Create an empty string to store the reversed string.

    • Iterate through the original string from end to start.

    • Append each character to the empty string.

    • Return the reversed string.

  • Answered by AI
  • Q7. WAP for recursion and explain its working?
  • Ans. 

    Recursion is a technique where a function calls itself to solve a problem. WAP for recursion is to write a program using recursion.

    • Recursion is used to solve problems that can be broken down into smaller sub-problems.

    • The base case is the condition where the function stops calling itself.

    • The recursive case is where the function calls itself with a smaller input.

    • Example: Factorial of a number can be calculated using recu...

  • Answered by AI
  • Q8. What is microprocessor and explain register names?
  • Ans. 

    A microprocessor is a computer processor that incorporates the functions of a central processing unit on a single integrated circuit.

    • Microprocessors are used in various electronic devices such as computers, smartphones, and gaming consoles.

    • Register names include program counter (PC), accumulator (ACC), general-purpose registers (GPR), and memory address register (MAR).

    • Registers are used to store data and instructions t...

  • Answered by AI
  • Q9. Explain SQL commands?
  • Ans. 

    SQL commands are used to interact with databases and manipulate data.

    • SELECT: retrieve data from a database

    • INSERT: add new data to a database

    • UPDATE: modify existing data in a database

    • DELETE: remove data from a database

    • CREATE: create a new database or table

    • ALTER: modify the structure of a database or table

    • DROP: delete a database or table

    • JOIN: combine data from multiple tables

    • GROUP BY: group data based on a specific colum...

  • Answered by AI
  • Q10. Write a SQL query to join two tables?
  • Ans. 

    SQL query to join two tables

    • Use JOIN keyword to combine two tables based on a common column

    • Specify the columns to be selected using SELECT keyword

    • Use ON keyword to specify the common column between two tables

  • Answered by AI
  • Q11. Explain pointers and heap ?
  • Ans. 

    Pointers are variables that store memory addresses. Heap is a region of memory used for dynamic memory allocation.

    • Pointers are used to access memory directly

    • Heap is used for dynamic memory allocation

    • Pointers can be used to create data structures like linked lists

    • Heap memory must be manually managed to avoid memory leaks

  • Answered by AI
  • Q12. Explain whole process for Example.c file to Example.exe conversion
  • Ans. 

    The process of converting Example.c file to Example.exe involves several steps.

    • Preprocessing: includes header file inclusion, macro expansion, and conditional compilation

    • Compilation: converts source code to object code

    • Linking: combines object code with libraries to create executable file

    • Debugging: identifying and fixing errors in code

    • Optimization: improving performance of executable file

  • Answered by AI
  • Q13. What have you done on real implementation on linux OS?
  • Ans. 

    I have implemented various software applications on Linux OS.

    • Developed a web application using Python Flask framework on Linux server

    • Created a custom Linux kernel module for a hardware device driver

    • Implemented a distributed system using Apache Kafka on Linux machines

    • Optimized performance of a database server running on Linux by tuning kernel parameters

  • Answered by AI
  • Q14. Some questions on DBMS
  • Q15. Please introduce youself
  • Ans. 

    I am a software engineer with 5 years of experience in developing web applications using Java and JavaScript.

    • 5 years of experience in software development

    • Expertise in Java and JavaScript

    • Proficient in developing web applications

    • Strong problem-solving and analytical skills

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: The interview process last for around 30-40 minutes and it was elimination round.This round decide your placement.First of all interviewer ask about the language comfortable with,then lots of questions regarding C/C++ basics.After that he asks lot of questions about Pointers,Operating system,Data structure and Algorithms,GNU/Linux,SQL,Computer networks and everything mentioned on resume and good knowledge on Recursion(only few knows behind the scene of memory stack of recursion concept).Ask about GNU/LINUX and what i had done with OS with practical work.When he ask about DBMS i told him that i don't know theory and i am comfortable with SQL.
Tips: Be calm throughout the interview ,brush up C/C++ basics,pointer(he almost asked whole pointer concept and heap),data structure.Revise TCP/IP and OSI model with protocols.Always be cool and for programming questions always ask every points to write about programming question.

Round: HR Interview
Experience: HR round was just formality very less candidates are eliminated.HR was very nice guy.He ask me about projects i had done and other questions are related to job location,relocation and bond.Always say truth.When i was asked about why you are not placed yet i honestly told that most of the times i was rejected.
Tips: Always be cool  while answering.

General Tips: Always be cool and don't be nervous.Be confident while answering.
Skill Tips: Be proficient in at least one programming language
Skills: C, C++, Data Structure, SQL , Computer networks, GNU/LINUX, Algorithm
College Name: University Institute of Engineering and Technology Kurukshetra University
Motivation: I had faced many rejection and i advice to my juniors stay focused on competitive programming.Do not lose hope because your core technical knowledge decide your fate.Do not cram the topics.Learn programming on MyCodeSchool&#44;hackerank,TopCoder.
Funny Moments: When interviewer asked about penetration testing which i mentioned on resume then i told him whole process of cracking  his Wi-Fi to get free access to the internet and when asked about can i switch to other domain inspite of software engineering than he told me with smiling face the world is dynamic(i think i explained so well the concept of pointer and heap).

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Tell an incident were u ve gone out of ur ways to help one of ur friend
  • Ans. 

    Helped a friend with a last-minute project submission

    • Stayed up all night to help my friend complete a project

    • Provided guidance and support throughout the project

    • Helped my friend with the presentation and final submission

    • Ensured my friend's success despite my own busy schedule

  • Answered by AI
  • Q2. Describe a situation were u ve proved ur mettle as a team worker
  • Ans. 

    During a software development project, I collaborated with team members to resolve a critical bug and ensure timely delivery.

    • Worked closely with team members to identify the root cause of the bug

    • Collaborated with the QA team to develop a testing plan

    • Implemented a fix and tested it thoroughly before deployment

    • Communicated progress and updates to the project manager and stakeholders

    • Ensured timely delivery of the project ...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Section 1:
No. of questions = 20
Time allotted = 30 mins
Books that can b followed for the same: Quantitaive aptitude by R.S.Aggarwal
LOD 1 of quant by Arun Sharma
Section 2: Logical Reasoning
No. of questions= 15
Time allotted = 20 mins
BOOKS: LOD 1 Of Arun SharmaSection 3: English
No. of questions = 15
Time allotted = 20 mins
Synonyms , antonyms, passage
Passage were bit lengthySection 3 : c & DS
No. of questions =20
Time allotted=25 mins
Theoretical questions on DS.
Output of a program & questions on functions were in plenty.
Time complexity of searching & sorting process had been asked.
Tip: Basics of C & DS should be clear . This section may appear tough for non-CS /IT students but it was actually of medium difficulty level.
Duration: 70 minutes
Total Questions: 50

Round: Technical Interview
Experience: Round 2: Technical InterviewQ: Which branch ?
A: EEE
Q: Tell me which subject are u efficient in from C, C++ & Ds
A: C & DS
Q: Which part of C are u well versed with?
A: Basics of C till functions. Though i also do have a superficial idea on structure & class, but i get confused while using them in any program.
Q: Write the program to find out the factorial of any no.
A: I wrote down the complete program .
Q: Also include the factorial of zero in d program.
A: Wrote down the program after bringing the required changes.The interviewer then asks for some other transformation in the program.& I wrote down the new code as per his requirements .He then asks few questions on DS. Those were basically theoretical questions like the fastest sorting technique, searching process, trees , weighted graphs.Q: What are ur fav subjects of ur branch???
A : Power systems
Q: What are the various components of power system along with there functions.
A: I answer this question & briefly describe eth e various functions.This follows some more questions on power system & transformers.Q: Tell me something about your project that u r currently working on
Q: Tell me about the training that u ve done in NALCO.After this the interviewer asks me to ask any query that I have.
I asked him about the job prospectus & the working environment of the company . then finally i asked why no one from EEE has been selected in the company for the last 5 years of its placement process.His replied positively to the job prospectus & working environment & to the EEE specific query he just said ,” let’s c what happens this year”.

Round: Group Discussion
Experience: GD Round :
We were divided into a group of 10 students. In the GD room , the hr told us to select any 3 topic of our choice(3 topics to be chosen by the entire group)The topics chosen by us were:
- Freedom to press & media in our country
- Reality shows
- Traffic condition in IndiaThe HR again said to select any 1 of the topic. We choose the 1st topic to discuss on.
In the end the HR asked some specific group members to conclude & then she gave her feedback on each of the members & on the discussion on a whole

Round: HR Interview
Experience: HR interview:We were given a form to fill up in which we were asked to describe some real life incidents . i am hereby giving examples of the type of questions mentioned above& 8 more such type of questions.She asked me if i had any problem with the bond . to which i replied in negation. A few questions on hobbies were also asked.Mind set after the HR interview: no expectation of getting selected. Was actually mentally prepared to appear in the next company. All the students who had appeared in both HR & Technical interview were asked to assemble in the T&P cell . The results were declared by announcing the names one by one. The best part was the cake cutting ceremony .
Tips: Total no. of students selected from our campus = 23

College Name: BIT MESRA

Interview Questionnaire 

6 Questions

  • Q1. Programs on string operations
  • Ans. 

    String operations programs manipulate and modify strings.

    • Use built-in string functions like substring, replace, and split.

    • Implement algorithms like string reversal, palindrome check, and string compression.

    • Regular expressions can also be used for advanced string operations.

    • Examples: reversing a string, counting occurrences of a substring, converting a string to title case.

  • Answered by AI
  • Q2. Single linked list operations ( adding and deleting a node)
  • Ans. 

    Single linked list operations involve adding and deleting nodes in a linear data structure.

    • To add a node, create a new node and set its next pointer to the current head, then set the head to the new node.

    • To delete a node, traverse the list until the node to be deleted is found, then set the previous node's next pointer to the node after the one being deleted.

    • Be careful to handle edge cases such as adding to an empty li...

  • Answered by AI
  • Q3. Binary search with an example
  • Q4. Explain about the different layers in OSI model.
  • Q5. What do you know about Aricent?
  • Ans. 

    Aricent is a global design and engineering company.

    • Provides software and engineering services to various industries

    • Offers end-to-end product development solutions

    • Has expertise in areas such as 5G, IoT, AI, and cloud computing

    • Works with clients in telecommunications, healthcare, automotive, and more

  • Answered by AI
  • Q6. A real time situation which tests our skills on leadership and team work

Interview Preparation Tips

Round: Test
Experience: On the whole the test was easy. 25 questions from each section with no negative marking. Questions on commercial mathematics( profit and loss,simple and compound interest ) were frequently being asked.The technical round comprised of questions on C, data structures, networking and SQL and computer networks ( ISO OSI reference model and protocols ) (just 3 to 4 questions). Being an ECE student, I found this round to be fairly moderate. Verbal was all about identifying errors and reading comprehension. Core round had questions on diodes,transistors,rectifiers.
Tips: Focus on data structures and C since they were given more importance. Quants and verbal were very easy, so you can expect a decent score in these two rounds. Core round was full of problems, so focus on fundamentals of electronics.For preparations, just visit www.indiabix.com and www.freshersworld.com as they have all the study materials and FAQ's needed.
Duration: 120 minutes minutes
Total Questions: 100

Round: HR Interview
Tips: I wasn't able to answer the first question well .. so it would be better if you knew about the company and its policies beforehand !

General Tips: Just be confident while speaking. The interview session was very friendly so you don't have to panic.
Skills: Team player, Our role as a manager, Fluency in English
College Name: SATHYABAMA UNIVERSITY
Funny Moments: When I was asked about the company&#44; I had no clue ! But somehow, I convinced the interviewer !

Skills evaluated in this interview

I appeared for an interview before May 2016.

Interview Preparation Tips

Round: Test
Duration: 1 hour
Total Questions: 90

Round: Group Discussion
Duration: 20 minutes

Interview Preparation Tips

Round: Test
Experience: more of experience gaining and learning new tricks of codding a program.
Tips: must focus on bugging and debugging the program.
Duration: 60 mins minutes

Skills: Coding Skills,
College Name: Invertis university
Motivation: bosch is a multinational company stating its rank worldwide.so anyone would to work with outstanding company.

Interview Questionnaire 

5 Questions

  • Q1. What are your strengths, weaknesses..?
  • Ans. 

    My strengths include leadership, problem-solving, and communication. My weaknesses are time management and public speaking.

    • Strengths: Leadership - I have experience leading teams and delegating tasks. Problem-solving - I am able to think critically and find solutions to complex problems. Communication - I am able to effectively communicate with team members and clients.

    • Weaknesses: Time management - I sometimes struggle...

  • Answered by AI
  • Q2. What irritates you most..?
  • Ans. 

    Inefficiency and lack of communication irritate me the most.

    • Inefficiency in completing tasks

    • Lack of communication within the team

    • Not being able to meet deadlines due to lack of planning

    • Unnecessary delays in decision-making

    • Micromanagement

    • Lack of clarity in instructions

  • Answered by AI
  • Q3. What do you do in such situations..?
  • Ans. 

    I assess the situation, gather information, and make a decision based on company policies and procedures.

    • Assess the situation and determine the severity of the issue

    • Gather information from all parties involved

    • Refer to company policies and procedures for guidance

    • Make a decision based on the information gathered and company guidelines

    • Communicate the decision to all parties involved

  • Answered by AI
  • Q4. Are you a leader or a follower...?
  • Ans. 

    I am a leader who can also follow when necessary.

    • I believe in leading by example and inspiring others to follow.

    • I am comfortable taking charge and making decisions, but also value input from others.

    • I am adaptable and can switch between leading and following depending on the situation.

    • For example, in a team project, I would take the lead in organizing and delegating tasks, but also listen to and incorporate ideas from t...

  • Answered by AI
  • Q5. Which one is good

Interview Preparation Tips

Round: Resume Shortlist
Experience: I have a CGPA 7.38.

Round: Test
Experience: There was an online objective test
Tips: Previous year IIT Gate book is the best thing to prepare for the technical test for any company. I started doing it in October only.
Duration: 80 min minutes

Round: Interview
Experience: There were two rounds of interview ; 30min for Tech and 10 min HR.
Tips: If you are in ED they will test your basic design skills. They showed a CAD drawing and asking the meaning of symbols, then they asked questions related to general designs available in our surroundings like why is that sewage hole round on the ground why not square or others. If you are in Mechanical, they will ask u core Mech subjects. So please first prepare very well subjects related to your respective interns. A whole interview can be drawn on that. In my case it was IC engine so I answered all the questions related to it and that didn't allow them to ask in any other topic.

Round: Interview
Experience: It was gen. All HR rounds just want to test how much positive you are in life, whether you will leave the company soon.
Tips: Be prepared with answers beforehand. The answers to all the above questions should be "depends on the
situation" and describe them in which situation u will choose which one. PS: if it’s a panel where HR is also there, they will try to excite you by asking gen questions like which team you support in IPL, do u have any gf etc. to make you lite, then again shoot you with some questions. Please don’t get deviated by those.

Skill Tips: Mock tests, Aimcats, Gate book. For GDs, we organised them in our wing. It was very helpful.
Kindly do it often in your wing and among your batch mates too. Same goes for interview. There
are lots of general interview questions available on FTP server, prepare for them well and have
mock interviews. "Alumni interviews" were very helpful, please attend that. Randstad sessions were an absolutely waste of money and time. I was mainly selected due to my internship with Bosch. Prepare all subjects related to your intern. It will be the game changer.
College Name: IIT Madras

Tell us how to improve this page.

Interview Questions from Similar Companies

Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
JSW Steel Interview Questions
3.9
 • 672 Interviews
UltraTech Cement Interview Questions
4.2
 • 667 Interviews
JLL Interview Questions
4.1
 • 409 Interviews
Tata Group Interview Questions
4.2
 • 370 Interviews
Bosch Interview Questions
4.2
 • 349 Interviews
View all
Compare Qmex Steel Construction with

Tech Mahindra

3.5
Compare

Reliance Industries

4.0
Compare

UltraTech Cement

4.2
Compare

JSW Steel

3.9
Compare
write
Share an Interview