Upload Button Icon Add office photos

Filter interviews by

Venus Robotics Engineer Interview Questions and Answers

Updated 5 Apr 2022

Venus Robotics Engineer Interview Experiences

1 interview found

Engineer Interview Questions & Answers

user image Anonymous

posted on 29 Mar 2021

I applied via Walk-in and was interviewed in Mar 2022. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Technical Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for the technically.

Interview questions from similar companies

I appeared for an interview in Jul 2016.

Interview Questionnaire 

5 Questions

  • Q1. What do you know about assembly language?
  • Ans. 

    Assembly language is a low-level programming language that is specific to a particular computer architecture.

    • Assembly language is a symbolic representation of machine code instructions.

    • It is used to write programs that directly control the computer's hardware.

    • Assembly language is platform-dependent and requires knowledge of the computer's architecture.

    • It provides direct access to the computer's memory and registers.

    • Exa...

  • Answered by AI
  • Q2. Where is it used?
  • Q3. My project related questions
  • Q4. Questions like are you ready to relocate?
  • Q5. More situation based questions

Interview Preparation Tips

Round: Technical Interview
Experience: My interview was more on technical line. Questions were asked to check my technical skills related to the job applied.

Round: HR Interview
Experience: Few real life company problems were asked. You can easily develop the ability to answer such questions by participating in more project works.

Skills: Interpersonal Skills, Technical Skills
College Name: Vivekanand Education Society's Institute Of Technology (VESIT)

I applied via Company Website and was interviewed before Jan 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Wifi connectivity

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn about wifi and performance

Engineer Interview Questions & Answers

TCS user image Anonymous

posted on 1 Jul 2015

Interview Preparation Tips

Round: Other Interview
Experience: They were core interviews basically and highly focused on Resume points.
Tips: Projects and internships were given significant importance and they grilled students on these aspects.

General Tips: Interview questions were mostly core sprinkled with a few HR questions. They asked a lot of questions on Heat,mass transfer. They look for students who have good conceptual knowledge of fundamentals of core courses.
Skill Tips: High importance was given to all courses basics.
Skills: Core courses concepts., Project and internship experiences.
College Name: IIT MADRAS

I applied via Naukri.com and was interviewed before Apr 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Swap two numbers without using temp variable
  • Ans. 

    Swapping two numbers without using a temp variable

    • Use arithmetic operations to swap the values

    • Add the two numbers and store the result in the first variable

    • Subtract the second variable from the result and store it in the second variable

    • Subtract the second variable from the first variable to get the original value of the second variable

    • Example: a=5, b=7; a=a+b=12, b=a-b=5, a=a-b=7

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't go for service based companies

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. Past experience and communication skills

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Interview Questionnaire 

3 Questions

  • Q1. How make the current in transformer?
  • Ans. 

    The current in a transformer is made by inducing voltage across the primary coil.

    • The primary coil of a transformer is connected to an alternating current (AC) source.

    • The alternating current in the primary coil creates a changing magnetic field.

    • This changing magnetic field induces a voltage across the secondary coil.

    • The induced voltage in the secondary coil causes a current to flow through it.

    • The current in the secondar...

  • Answered by AI
  • Q2. Explain the dc shunt motors
  • Ans. 

    DC shunt motors are a type of direct current motor that have a parallel field winding and a series armature winding.

    • DC shunt motors have a parallel field winding and a series armature winding.

    • They are commonly used in applications that require constant speed and moderate starting torque.

    • The speed of a DC shunt motor can be controlled by varying the field current or the armature voltage.

    • DC shunt motors are widely used i...

  • Answered by AI
  • Q3. Characteristics of dc shunt motor
  • Ans. 

    A DC shunt motor is a type of direct current motor that has a shunt field winding connected in parallel with the armature winding.

    • The field winding and armature winding are connected in parallel

    • The shunt motor has a relatively constant speed-torque characteristic

    • The speed of the motor can be controlled by varying the field current

    • The motor provides good starting torque

    • The shunt motor is commonly used in applications wh...

  • Answered by AI

I applied via Naukri.com and was interviewed before Jul 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Coming to AEM,Interviewer has covered all the topics.

Interview Preparation Tips

Interview preparation tips for other job seekers - Pls don't join in TechMahindra.Especially for AEM Folks.Because there are no projects at all.They force you to learn and work in other domain.Then your AEM knowledge will vanish.Worst Company.

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 Questionnaire 

3 Questions

  • Q1. About skilla
  • Q2. Project
  • Q3. Roles in

Tell us how to improve this page.

Engineer Interview Questions from Similar Companies

TCS Engineer Interview Questions
3.7
 • 21 Interviews
Wipro Engineer Interview Questions
3.7
 • 4 Interviews
View all

Venus Robotics Engineer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

4.0

Skill development

2.0

Work-life balance

3.0

Salary

4.0

Job security

2.0

Company culture

1.0

Promotions

2.0

Work satisfaction

Explore 1 Review and Rating
Compare Venus Robotics with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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