Upload Button Icon Add office photos

Filter interviews by

Rebar Design Detail Senior Systems Engineer Interview Questions and Answers

Updated 2 Nov 2022

Rebar Design Detail Senior Systems Engineer Interview Experiences

1 interview found

I applied via Walk-in 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 - Technical 

(3 Questions)

  • Q1. What is the AD domain
  • Ans. 

    AD domain is a collection of computers, users, and other objects that share a common security database.

    • AD stands for Active Directory

    • It is a centralized database that stores information about network resources

    • It provides authentication and authorization services

    • It allows administrators to manage network resources from a single location

    • Example: A company's AD domain may include all the computers, users, printers, and ot

  • Answered by AI
  • Q2. What is your knowledge in outlook
  • Q3. How to find Harddisk failed and data taken
  • Ans. 

    To find a failed hard disk and data taken, check system logs, run diagnostic tools, and investigate any suspicious activity.

    • Check system logs for any error messages related to the hard disk

    • Run diagnostic tools such as SMART or CHKDSK to identify any issues with the hard disk

    • Investigate any suspicious activity such as unauthorized access or data transfers

    • If data has been taken, check backup systems or attempt to recover...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through and prepare your IT technical handling calls and report once got the interview.

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

3 Questions

  • Q1. What is android architecture stack?
  • Ans. 

    Android architecture stack is a set of layers that make up the Android operating system.

    • The stack includes four main layers: Linux kernel, native libraries, Android runtime, and application framework.

    • The Linux kernel provides low-level system functionality.

    • Native libraries are written in C or C++ and provide access to hardware-specific features.

    • The Android runtime includes the Dalvik virtual machine and core libraries.

    • ...

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

    AIDL stands for Android Interface Definition Language, used for inter-process communication in Android.

    • AIDL is used to define the interface between client and service in Android.

    • It allows communication between different processes in Android.

    • AIDL is used to pass complex data types between processes.

    • AIDL is similar to Remote Procedure Call (RPC) in other programming languages.

    • Example: AIDL is used in Android to implement...

  • Answered by AI
  • Q3. What is hash set and hash map
  • Ans. 

    Hash set and hash map are data structures used to store key-value pairs for efficient retrieval.

    • Hash set stores unique values without any specific order.

    • Hash map stores key-value pairs and allows fast retrieval of values based on keys.

    • Both use hashing to map keys to their corresponding values.

    • In Java, HashSet and HashMap are implementations of these data structures.

  • Answered by AI

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. About Yourself

Interview Preparation Tips

Round: Test
Experience: Test level was medium, as i also sat for mahindra, i found L&T test was harder than mahindra!
Tips: Just study RS agarwal

Round: Group Discussion
Experience: It was easy for me, coz i was aware about tips of GD
Tips: Be the leader, if possibleTalk in between, even if u dont know topic much
Duration: 20 minutes

Round: Interview
Experience: This question was damn easy for me, coz i can talk more based on my activities & resume
Tips: Dont hesitate, stay calm & describe yourself, but not family background

General Tips: Be yourself, no technical knowledge is required(depends on panel u get)
Skill Tips: ""
College Name: IIT Roorkee
Motivation: To get placed!

I was interviewed before Sep 2016.

Interview Questionnaire 

1 Question

  • Q1. Ocampo, basic electronics and C

Interview Preparation Tips

Round: Test
Duration: 1 hour
Total Questions: 50

Skills: Embedded Systems, C Programming
College Name: Sahyadri college of engineering

I applied via PLACEMENT

Interview Preparation Tips

Round: Technical Interview
Experience: Good detailed interview in terms of technical knowledge
Tips: Should be thorough with the projects you have done during the course

General Tips: be confident of what you put in your resume
Technical knowledge regarding projects undertaken during engineering should be sound
Be confident
Skills: Communication, Thinking capability, knowledge applying capability
College Name: V.E.S Institute Of Technology
Motivation: Opportunity to work in a renowned and core technical company
Funny Moments: We consider the interview panelists to be as tough as our viva externals. Interviewers are mostly on your side(contrary to viva professors :P)

