Add office photos
Engaged Employer

Tech Mahindra

3.6
based on 33.1k Reviews
Filter interviews by

20+ Danblock Brakes Interview Questions and Answers

Updated 28 Sep 2024
Popular Designations

Q1. Can you see the door behind you. How much force is required to open it if wind velocity if 20km per hour outside.

Ans.

The force required to open the door depends on various factors such as the size of the door, the type of handle, and the direction of the wind.

  • The size and weight of the door will determine the force required to open it.

  • The type of handle or knob on the door can also affect the force needed to open it.

  • The direction of the wind can make it easier or harder to open the door.

  • Without knowing the specific details of the door, it is impossible to accurately determine the force requ...read more

View 1 answer

Q2. Which command do you use to find 3rd column in a pipe delimited file in unix?

Ans.

To find 3rd column in a pipe delimited file in unix, use the cut command.

  • Use the cut command with -d option to specify the delimiter as pipe(|)

  • Use -f option to specify the field/column number to extract, in this case 3

  • Example: cut -d '|' -f 3 filename.txt

  • This will output the 3rd column from the file filename.txt

Add your answer

Q3. What is decompiler? How to increase error message length in pro*C?

Ans.

Decompiler is a tool to convert compiled code back to source code. Increase error message length in pro*C using the define SQLERRMC.

  • Decompiler is used to reverse engineer compiled code to its original source code.

  • Pro*C error message length can be increased by defining SQLERRMC to a larger value.

  • For example, to increase error message length to 100 characters, define SQLERRMC as char SQLERRMC[100];

Add your answer

Q4. How can you manager your customer? How can yuu slove conflicts between your team mates? How can present a business deck? What is the current role responsibilities in my current organisation? Few Excel short cut...

read more
Ans.

Managing customers, resolving conflicts, presenting business decks, Excel shortcuts and formulas, role responsibilities, CAPA, 5 WHY ANALYSIS, RCA

  • To manage customers, prioritize their needs, communicate effectively, and provide excellent service

  • To resolve conflicts between team mates, listen to both sides, find common ground, and encourage open communication

  • To present a business deck, focus on key points, use visuals, and engage the audience

  • Excel shortcuts: Ctrl+C (copy), Ctr...read more

Add your answer
Discover Danblock Brakes interview dos and don'ts from real experiences

Q5. What is index in SQL? Which index we are using for which process?

Ans.

Index in SQL is a data structure that improves the speed of data retrieval operations.

  • Indexes are used to quickly locate data without having to search every row in a table.

  • Clustered index determines the physical order of data in a table.

  • Non-clustered index creates a separate structure that contains the indexed columns and a pointer to the actual data.

  • Unique index ensures that the indexed columns contain unique values.

  • Full-text index is used for efficient text-based searches.

  • C...read more

Add your answer

Q6. How do you handle transformation of multi array in JSON in Kafka

Ans.

Multi array transformation in JSON in Kafka

  • Use a JSON serializer and deserializer to convert multi arrays to JSON and vice versa

  • Ensure that the data is properly formatted and validated before sending it to Kafka

  • Consider using a schema registry to manage the schema for the JSON data

  • Test the transformation thoroughly to ensure that it is working as expected

Add your answer
Are these interview questions helpful?

Q7. How to compile Pro*C code? Use of indicator variable?

Ans.

Pro*C code can be compiled using the Pro*C precompiler. Indicator variables are used to handle null values in database columns.

  • Pro*C code can be compiled using the Pro*C precompiler, which generates C code from the Pro*C code.

  • The Pro*C precompiler requires the Oracle client libraries to be installed.

  • Indicator variables are used to handle null values in database columns. They are declared as short integers and are set to -1 if the corresponding column is null.

  • Indicator variabl...read more

Add your answer

Q8. What are the analytical function does HIVE support

Ans.

Hive supports various analytical functions for data processing and analysis.

  • Hive supports aggregation functions like SUM, COUNT, AVG, MIN, MAX, etc.

  • It also supports window functions like ROW_NUMBER, RANK, LAG, LEAD, etc.

  • Hive provides statistical functions such as CORR, COVAR_POP, STDDEV, etc.

  • It supports date and time functions like YEAR, MONTH, DAY, HOUR, etc.

  • Hive also offers string manipulation functions like CONCAT, SUBSTRING, LENGTH, etc.

Add your answer
Share interview questions and help millions of jobseekers 🌟

Q9. How to model the hinge joint in FEA

Ans.

Hinge joint can be modeled using beam elements with rotational degrees of freedom.

  • Use beam elements to model the joint

  • Assign rotational degrees of freedom to the joint

  • Apply appropriate boundary conditions to simulate the joint behavior

  • Consider the material properties and loading conditions

  • Verify the results with experimental data if available

Add your answer

Q10. Which libraries you have used in python?

Ans.

I have used various libraries in Python such as NumPy, Pandas, Matplotlib, Scikit-learn, etc.

  • NumPy - for numerical computations and array manipulation

  • Pandas - for data manipulation and analysis

  • Matplotlib - for data visualization

  • Scikit-learn - for machine learning tasks

  • Requests - for making HTTP requests

  • BeautifulSoup - for web scraping

  • NLTK - for natural language processing

  • OpenCV - for computer vision tasks

Add your answer

Q11. Difference between dense rank, rank and row number in SQL

