Premium Employer

i

This company page is being actively managed by Cadeploy Engineering Team. If you also belong to the team, you can get access from here

Cadeploy Engineering Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Cadeploy Engineering Checker Interview Questions and Answers

Updated 20 Jan 2023

Cadeploy Engineering Checker Interview Experiences

2 interviews found

Checker Interview Questions & Answers

user image Anonymous

posted on 16 Sep 2022

I applied via Walk-in and was interviewed in Mar 2022. 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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. What is connection details?
  • Ans. 

    Connection details refer to the specific information required to establish a connection between two devices or systems.

    • Connection details include information such as IP addresses, port numbers, and authentication credentials.

    • They are necessary for establishing communication between devices or systems.

    • For example, connection details are required to connect to a Wi-Fi network or to access a remote server.

    • They can also be...

  • Answered by AI
  • Q2. How to connect precast core walls?
  • Ans. 

    Precast core walls can be connected using various methods such as dowels, grout, and welding.

    • Dowels can be used to connect precast core walls by drilling holes in the walls and inserting steel dowels.

    • Grout can also be used to connect precast core walls by filling the joints between the walls with a high-strength grout.

    • Welding is another method of connecting precast core walls, where steel plates are welded to the walls...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Technical question are very easy no need to worry about interview.

Skills evaluated in this interview

Checker Interview Questions & Answers

user image Ganesh Shanmuga Sundaram

posted on 20 Jan 2023

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Jan 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. OSHA questions and their explanation
  • Q2. Basic checking and project related queries

Interview Preparation Tips

Interview preparation tips for other job seekers - Aisc and Tekla tool knowledge is must.
Prepare yourself for a ride

Checker Interview Questions Asked at Other Companies

Q1. How to connect precast core walls?
Q2. What is connection details?
Q3. What is basic pump piping

Checker Jobs at Cadeploy Engineering

View all

Interview questions from similar companies

Checker Interview Questions & Answers

TCS user image Anonymous

posted on 12 Sep 2021

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

Interview Questionnaire 

2 Questions

  • Q1. Do you have any experience in mortgage
  • Q2. Please explain your current work role in your organization

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi All, If you are experienced so first you have to knowledge about your Process. Please explain to interviewer as well about your work role. Thank you

I applied via LinkedIn and was interviewed in Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What happens if there is finally block inside an exception block?
  • Ans. 

    Finally block will always execute, even if an exception is thrown in the try or catch block.

    • Finally block is used to execute code that must always run, regardless of whether an exception was thrown or not.

    • If an exception is thrown in the try or catch block, the finally block will still execute.

    • Finally block is often used to release resources like file handles, database connections, etc.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - There were two rounds of technical discussion. First round took around 45 mins which mainly concentrated on Django related concepts. Second round was the customer interaction and the questions were mostly the scenario based and it was asked on Python concepts. Both the rounds carried its own weight. The key to clear any interview is "Be strong in your basics".

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. About Gd&t sheetmetal and casting standards tubing and routing, fundamental of strength of materials

I applied via Campus Placement and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Programming - program based on string & array

Interview Preparation Tips

Interview preparation tips for other job seekers - do programming well based on string & array

I applied via Company Website and was interviewed in Apr 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Technical questions on c,c++ and projects done in engineering were asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please go through all the basics of c,c++ and be thorough in your resume. Be confident in what ever you are telling.

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

Interview Questionnaire 

1 Question

  • Q1. Why do we hire you?

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good and very easy.

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

Interview Questionnaire 

1 Question

  • Q1. 1.Cloud/Kubernetes 2.linux 3.volte

Interview Preparation Tips

Interview preparation tips for other job seekers - I belong to Telecom sector so according to my profile and other users which are belong to same sector... Please focus of cloud/Kubernetes, Linux, 4G/5G...

I applied via Naukri.com and was interviewed in Nov 2020. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. What is OOPS?
  • Ans. 

    OOPS stands for Object-Oriented Programming System.

    • OOPS is a programming paradigm that focuses on objects and their interactions.

    • It involves encapsulation, inheritance, and polymorphism.

    • Encapsulation is the process of hiding implementation details from the user.

    • Inheritance allows a class to inherit properties and methods from another class.

    • Polymorphism allows objects to take on multiple forms or behaviors.

    • Examples of O

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

    A blueprint for creating objects that share common properties and behaviors.

    • Classes are used in object-oriented programming to create objects with similar attributes and methods.

    • They serve as a blueprint for creating objects.

    • Classes can inherit properties and methods from other classes.

    • Examples include a class for creating different types of cars or a class for creating different types of animals.

  • Answered by AI
  • Q3. What is Abstraction?
  • Ans. 

    Abstraction is the process of hiding complex implementation details and exposing only the necessary information.

    • Abstraction allows us to focus on the essential features of an object or system, without getting bogged down in unnecessary details.

    • It helps to reduce complexity and increase efficiency in software development.

    • For example, a car dashboard abstracts away the complex workings of the engine and presents only the...

  • Answered by AI
  • Q4. What is Object Slicing?
  • Ans. 

    Object slicing is when a derived class object is assigned to a base class object, resulting in loss of derived class attributes.

    • Object slicing occurs when a derived class object is assigned to a base class object.

    • The result is the loss of derived class attributes.

    • This happens because the base class object can only hold the attributes of the base class.

    • Example: class Base { int x; }; class Derived : public Base { int y;...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Confident even if you dont know anything

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Cadeploy Engineering Interview FAQs

How many rounds are there in Cadeploy Engineering Checker interview?
Cadeploy Engineering interview process usually has 2 rounds. The most common rounds in the Cadeploy Engineering interview process are Resume Shortlist and Technical.
How to prepare for Cadeploy Engineering Checker 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 Cadeploy Engineering. The most common topics and skills that interviewers at Cadeploy Engineering expect are Checker, Steel Structures, Aisc, Tekla and Checking.
What are the top questions asked in Cadeploy Engineering Checker interview?

Some of the top questions asked at the Cadeploy Engineering Checker interview -

  1. How to connect precast core wal...read more
  2. What is connection detai...read more
  3. Basic checking and project related quer...read more

Recently Viewed

INTERVIEWS

ABCI Infrastructures

No Interviews

JOBS

ABCI Infrastructures

No Jobs

JOBS

Majestique Landmarks

No Jobs

JOBS

Majestique Landmarks

No Jobs

INTERVIEWS

Majestique Landmarks

No Interviews

JOBS

Cadeploy Engineering

No Jobs

SALARIES

Jaro Education

INTERVIEWS

Cadeploy Engineering

No Interviews

JOBS

Medi Assist India

No Jobs

SALARIES

Cadeploy Engineering

Tell us how to improve this page.

Cadeploy Engineering Checker Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Join Cadeploy Engineering Because quality matters.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
Cyient Interview Questions
3.6
 • 284 Interviews
View all
Cadeploy Engineering Checker Salary
based on 11 salaries
₹3 L/yr - ₹7.6 L/yr
7% more than the average Checker Salary in India
View more details

Cadeploy Engineering Checker Reviews and Ratings

based on 3 reviews

1.4/5

Rating in categories

2.4

Skill development

1.0

Work-life balance

2.7

Salary

1.0

Job security

1.0

Company culture

1.2

Promotions

2.2

Work satisfaction

Explore 3 Reviews and Ratings
PEMB Auto CAD Checker

Hyderabad / Secunderabad

4-9 Yrs

₹ 5.05-7.6 LPA

Explore more jobs
Associate Checker
43 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Tekla Modeller
37 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Detailer Associate
31 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Detail Engineer
29 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Modeler
25 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Cadeploy Engineering with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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