Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Jash Engineering Executive Interview Questions and Answers

Updated 5 Sep 2021

Jash Engineering Executive Interview Experiences

1 interview found

Executive Interview Questions & Answers

user image Anonymous

posted on 5 Sep 2021

I applied via Campus Placement and was interviewed before Sep 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Introduce yourself?
  • Q2. Volume of cube..
  • Ans. 

    The volume of a cube is calculated by multiplying the length of one side by itself three times.

    • The formula for calculating the volume of a cube is V = s^3, where V is the volume and s is the length of one side.

    • To find the volume, simply multiply the length of one side by itself three times.

    • For example, if the length of one side is 5 units, the volume of the cube would be 5^3 = 125 cubic units.

  • Answered by AI
  • Q3. Density of material
  • Ans. 

    Density of material refers to its mass per unit volume.

    • Density is measured in units such as grams per cubic centimeter or kilograms per cubic meter.

    • It is an important property in fields such as engineering, physics, and chemistry.

    • For example, the density of water is 1 gram per cubic centimeter.

    • The density of a material can also be used to determine its buoyancy in a fluid.

    • Higher density materials tend to sink while low

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be humble and confident

Interview questions from similar companies

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

Interview Questionnaire 

2 Questions

  • Q1. Basic civil questions
  • Q2. Weight of steel Mix ratio
  • Ans. 

    The weight of steel depends on its volume and density. Mix ratio varies depending on the type of steel.

    • The weight of steel can be calculated using the formula: weight = volume x density

    • The density of steel varies depending on the type of steel, but is typically around 7.85 g/cm³

    • Mix ratio refers to the proportion of different elements in the steel, such as carbon, manganese, and silicon

    • Different types of steel have diff...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Normal interview

I applied via Recruitment Consultant and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Civil supervison
  • Q2. Building & others consideration
  • Q3. Building,pipe line,sturcher& office documentaction work

Interview Preparation Tips

Interview preparation tips for other job seekers - Site supervision, H.R related and store keeper

Interview Questionnaire 