Interview Questionnaire 

5 Questions

  • Q1. Pertaining to the mentioned roles and responsibilities in your resume
  • Q2. Planning and work order creation
  • Q3. Piling activities
  • Q4. Introduction
  • Q5. Cross checking of documents

Interview Preparation Tips

Round: Resume Shortlist
Experience: On the criteria that I scored atleast 60% overall and had no gap between job/s.

I applied via Naukri.com and was interviewed before Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Technical questions and scenarios

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are good in technical knowledge you can crack interview easily.

I applied via Referral and was interviewed before Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What is dependency injection?
  • Ans. 

    Dependency injection is a design pattern where the dependencies of an object are provided externally.

    • Dependencies are objects that a class needs to function properly

    • Dependency injection allows for loose coupling between objects

    • There are three types of dependency injection: constructor injection, setter injection, and interface injection

    • Example: Instead of creating a new instance of a dependency within a class, the depe...

  • Answered by AI
  • Q2. What is steam api?
  • Ans. 

    Steam API is a set of tools and resources for game developers to integrate Steam features into their games.

    • Steam API provides access to features such as matchmaking, achievements, and user profiles.

    • Developers can use Steamworks SDK to integrate Steam features into their games.

    • Steam API also allows for in-game purchases and microtransactions.

    • Examples of games that use Steam API include Counter-Strike: Global Offensive a

  • Answered by AI
  • Q3. Thread life cycle, deamon thread, deadlock
  • Q4. Internal working of hashmap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to retrieve values quickly.

    • Hashing function is used to convert the key into an index of an array where the value is stored.

    • Collisions occur when two keys have the same hash value, which is resolved using separate chaining or open addressing.

    • HashMap uses an array of linked lists to handle collisions.

    • The load factor determines when the HashMap shoul...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong knowledge on core Java, Java 8, Spring annotations and basic SpringBoot and microservices knowledge

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Static keyword. Object creation
  • Q2. Virtual function and run time polymorphism
  • Q3. Compile time polymorphism and example
  • Ans. 

    Compile time polymorphism is achieved through function overloading and templates.

    • Function overloading allows multiple functions with the same name but different parameters.

    • Templates allow generic programming by defining functions or classes that can work with different data types.

    • Examples of function overloading include cout<< for different data types and sqrt() for float and double.

    • Examples of templates include vector

  • Answered by AI

I applied via Company Website and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Nodejs basics,AWS S3,script file run command,how to catch db timeout
  • Q2. Connect db options,
  • Ans. 

    Connecting to a database has multiple options depending on the type of database and programming language used.

    • For SQL databases, options include using JDBC for Java, ODBC for C++, and ADO.NET for C#.

    • For NoSQL databases, options include using MongoDB's driver for Python or Node.js.

    • ORMs like Hibernate and Entity Framework can also be used to abstract away the database connection details.

    • Connection strings are used to spe...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Db connection attributes need to prepare well

Rebar Design Detail Interview FAQs

How many rounds are there in Rebar Design Detail Senior Systems Engineer interview?
Rebar Design Detail interview process usually has 2 rounds. The most common rounds in the Rebar Design Detail interview process are Resume Shortlist and Technical.
What are the top questions asked in Rebar Design Detail Senior Systems Engineer interview?

Some of the top questions asked at the Rebar Design Detail Senior Systems Engineer interview -

  1. How to find Harddisk failed and data ta...read more
  2. What is the AD dom...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

L&T Construction Interview Questions
4.0
 • 744 Interviews
Tata Projects Interview Questions
4.2
 • 426 Interviews
KEC International Interview Questions
4.0
 • 298 Interviews
Tata Technologies Interview Questions
3.6
 • 255 Interviews
TCE Interview Questions
3.8
 • 248 Interviews
View all
Rebar Detailer
29 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Cadd Designer
22 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior CAD Designer
16 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior rebar detailer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Detailing Engineer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Rebar Design Detail with

Tesla Outsourcing Services

3.9
Compare

United-BIM

3.0
Compare

Advenser Engineering Services

4.3
Compare

BluEnt

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