Upload Button Icon Add office photos

PMPL

Compare button icon Compare button icon Compare

Filter interviews by

PMPL Surveyor Interview Questions and Answers

Updated 11 Mar 2024

PMPL Surveyor Interview Experiences

1 interview found

Surveyor Interview Questions & Answers

user image Anonymous

posted on 11 Mar 2024

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

I applied via Approached by Company and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Site managing 

(1 Question)

  • Q1. Total Station details
Round 2 - Assignment 

Related to Civil work questions

Interview Preparation Tips

Interview preparation tips for other job seekers - If any job you working,But attention and love your work.

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. What is name mangling?
  • Ans. 

    Name mangling is a technique used by compilers to give unique names to functions and variables to avoid naming conflicts.

    • Name mangling is used in C++ to support function overloading.

    • It is also used in Python to avoid naming conflicts in modules.

    • Name mangling can make it difficult to access variables and functions from outside the class in which they are defined.

    • In C++, name mangling can be seen by using the 'nm' comman

  • Answered by AI

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself

Interview Questionnaire 

1 Question

  • Q1. What do u know about c..?
  • Ans. 

    C is a general-purpose programming language known for its efficiency and low-level memory manipulation capabilities.

    • C was developed by Dennis Ritchie at Bell Labs in 1972.

    • It is widely used for system programming, embedded systems, and developing operating systems.

    • C is a compiled language and is known for its speed and efficiency.

    • It has influenced many other programming languages, including C++, Java, and Python.

    • Some po...

  • Answered by AI

Interview Questionnaire 

2 Questions

  • Q1. 1.About Clear Cover....?
  • Q2. 2. Checking point in Beam and Column....?
  • Ans. 

    Checking points in beam and column are critical for ensuring structural integrity.

    • Checking for cracks or deformations

    • Ensuring proper alignment and levelness

    • Verifying adequate reinforcement

    • Checking for proper bearing and connection details

    • Using non-destructive testing methods

    • Following applicable codes and standards

  • Answered by AI

Interview Questionnaire 

1 Question

  • Q1. What are your career aspirations?

I applied via AmbitionBox and was interviewed in Nov 2021. 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 - Group Discussion 

Group discussion

Interview Preparation Tips

Topics to prepare for Reliance Retail Senior Engineer interview:
  • Technical Skills
Interview preparation tips for other job seekers - Interview team are very comfortable
So don't harmful
Manajment team are very comfortable
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jun 2022. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What is vrrp and harp and how it functions?
  • Ans. 

    VRRP (Virtual Router Redundancy Protocol) and HARP (High Availability Redundancy Protocol) are protocols used for providing redundancy in network routing.

    • VRRP is used to provide a virtual IP address that multiple routers can share, ensuring high availability in case of router failure.

    • HARP is a proprietary protocol developed by Cisco that also provides redundancy by allowing multiple routers to share a virtual IP addres...

  • Answered by AI
  • Q2. What is router and firewall and state difference?
  • Ans. 

    A router is a networking device that forwards data packets between computer networks, while a firewall is a security system that monitors and controls incoming and outgoing network traffic.

    • Router directs traffic between different networks based on IP addresses.

    • Firewall filters network traffic based on predetermined security rules.

    • Routers operate at layer 3 (network layer) of the OSI model, while firewalls operate at la...

  • Answered by AI
  • Q3. What is dwdm and it's components?
  • Ans. 

    DWDM stands for Dense Wavelength Division Multiplexing, a technology used in fiber optic communications.

    • DWDM is a technology that allows multiple data signals to be transmitted simultaneously over a single fiber optic cable.

    • Components of DWDM include lasers, multiplexers, demultiplexers, optical amplifiers, and dispersion compensators.

    • DWDM systems use different wavelengths of light to carry multiple data streams, incre...

  • Answered by AI
  • Q4. Osi reference model explanation?
  • Ans. 

    The OSI reference model is a conceptual framework that standardizes the functions of a telecommunication or computing system into seven distinct layers.

    • The OSI model stands for Open Systems Interconnection model.

    • It helps in understanding how different networking protocols work together.

    • Each layer has specific functions and communicates with adjacent layers.

    • Examples of layers include physical layer, data link layer, net

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Bharti Airtel Senior Engineer interview:
  • Routing Protocols
  • MPLS Network
Interview preparation tips for other job seekers - Prepare well for the interview and your job security is here if you are willing to work.

Skills evaluated in this interview

Interview Questionnaire 