2 Questions

  • Q1. Your strong point
  • Q2. Excellent communication skill
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(8 Questions)

  • Q1. Boxing and unboxing in. C#
  • Q2. .net framework and .net core
  • Q3. Simple program to print star pattern in c#
  • Ans. 

    A simple program to print star pattern in C#

    • Use nested loops to print the desired pattern

    • Start with a small pattern and then expand it to more complex ones

    • Experiment with different loop structures to create various patterns

  • Answered by AI
  • Q4. String and string builder Mutable and immutable Heap and stack memory which is used when
  • Q5. Difference in stored procedure and functions ACiD properties, normalization
  • Ans. 

    Stored procedures and functions differ in their usage and capabilities. ACID properties ensure data integrity, normalization reduces redundancy.

    • Stored procedures are precompiled SQL queries that can perform multiple operations, while functions are reusable code blocks that return a single value.

    • Stored procedures can have input and output parameters, while functions can only return a single value.

    • ACID properties (Atomic...

  • Answered by AI
  • Q6. What are solid principles explain with example and also tell where you used them in previous project
  • Ans. 

    Solid principles are a set of design principles for writing maintainable and scalable code.

    • Single Responsibility Principle: A class should have only one reason to change. For example, a class that handles user authentication should not also be responsible for sending emails.

    • Open/Closed Principle: Software entities should be open for extension but closed for modification. For example, using interfaces to allow for new i...

  • Answered by AI
  • Q7. OOP related questions What are 4 pillars of OOP? Difference between encapsulation and abstraction. Difference in overloading and overriding.
  • Q8. Questions on Interitance Given 3 classes A is parent of B and B is parent of C How do we call methods of B and A from C Which method will be called incase of same method in A B and C And some more I don'...
Round 2 - HR 

(2 Questions)

  • Q1. Questions on salary expectations
  • Q2. And informal discussion about work and team

Skills evaluated in this interview

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

I applied via Referral and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(8 Questions)

  • Q1. Difference between abstract and interface. Create an object for an abstract class.
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructors, fields, and non-abstract methods along with abstract methods.

    • Interfaces can only have abstract methods and constants, no constructors or fields.

    • An abstract class can provide a default implementation for some methods, while an interface cannot.

    • An abstract class can be exten...

  • Answered by AI
  • Q2. Difference between findelement and findelements
  • Ans. 

    findelement returns the first matching element on the page, findelements returns a list of all matching elements.

    • findelement returns a single WebElement, findelements returns a list of WebElements

    • findelement throws NoSuchElementException if no element is found, findelements returns an empty list

    • Example: driver.findElement(By.id("exampleId")) vs driver.findElements(By.className("exampleClass"))

  • Answered by AI
  • Q3. Test scenarios for facebook login page
  • Ans. 

    Test scenarios for Facebook login page

    • Verify login with valid credentials

    • Verify login with invalid credentials

    • Verify login with empty username and password fields

    • Verify login with incorrect password

    • Verify login with incorrect username

    • Verify login with special characters in username and password

    • Verify login with locked account

    • Verify login with expired password

    • Verify login with CAPS LOCK on

    • Verify login with multiple logi

  • Answered by AI
  • Q4. Difference between regression and integration testing
  • Ans. 

    Regression testing ensures that new code changes do not adversely affect existing functionality, while integration testing checks if different modules work together correctly.

    • Regression testing focuses on retesting existing functionality after code changes

    • Integration testing checks if different modules work together as expected

    • Regression testing is usually automated to save time and effort

    • Integration testing may involv...

  • Answered by AI
  • Q5. Program to remove white spaces from string without any inbuilt function and explain
  • Ans. 

    Program to remove white spaces from string without any inbuilt function

    • Iterate through each character in the string

    • Create a new string and add non-white space characters to it

    • Return the new string without white spaces

  • Answered by AI
  • Q6. How to validate the checkbox is checked
  • Ans. 

    To validate if a checkbox is checked, use Selenium WebDriver to locate the checkbox element and then use the isSelected() method to check if it is checked.

    • Locate the checkbox element using Selenium WebDriver

    • Use the isSelected() method to check if the checkbox is checked

    • Assert the result to validate if the checkbox is checked

  • Answered by AI
  • Q7. How you can validate the button present on the UI is actually blue in colour
  • Ans. 

    To validate the button color, inspect the CSS properties or use a color picker tool.

    • Inspect the CSS properties of the button element to check the color value

    • Use a color picker tool to sample the color of the button on the UI

    • Compare the sampled color with the expected blue color value

  • Answered by AI
  • Q8. How you can validate the data with any value is present in the table in selenium
  • Ans. 

    You can validate data presence in a table using Selenium by locating the table element and then searching for the desired value.

    • Locate the table element using Selenium WebDriver

    • Iterate through the rows and columns of the table to find the desired value

    • Use assertions to validate if the value is present in the table

  • Answered by AI
Round 2 - Behavioral 

(5 Questions)

  • Q1. Can we overload/override function having same signatures but have different return types in java!
  • Ans. 

    No, in Java you cannot overload/override functions based on return types.

    • In Java, method overloading is based on the number and type of parameters, not the return type.

    • Method overriding is based on the method signature, which includes the method name, parameter types, and order, but not the return type.

    • Attempting to overload or override a method based solely on return type will result in a compilation error.

  • Answered by AI
  • Q2. Difference between put and patch
  • Ans. 

    PUT is used to update or replace an entire resource, while PATCH is used to update or modify a part of a resource.

    • PUT is idempotent, meaning multiple identical requests will have the same effect as a single request.

    • PATCH is not necessarily idempotent, as multiple identical requests may have different effects.

    • PUT requires the client to send the entire updated resource, while PATCH only requires the client to send the sp...

  • Answered by AI
  • Q3. How you can print numbers from one to 1000 without using any loop
  • Ans. 

    Use recursion to print numbers from 1 to 1000 without using loops

    • Create a recursive function that takes a number as input

    • Print the number and call the function with the next number until 1000 is reached

  • Answered by AI
  • Q4. About the project you've worked on
  • Q5. What are the majors have in this you have faced while performing testinge

Skills evaluated in this interview

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 Sep 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. How handle Customers in service
  • Ans. 

    Handle customers in service by listening actively, empathizing, resolving issues promptly, and following up.

    • Listen actively to understand customer needs and concerns

    • Empathize with customers to show understanding and build rapport

    • Resolve issues promptly and efficiently to ensure customer satisfaction

    • Follow up with customers to ensure their concerns have been addressed and they are satisfied

    • Provide personalized service t

  • Answered by AI
  • Q2. Product knowledge
  • Q3. How to familiar with your co workers
  • Ans. 

    Building relationships with coworkers through communication, collaboration, and mutual respect.

    • Initiate conversations and show genuine interest in your coworkers' lives and work

    • Participate in team-building activities and social events

    • Offer help and support when needed

    • Listen actively and communicate openly and honestly

    • Respect diversity and different perspectives

    • Celebrate achievements and milestones together

  • Answered by AI
  • Q4. Regarding educational questions
  • Q5. Are able to travel inside india
  • Ans. 

    Yes, I am able to travel inside India for work purposes.

    • I have traveled extensively within India for business meetings and conferences.

    • I am familiar with the major cities and transportation options in India.

    • I am willing to travel as required for this senior executive role.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Answer should be specific
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about our my self
  • Q2. Tell me about previous company experience
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Mar 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 Resume tips
Round 2 - Aptitude Test 

Technical questions regarding engineering, basic of pumps , other aptitudes

Round 3 - Group Discussion 

Group activities, based on activities performed they evaluate candidates

Interview Preparation Tips

Interview preparation tips for other job seekers - Technical interview & HR interview .
Basic of pumps , engineering project related questions, basics of pump industry

I applied via Naukri.com and was interviewed in Feb 2022. There were 9 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 Resume tips
Round 2 - HR 

(8 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Share details of your previous job.
  • Q4. Why should we hire you?
  • Q5. Why are you looking for a change?
  • Q6. Where do you see yourself in 5 years?
  • Q7. What are your strengths and weaknesses?
  • Q8. Tell me about yourself.
Round 3 - Group Discussion 
Pro Tip by AmbitionBox:
Don’t treat group discussions as an argument. Group discussion is about reaching a meaningful conclusion.
View all GD tips
Round 4 - Assignment 

Chemistry

Round 5 - Assignment 
Round 6 - Case Study 
Round 7 - HR 

(1 Question)

  • Q1. Water transfer plant
Round 8 - Assignment 
Round 9 - Coding Test 

Interview Preparation Tips

Interview preparation tips for other job seekers - Thank you for question and I have happy
Contribute & help others!
anonymous
You can choose to be anonymous

Jash Engineering Interview FAQs

How to prepare for Jash Engineering Executive 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 Jash Engineering. The most common topics and skills that interviewers at Jash Engineering expect are Alv Reports, Cost Estimation, Purchase Order, SAP and Vendor Coordination.
What are the top questions asked in Jash Engineering Executive interview?

Some of the top questions asked at the Jash Engineering Executive interview -

  1. Volume of cub...read more
  2. Density of mater...read more

Recently Viewed

INTERVIEWS

Nielsen

No Interviews

INTERVIEWS

Wissen Technology

No Interviews

INTERVIEWS

Jash Engineering

No Interviews

JOBS

Wissen Technology

No Jobs

SALARIES

Cavisson Systems

SALARIES

ZeMoSo Technologies

INTERVIEWS

Nielsen

No Interviews

SALARIES

Wissen Technology

INTERVIEWS

Nielsen

No Interviews

INTERVIEWS

Nielsen

No Interviews

Tell us how to improve this page.

Interview Questions from Similar Companies

Thermax Limited Interview Questions
4.1
 • 249 Interviews
Forbes Marshall Interview Questions
4.1
 • 41 Interviews
GAMMON INDIA Interview Questions
3.8
 • 29 Interviews
Ksb Pumps Interview Questions
3.9
 • 27 Interviews
C.R.I. Pumps Interview Questions
3.8
 • 27 Interviews
Sulzer Interview Questions
3.9
 • 27 Interviews
SPML Infra Interview Questions
3.8
 • 16 Interviews
View all
Jash Engineering Executive Salary
based on 11 salaries
₹3.2 L/yr - ₹4.9 L/yr
8% less than the average Executive Salary in India
View more details

Jash Engineering Executive Reviews and Ratings

based on 2 reviews

4.9/5

Rating in categories

4.9

Skill development

4.9

Work-life balance

3.0

Salary

4.9

Job security

3.0

Company culture

1.1

Promotions

4.9

Work satisfaction

Explore 2 Reviews and Ratings
Assistant Manager
25 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Engineer
23 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Deputy Manager
17 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Design Engineer
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Design Engineer
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Jash Engineering with

Thermax Limited

4.1
Compare

Forbes Marshall

4.1
Compare

Kirloskar Brothers

3.8
Compare

Ksb Pumps

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