Upload Button Icon Add office photos

Semac Consultants

Compare button icon Compare button icon Compare

Filter interviews by

Semac Consultants Interview Questions and Answers

Updated 5 Apr 2025
Popular Designations

10 Interview questions

A Senior Python Developer was asked 2mo ago
Q. Explain the OOP concepts in Python and provide some examples.
Ans. 

OOP in Python enables code reuse and organization through classes and objects, promoting modular programming.

  • 1. Encapsulation: Bundling data and methods that operate on the data within one unit (class). Example: class `Car` with attributes like `color` and methods like `drive()`.

  • 2. Inheritance: Creating new classes from existing ones, inheriting attributes and methods. Example: class `ElectricCar` inherits from `C...

View all Senior Python Developer interview questions
A Senior Python Developer was asked 2mo ago
Q. How do we upload files in Django using ORM?
Ans. 

Uploading files in Django involves using models, forms, and views to handle file storage and retrieval.

  • Define a model with a FileField or ImageField to store the file.

  • Example: class Document(models.Model): file = models.FileField(upload_to='documents/')

  • Create a form that includes the file field.

  • Example: class DocumentForm(forms.ModelForm): class Meta: model = Document; fields = ['file']

  • In the view, handle the file...

View all Senior Python Developer interview questions
A Senior Python Developer was asked 2mo ago
Q. How would you find the first non-repeating character from the string "swiss"?
Ans. 

To find the first non-repeating character in 'swiss', we can use a frequency count to identify unique characters.

  • 1. Use a dictionary to count occurrences of each character.

  • 2. Iterate through the string and check the count of each character.

  • 3. Return the first character with a count of 1.

  • Example: In 'swiss', 's' appears twice, 'w' once, and 'i' once. Thus, 'w' is the first non-repeating character.

View all Senior Python Developer interview questions
A Senior Python Developer was asked 2mo ago
Q. What is a REST API?
Ans. 

REST API is an architectural style for designing networked applications using HTTP requests to access and manipulate data.

  • REST stands for Representational State Transfer, a set of constraints for building web services.

  • Uses standard HTTP methods: GET (retrieve), POST (create), PUT (update), DELETE (remove).

  • Resources are identified by URIs (Uniform Resource Identifiers), e.g., /users/123.

  • Stateless communication: eac...

View all Senior Python Developer interview questions
A Senior Cadd Engineer was asked
Q. What are paper space and model space?
Ans. 

Paper space and model space are two different workspaces in AutoCAD used for creating and editing drawings.

  • Model space is where the actual drawing is created and edited in real-world dimensions.

  • Paper space is where the layout of the drawing is created, including title blocks, borders, and annotations.

  • Multiple viewports can be created in paper space to display different views of the drawing created in model space.

  • M...

View all Senior Cadd Engineer interview questions
A Senior Cadd Engineer was asked
Q. What is the array command?
Ans. 

Array command creates a series of objects in a rectangular or polar pattern.

  • Used in AutoCAD to create a series of objects in a pattern

  • Can create rectangular or polar arrays

  • Can be used for creating patterns of objects like bolts, nuts, etc.

  • Syntax: ARRAY -> select objects -> specify base point -> specify second point or angle

  • Can also use path option to create objects along a path

View all Senior Cadd Engineer interview questions
A Senior Cadd Engineer was asked
Q. What units will be used?
Ans. 

Units will be used to measure and quantify various parameters in the design and analysis of engineering projects.

  • Units are essential for accurate calculations and communication of results.

  • Different units may be used for different parameters, such as length, mass, time, temperature, etc.

  • Units can be converted using conversion factors or equations.

  • Common unit systems include SI (International System of Units) and US...

View all Senior Cadd Engineer interview questions
Are these interview questions helpful?
A Senior Cadd Engineer was asked
Q. What are layer systems?
Ans. 

Layer systems are a way of organizing and managing different elements in a design or drawing.

  • Layer systems allow for easy management and manipulation of different elements in a design or drawing

  • Each layer can contain different types of elements, such as text, lines, or shapes

  • Layers can be turned on or off, locked or unlocked, and reordered as needed

  • Examples of layer systems include those used in CAD software, grap...

View all Senior Cadd Engineer interview questions
A Site Engineer was asked
Q. What quantity of excavation can a 210 excavator perform in 10 hours?
Ans. 

The quantity of excavation by a 210 excavator in 10 hours depends on various factors such as soil type, operator efficiency, and machine capabilities.

  • The quantity of excavation can vary based on the type of soil. Harder soil may require more time and effort to excavate compared to softer soil.

  • The efficiency of the operator operating the excavator also plays a role. A skilled operator can complete more excavation w...

View all Site Engineer interview questions
A Site Engineer was asked
Q. What is the tolerance allowed when checking columns?
Ans. 

The tolerance in column checking refers to the acceptable deviation from the specified dimensions or alignment.

  • Tolerance is usually specified in the project specifications or codes.

  • It is important to ensure that the column is within the specified tolerance to ensure structural integrity.

  • Tolerance can vary depending on the type of column and its location in the structure.

  • For example, a column supporting a heavy loa...

View all Site Engineer interview questions

Semac Consultants Interview Experiences

16 interviews found

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

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. What is Rest API?
  • Ans. 

    REST API is an architectural style for designing networked applications using HTTP requests to access and manipulate data.

    • REST stands for Representational State Transfer, a set of constraints for building web services.

    • Uses standard HTTP methods: GET (retrieve), POST (create), PUT (update), DELETE (remove).

    • Resources are identified by URIs (Uniform Resource Identifiers), e.g., /users/123.

    • Stateless communication: each req...

  • Answered by AI
  • Q2. How we upload files in django using orm?
  • Ans. 

    Uploading files in Django involves using models, forms, and views to handle file storage and retrieval.

    • Define a model with a FileField or ImageField to store the file.

    • Example: class Document(models.Model): file = models.FileField(upload_to='documents/')

    • Create a form that includes the file field.

    • Example: class DocumentForm(forms.ModelForm): class Meta: model = Document; fields = ['file']

    • In the view, handle the file uplo...

  • Answered by AI
  • Q3. Find first non repeating character from string "swiss"?
  • Ans. 

    To find the first non-repeating character in 'swiss', we can use a frequency count to identify unique characters.

    • 1. Use a dictionary to count occurrences of each character.

    • 2. Iterate through the string and check the count of each character.

    • 3. Return the first character with a count of 1.

    • Example: In 'swiss', 's' appears twice, 'w' once, and 'i' once. Thus, 'w' is the first non-repeating character.

  • Answered by AI
  • Q4. Explain opps concept in python and provide some examples
  • Ans. 

    OOP in Python enables code reuse and organization through classes and objects, promoting modular programming.

    • 1. Encapsulation: Bundling data and methods that operate on the data within one unit (class). Example: class `Car` with attributes like `color` and methods like `drive()`.

    • 2. Inheritance: Creating new classes from existing ones, inheriting attributes and methods. Example: class `ElectricCar` inherits from `Car`.

    • 3...

  • Answered by AI
  • Q5. And some sql and django related questions?

Skills evaluated in this interview

Interview Questions & Answers

user image Anonymous

posted on 6 Nov 2023

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Oct 2023. There were 2 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 - One-on-one 

(2 Questions)

  • Q1. Take us through about your personal & professional journey?
  • Q2. I kept it simple & informative & engaged.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep it simple, listen first and then reply.
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 - Group Discussion 

Project manager architect And structural engineer ask technical wuestions

Round 3 - Technical 

(5 Questions)

  • Q1. Auto cad test and technical questions
  • Q2. What is array command
  • Ans. 

    Array command creates a series of objects in a rectangular or polar pattern.

    • Used in AutoCAD to create a series of objects in a pattern

    • Can create rectangular or polar arrays

    • Can be used for creating patterns of objects like bolts, nuts, etc.

    • Syntax: ARRAY -> select objects -> specify base point -> specify second point or angle

    • Can also use path option to create objects along a path

  • Answered by AI
  • Q3. What is layer systems
  • Ans. 

    Layer systems are a way of organizing and managing different elements in a design or drawing.

    • Layer systems allow for easy management and manipulation of different elements in a design or drawing

    • Each layer can contain different types of elements, such as text, lines, or shapes

    • Layers can be turned on or off, locked or unlocked, and reordered as needed

    • Examples of layer systems include those used in CAD software, graphic d...

  • Answered by AI
  • Q4. What is paper space and model space
  • Ans. 

    Paper space and model space are two different workspaces in AutoCAD used for creating and editing drawings.

    • Model space is where the actual drawing is created and edited in real-world dimensions.

    • Paper space is where the layout of the drawing is created, including title blocks, borders, and annotations.

    • Multiple viewports can be created in paper space to display different views of the drawing created in model space.

    • Model ...

  • Answered by AI
  • Q5. How to units will be used
  • Ans. 

    Units will be used to measure and quantify various parameters in the design and analysis of engineering projects.

    • Units are essential for accurate calculations and communication of results.

    • Different units may be used for different parameters, such as length, mass, time, temperature, etc.

    • Units can be converted using conversion factors or equations.

    • Common unit systems include SI (International System of Units) and US cust...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Final hr round salary discussion and negotiate and join immediately as per there requirement

Skills evaluated in this interview

Carpenter Interview Questions & Answers

user image Anonymous

posted on 26 Feb 2022

Round 1 - One-on-one 

(1 Question)

  • Q1. About the price and carpentry

Interview Preparation Tips

Interview preparation tips for other job seekers - Carpentry work construction
iceteficaa

Site Engineer Interview Questions & Answers

user image Anonymous

posted on 15 Sep 2021

I applied via Naukri.com and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Quantity of excavation by 210 excavator in 10 hours
  • Ans. 

    The quantity of excavation by a 210 excavator in 10 hours depends on various factors such as soil type, operator efficiency, and machine capabilities.

    • The quantity of excavation can vary based on the type of soil. Harder soil may require more time and effort to excavate compared to softer soil.

    • The efficiency of the operator operating the excavator also plays a role. A skilled operator can complete more excavation work i...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview should have minimun time

Site Engineer Interview Questions & Answers

user image Mangesh Lade

posted on 18 Jan 2021

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

Interview Questionnaire 

2 Questions

  • Q1. What is the tolerance in column checking?
  • Ans. 

    The tolerance in column checking refers to the acceptable deviation from the specified dimensions or alignment.

    • Tolerance is usually specified in the project specifications or codes.

    • It is important to ensure that the column is within the specified tolerance to ensure structural integrity.

    • Tolerance can vary depending on the type of column and its location in the structure.

    • For example, a column supporting a heavy load may...

  • Answered by AI
  • Q2. 1mm to 2mm

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic practical knowledge Question of civil engineering.

I applied via Referral and was interviewed before Nov 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. They will ask About ur previous experience, Be strong & confident on what you know... Dont try to console...

Interview Questions & Answers

user image Anonymous

posted on 21 Mar 2015

Interview Questionnaire 

4 Questions

  • Q1. Tell us about yourself
  • Q2. Why NIT Warangwal ?
  • Ans. 

    NIT Warangal offers a blend of academic excellence, vibrant campus life, and strong industry connections, making it a top choice for engineering aspirants.

    • Reputation: NIT Warangal is one of the premier engineering institutions in India, known for its rigorous academic standards.

    • Faculty: The institute boasts highly qualified faculty members who are experts in their respective fields, providing quality education.

    • Infrastr...

  • Answered by AI
  • Q3. What type of job do you prefer - designing or site job ?
  • Q4. Will you be able to work anywhere in India ?
  • Ans. 

    I am open to working anywhere in India, as it offers diverse opportunities and experiences that can enhance my career.

    • Flexibility: I understand that different locations may offer unique challenges and learning experiences.

    • Cultural Exposure: Working in various regions allows me to immerse myself in different cultures and practices.

    • Career Growth: Opportunities in different cities can lead to professional development and ...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: The aptitude test was mostly Subjective. In the test test they asked to draw S.F.D, B.M.D, Elastic Curves and deflection curves for around 16 structures.They asked lots of one- two mark questions from codes also. Questions were there from D.S.S and Concrete structures also.
Duration: 90 minutes

Round: Technical Interview
Experience: In Personal interview, they mostly asked Questions from the aptitude test and then asked us to solve them again. They were always stressing on Design of steel structure as that's there specialization.

General Tips: Study thoroughly S.F.d, B.M.D., Elastic curves, Deflection Curves, Design of steel Structures And Concrete structures.

Be confident in the interview !
College Name: NIT WARANGAL

Interview Questions & Answers

user image Anonymous

posted on 21 Mar 2015

Interview Preparation Tips

Round: Test
Experience: Questions were mainly from theory of structures, steel and concrete structures and concrete technology. They concentrated on SFD, BMD and elastic curves different beams and frames.

Written test was a bit lengthy and subjective and a bit tough too.
Duration: 60 minutes

Round: Technical Interview
Experience: Some questions from the written test and the possible extensions. 
Questions from subject of our interest.

 Interview was very cool.

Round: HR Interview
Experience: Few details of native place and family background.

General Tips: Be thorough with the subjects like theory of structures , dss & dcs, concrete technology. Be confident while answering in the interview. Don't get tensed, be cool throughout the process of selection.
College Name: NIT WARANGAL

Interview Questions & Answers

user image Anonymous

posted on 15 Apr 2015

Interview Preparation Tips

Round: Test
Experience: It was all technical and they concentrated on bending moment and shear force diagram, basics of steel design. Some questions were on IS-456
Duration: 120 minutes

Round: Technical Interview
Experience: Concentrated on questions which were wrongly answered in the written test.

Round: HR Interview
Experience: They asked me about myself.

College Name: NIT WARANGAL

Top trending discussions

View All
Interview Tips & Stories
6d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Semac Consultants?
Ask anonymously on communities.

Semac Consultants Interview FAQs

How many rounds are there in Semac Consultants interview?
Semac Consultants interview process usually has 2 rounds. The most common rounds in the Semac Consultants interview process are One-on-one Round, Resume Shortlist and Group Discussion.
How to prepare for Semac Consultants interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Semac Consultants. The most common topics and skills that interviewers at Semac Consultants expect are Industrial Projects, Structural Design, AutoCAD, Project Execution and REVIT Architecture.
What are the top questions asked in Semac Consultants interview?

Some of the top questions asked at the Semac Consultants interview -

  1. if an uncompleted slab resumed its construction after 1 month, then what will y...read more
  2. What is the tolerance in column checki...read more
  3. Quantity of excavation by 210 excavator in 10 ho...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.5/5

based on 2 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

J&F Interview Questions
3.7
 • 30 Interviews
J K Fenner Interview Questions
3.9
 • 30 Interviews
Eversendai Interview Questions
3.7
 • 29 Interviews
Indovance Inc Interview Questions
3.2
 • 19 Interviews
Archirodon Interview Questions
3.9
 • 16 Interviews
View all

Semac Consultants Reviews and Ratings

based on 146 reviews

4.0/5

Rating in categories

3.7

Skill development

3.9

Work-life balance

4.0

Salary

3.6

Job security

3.8

Company culture

3.6

Promotions

3.8

Work satisfaction

Explore 146 Reviews and Ratings
Project Manager
20 salaries
unlock blur

₹5.5 L/yr - ₹20 L/yr

Project Engineer
20 salaries
unlock blur

₹2.6 L/yr - ₹8 L/yr

3D Visualiser
14 salaries
unlock blur

₹5.4 L/yr - ₹5.7 L/yr

Senior Project Manager
11 salaries
unlock blur

₹15 L/yr - ₹27 L/yr

Safety Officer
10 salaries
unlock blur

₹4.8 L/yr - ₹7.2 L/yr

Explore more salaries
Compare Semac Consultants with

J K Fenner

3.9
Compare

Saudi Binladin Group

4.1
Compare

Bahwan Engineering

4.1
Compare

Amara Raja Infra

4.0
Compare
write
Share an Interview