6 Questions

  • Q1. Explain abstract factory design pattern ?
  • Ans. 

    Abstract Factory is a creational design pattern that provides an interface for creating families of related objects.

    • Abstract Factory is used when we need to create families of related objects without specifying their concrete classes.

    • It provides an interface for creating objects of related classes without specifying their concrete classes.

    • It encapsulates a group of factories that have a common theme.

    • It promotes loose c...

  • Answered by AI
  • Q2. How do you do range based map iteration
  • Ans. 

    Range based map iteration can be done using a for-each loop or iterators.

    • Use a for-each loop to iterate over the map elements.

    • Alternatively, use iterators to traverse the map.

    • The range-based for loop is preferred for its simplicity and readability.

    • Example: for(auto const& [key, value] : myMap) { //do something with key and value }

  • Answered by AI
  • Q3. What are detached and joined threads
  • Ans. 

    Detached threads are independent threads that run separately from the main thread. Joined threads are threads that wait for the main thread to finish.

    • Detached threads are created using pthread_detach() function

    • Joined threads are created using pthread_join() function

    • Detached threads do not need to be explicitly terminated

    • Joined threads must be explicitly terminated using pthread_exit() or return statement

    • Detached thread...

  • Answered by AI
  • Q4. What are static code analysis tools
  • Ans. 

    Static code analysis tools are software programs that analyze source code to find potential issues and improve code quality.

    • Static code analysis tools scan code without executing it

    • They can detect issues such as security vulnerabilities, coding errors, and performance problems

    • Examples of static code analysis tools include SonarQube, ESLint, and Checkstyle

  • Answered by AI
  • Q5. Command to list currently running threads in linux
  • Ans. 

    Command to list currently running threads in linux

    • Use the 'ps' command with the 'H' option to display threads in a hierarchy

    • Use the 'top' command to display threads in real-time

    • Use the 'htop' command for an interactive display of threads

  • Answered by AI
  • Q6. Can we perform arithmetic operation on Unique pointer
  • Ans. 

    No, arithmetic operations cannot be performed on unique pointers.

    • Unique pointers are used to manage the lifetime of dynamically allocated objects.

    • They cannot be copied or assigned, only moved.

    • Arithmetic operations are not defined for pointers, including unique pointers.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Exceptions in plsql
  • Ans. 

    PL/SQL exceptions handle errors and manage control flow in Oracle databases, ensuring robust application behavior.

    • PL/SQL has predefined exceptions like NO_DATA_FOUND and ZERO_DIVIDE.

    • Custom exceptions can be defined using the EXCEPTION keyword.

    • Use the RAISE statement to trigger an exception manually.

    • Example: BEGIN SELECT salary INTO v_salary FROM employees WHERE emp_id = 100; EXCEPTION WHEN NO_DATA_FOUND THEN DBMS_OUTPU...

  • Answered by AI
  • Q2. How many types of triggers in plsql
  • Ans. 

    PL/SQL triggers are special procedures that automatically execute in response to certain events on a database table or view.

    • 1. DML Triggers: Execute on Data Manipulation Language events (INSERT, UPDATE, DELETE). Example: AFTER INSERT trigger to log changes.

    • 2. INSTEAD OF Triggers: Used on views to perform actions instead of the triggering action. Example: INSTEAD OF DELETE on a view.

    • 3. System Triggers: Triggered by syst...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. What is the salary expectation

Interview Preparation Tips

Interview preparation tips for other job seekers - Not to join as a fresher ..having some experienced mininimum 10 then switch in this company

PMPL Interview FAQs

How many rounds are there in PMPL Surveyor interview?
PMPL interview process usually has 2 rounds. The most common rounds in the PMPL interview process are Assignment.

Tell us how to improve this page.

PMPL Surveyor Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
Reliance Retail Interview Questions
3.9
 • 1.6k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Bharti Airtel Interview Questions
4.0
 • 850 Interviews
Paytm Interview Questions
3.3
 • 752 Interviews
View all
Senior Engineer
9 salaries
unlock blur

₹4.8 L/yr - ₹6.2 L/yr

Assistant Manager
7 salaries
unlock blur

₹6.5 L/yr - ₹10.5 L/yr

Engineer
7 salaries
unlock blur

₹2.9 L/yr - ₹5.5 L/yr

Technician
6 salaries
unlock blur

₹2.5 L/yr - ₹4.1 L/yr

Field Engineer
5 salaries
unlock blur

₹3.2 L/yr - ₹6 L/yr

Explore more salaries
Compare PMPL with

Flipkart

4.0
Compare

Amazon

4.1
Compare

Paytm

3.3
Compare

Reliance Retail

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