Upload Button Icon Add office photos

Filter interviews by

I-engineering Software Civil Supervisor Interview Questions and Answers

Updated 15 Nov 2023

I-engineering Software Civil Supervisor Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed before Nov 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 

(4 Questions)

  • Q1. About worklng experience ?
  • Q2. What problems did you encountered while working? How did you solve it? What was your role?
  • Ans. Heavy rain for consecutive days.our solution I was made shutter . we make a plastic raincoat to wear . It was temporary solution antilles the company fall fill PPE.
  • Answered Anonymously
  • Q3. What can you do if you join our ccompany
  • Ans. When l join your company l make good working conditions and good work habit,additionally fully contribute for company progress
  • Answered Anonymously
  • Q4. How can manege workplace culture and abeying the lows of that area
  • Ans. 

    Workplace culture can be managed by setting clear expectations, promoting open communication, fostering teamwork, and leading by example.

    • Set clear expectations for behavior and performance

    • Promote open communication among team members

    • Foster teamwork and collaboration

    • Lead by example by following the laws and regulations of the area

    • Provide training and resources to ensure compliance with laws and regulations

  • Answered by AI

Interview Preparation Tips

Topics to prepare for I-engineering Software Civil Supervisor interview:
  • Only about work

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: A coding test (Students were asked to bring Laptops)
Tips: Be thorough with C/C++, networking, OS, Data structures and architecture
Duration: 90 minutes

Round: Interview
Experience: 3 rounds of interview, one hour each, all technical 
Interview Process:All the three rounds are oriented around programming. A lot of focus was given to Data structures, C/C++, OS and algorithmsThe code from previous test is shown and they expect you to fix any bugs if thereThe interviewers are quietly friendly and help if you get stuck at any pointIf you do have any related projects, anticipate some thorough questions on that
Tips: Though the interviewers are helpful, get your basics clear early on. Don't rely on them.Practice coding sessions, a lot of companies have them as a shortlisting criteria.

College Name: IIT Madras

Interview Preparation Tips

Round: Test
Experience: PAPER DURATION: 3 hours
NO. OF QUESTIONS: 2 (20 marks each)
MAXIMUM MARKS: 20*2 = 40 marksQUESTION 1:
JSON Prettier:-Write a program which takes JSON as input and gives prettified JSONYou need to read JSON from STDIN. Input gives one line of uglified JSON.Output should be formatted JSON. Check the standard output link.Use 2 white spaces (not‘\t’) for one indentation.SAMPLE INPUT:{“group” : {list : [1,2,3]}, “list” : [“a”,”b”,”c”]}SAMPLE OUTPUT:{“group” : {List : [1,2,3]},“list” : [“a”,”b”,”c”]}EXPLANATION: Input will be uglifiedjson in one line and output will be prettified format of that. QUESTION 2:XML parse plus series computationEvaluate an expression given in XML format. Keys will be Expr- contains the entire expression. Elem – contains the digit, sum, Prod- contains two or more keys whose evaluation needs to be summed or multiplied respectively. Sub will contain 2 keys or more, where the second key onwards will have to be subtracted from the first one. Div- will contain 2 keys in which first key will need to be divided by second. SAMPLE INPUT:4673 SAMPLE OUTPUT:
20EXPLANATION:Input will be xml file through standard input. End of xml file marked by .
Duration: 180 minutes
Total Questions: 2

College Name: NA

I applied via Campus Placement and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

General aptitude test with math and logic related questions. there were also coding questions which were given more weightage than the other questions.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Standard linked list questions like finding the middle of a linked list, checking if the linked list is a loop etc
  • Q2. Max heap related questions.
Round 3 - One-on-one 

(1 Question)

  • Q1. This interview was mostly math related questions. for eg: prove if a number is irrational.

Interview Preparation Tips

Topics to prepare for Amagi Media Labs Software Engineer interview:
  • Data Structures
  • Maths
  • puzzles
Interview preparation tips for other job seekers - focus is on checking basic coding and problem solving skills. a separate round for testing mathematical ability was a surprise.

Interview Questionnaire 

2 Questions

  • Q1. Core java and spring boot questions
  • Q2. Learn core concepts in java
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Aptitude questions with 2-3 coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Input-wwwrrrrttttuu Output - w3r4t4u2
  • Q2. Interpreter vs compiler
  • Ans. 

    Interpreter executes code line by line, compiler translates code into machine code before execution.

    • Interpreter translates code into machine code line by line during runtime

    • Compiler translates code into machine code before execution

    • Interpreted languages include Python, JavaScript

    • Compiled languages include C, C++

  • Answered by AI

I applied via Campus Placement and was interviewed in Sep 2021. There was 1 interview round.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with DSA and low level design. Also have a good idea about Computer science fundamentals .
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(2 Questions)

  • Q1. Basic Question on Tree Traversals
  • Q2. Questions of Linked List
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jul 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Question related to tree and graph

Round 2 - Coding Test 

Question related to array and tree

Round 3 - Behavioral 

(1 Question)

  • Q1. Question related to projects, puzzles, one dsa as well
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jan 2022. 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 - Technical 

(4 Questions)

  • Q1. Technical skills required. Some questions of programming languages are asked.
  • Q2. What are the SQL command groups?
  • Ans. 

    SQL command groups are DDL, DML, DCL, and TCL.

    • DDL (Data Definition Language) - used to define database schema and structure

    • DML (Data Manipulation Language) - used to manipulate data stored in the database

    • DCL (Data Control Language) - used to control access to data stored in the database

    • TCL (Transaction Control Language) - used to manage transactions in the database

    • Examples: CREATE, ALTER, DROP (DDL); SELECT, INSERT, UP...

  • Answered by AI
  • Q3. Explain Object Oriented Programming in Python?
  • Ans. 

    Object Oriented Programming is a programming paradigm that uses objects to represent real-world entities.

    • Python supports OOP concepts such as encapsulation, inheritance, and polymorphism.

    • Classes are used to create objects, which have attributes and methods.

    • Inheritance allows for the creation of subclasses that inherit properties and methods from a parent class.

    • Polymorphism allows for the use of a single method or funct...

  • Answered by AI
  • Q4. VLookup, Hlookup, Pivot Table in Excel
Round 3 - Coding Test 

You will be asked to share the screen and write the codes as asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn the programming language and practice them nicely..
Work environment is fantastic..

Skills evaluated in this interview

I-engineering Software Interview FAQs

How many rounds are there in I-engineering Software Civil Supervisor interview?
I-engineering Software interview process usually has 2 rounds. The most common rounds in the I-engineering Software interview process are Resume Shortlist and Technical.

Tell us how to improve this page.

I-engineering Software Civil Supervisor Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

BrowserStack Interview Questions
3.6
 • 48 Interviews
Fleetx.io Interview Questions
3.7
 • 28 Interviews
ZIGRAM Interview Questions
3.9
 • 26 Interviews
RGBSI Interview Questions
3.5
 • 24 Interviews
Springworks Interview Questions
4.6
 • 23 Interviews
View all

I-engineering Software Civil Supervisor Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

4.0

Skill development

3.0

Work-life balance

4.0

Salary

2.0

Job security

4.0

Company culture

5.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
25 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Process Analyst
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Developer
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare I-engineering Software with

Aurigo

4.7
Compare

Peel-works

3.7
Compare

Prime Focus Technologies

3.4
Compare

Nowfloats Technologies

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