Ans.

Dense rank assigns consecutive integers to distinct values, rank assigns integers to distinct values but skips integers for ties, row number assigns integers to rows in the result set.

  • Dense rank assigns consecutive integers to distinct values

  • Rank assigns integers to distinct values but skips integers for ties

  • Row number assigns integers to rows in the result set

  • Dense rank and rank are used for ranking data, while row number is used for pagination

  • Example: Dense rank - 1, 1, 2, ...read more

Add your answer

Q12. difference between Hashmap and hash table

Ans.

HashMap and HashTable are both data structures in Java used to store key-value pairs, but HashTable is synchronized while HashMap is not.

  • HashMap allows null keys and values, while HashTable does not.

  • HashMap is not synchronized and is not thread-safe, while HashTable is synchronized and thread-safe.

  • HashMap is faster than HashTable for most operations, as it is not synchronized.

  • HashMap is part of the Java Collections Framework, while HashTable is a legacy class.

Add your answer

Q13. What is lambda function in python

Ans.

Lambda function is a small anonymous function in Python.

  • Lambda functions can have any number of arguments but only one expression.

  • They are used as a shortcut to define small functions without a name.

  • Lambda functions can be used as arguments to higher-order functions.

  • Example: lambda x: x**2 defines a function that squares its input.

  • Example: sorted(list, key=lambda x: x[1]) sorts a list of tuples by the second element.

Add your answer

Q14. How do you eliminate null values in HIVE

Ans.

Null values in HIVE can be eliminated using the COALESCE function.

  • Use the COALESCE function to replace null values with a default value.

  • Syntax: COALESCE(column_name, default_value)

  • Example: SELECT COALESCE(name, 'Unknown') FROM table_name;

Add your answer

Q15. What are ACID properties in HIVE table

Ans.

ACID properties ensure data consistency and reliability in HIVE tables.

  • ACID stands for Atomicity, Consistency, Isolation, and Durability.

  • Atomicity ensures that a transaction is treated as a single unit of work.

  • Consistency ensures that the data remains in a valid state before and after the transaction.

  • Isolation ensures that concurrent transactions do not interfere with each other.

  • Durability ensures that once a transaction is committed, it is permanent and can survive system fa...read more

Add your answer

Q16. How bolt slippage is calculated

Ans.

Bolt slippage is calculated by measuring the amount of movement between the bolt and the joint it is fastening.

  • Bolt slippage occurs when the bolt rotates or moves within the joint it is fastening

  • To calculate bolt slippage, measure the amount of movement between the bolt and the joint

  • This can be done using a dial indicator or other measuring device

  • Bolt slippage can be caused by insufficient torque, improper lubrication, or other factors

Add your answer

Q17. How would you control shrinkage

Ans.

Shrinkage can be controlled by implementing strict inventory management procedures and conducting regular audits.

  • Implementing a system for tracking inventory levels and conducting regular audits to identify any discrepancies

  • Ensuring that all employees are properly trained on inventory management procedures and are held accountable for any losses

  • Implementing security measures such as surveillance cameras and access controls to prevent theft

  • Regularly reviewing and analyzing sal...read more

Add your answer

Q18. What is yield strength

Ans.

Yield strength is the amount of stress a material can withstand before it starts to deform permanently.

  • It is the stress at which a material begins to deform plastically

  • It is an important factor in determining the strength and durability of a material

  • It is usually measured in units of psi or MPa

  • Examples of materials with high yield strength include steel and titanium

Add your answer

Q19. How to filter in pyspark

Ans.

Filtering in PySpark involves using the filter function to select rows based on specified conditions.

  • Use the filter function with a lambda function to specify the condition for filtering

  • Filter based on column values or complex conditions

  • Example: df.filter(df['column_name'] > 10)

Add your answer

Q20. PArtition in data warehoue?

Ans.

Partitioning in data warehouse involves dividing large tables into smaller, more manageable parts based on certain criteria.

  • Partitioning helps improve query performance by allowing parallel processing of data.

  • Common partitioning methods include range, list, hash, and composite partitioning.

  • Example: Partitioning a sales table by date can improve query performance when searching for sales data within a specific time frame.

Add your answer

Q21. Normal Industry Parameters

Ans.

Normal industry parameters refer to the standard benchmarks and metrics used to evaluate performance and success within a specific industry.

  • Key performance indicators (KPIs) are often used to measure success and progress

  • Industry standards and regulations play a role in defining normal parameters

  • Benchmarking against competitors can help determine where a company stands in relation to others

  • Continuous monitoring and adjustment of parameters is important to stay competitive

Add your answer
Contribute & help others!
Write a review
Share interview
Contribute salary
Add office photos

Interview Process at Danblock Brakes

based on 11 interviews in the last 1 year
2 Interview rounds
One-on-one Round
Technical Round
View more
Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories

Top Team Lead Interview Questions from Similar Companies

3.5
 • 17 Interview Questions
3.8
 • 16 Interview Questions
3.9
 • 12 Interview Questions
4.3
 • 11 Interview Questions
3.8
 • 11 Interview Questions
4.1
 • 11 Interview Questions
View all
Share an Interview
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
70 Lakh+

Reviews

5 Lakh+

Interviews

4 Crore+

Salaries

1 Cr+

Users/Month

Contribute to help millions
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter