Upload Button Icon Add office photos

Filter interviews by

ConverSight.ai Product Engineer Interview Questions and Answers

Updated 29 Mar 2024

ConverSight.ai Product Engineer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is reactjs
  • Ans. 

    ReactJS is a JavaScript library for building user interfaces.

    • Declarative: React makes it easy to create interactive UIs.

    • Component-Based: UIs are broken down into reusable components.

    • Virtual DOM: React uses a virtual DOM for better performance.

    • One-Way Data Binding: Data flows in one direction, making it easier to manage state.

    • JSX: React uses JSX, a syntax extension that allows mixing HTML with JavaScript.

  • Answered by AI
  • Q2. What is virtual DOM
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM in memory, used for efficient updating of the real DOM.

    • Virtual DOM is a concept used in frameworks like React to improve performance by minimizing actual DOM manipulations.

    • When changes are made to the virtual DOM, a diffing algorithm is used to identify the minimal changes needed in the real DOM.

    • This approach reduces the number of updates to the actual DOM, resulting ...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic java question
Round 2 - HR 

(1 Question)

  • Q1. Tell about tcs , why u want to join?
  • Ans. 

    TCS is a global IT services, consulting, and business solutions company. I want to join TCS because of its reputation for innovation and career growth opportunities.

    • TCS is a leading global IT services company

    • Known for innovation and cutting-edge technology solutions

    • Offers excellent career growth opportunities

    • Has a strong reputation in the industry

    • Provides a diverse and inclusive work environment

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic coding in c++ and hr related questions
  • Q2. What is linkedlist
  • Ans. 

    A linked list is a data structure that consists of nodes where each node contains a data field and a reference to the next node in the sequence.

    • Consists of nodes connected by pointers

    • Each node contains data and a reference to the next node

    • Allows for dynamic size and efficient insertion/deletion

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Data interpretation good knowledge one should have

Round 2 - Coding Test 

Python or java basic coding problems

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Intermediate with more solving problems

Round 2 - Technical 

(1 Question)

  • Q1. Highly based on java

Interview Preparation Tips

Interview preparation tips for other job seekers - Good luck
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Jul 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic Questions were given in aptitude tests all from reasoning and maths.

Round 2 - Coding Test 

Two codes were taken one was easy but the second was a little bit tricky.

Round 3 - One-on-one 

(2 Questions)

  • Q1. What are cin and cout?
  • Ans. 

    cin and cout are standard input and output streams in C++ used for reading input and printing output respectively.

    • cin is used for reading input from the user

    • cout is used for printing output to the console

    • Example: cin >> x; cout << x;

  • Answered by AI
  • Q2. What is your hobby?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and clam rest will happen by all your hardwork.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Sep 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

(3 Questions)

Online test consists of
1. Aptitude section
2. Coding
3. Essay writing

1. Aptitude which contains Quants + Logical + Verbal
2. Coding (2 questions)
3. Essay Writing(, 400 words in 20 mins)

  • Q1. Decrypting the given string
  • Ans. 

    The question is about decrypting a given string.

    • Ask for more information about the encryption method used

    • Check if there are any clues or hints provided

    • Try different decryption techniques such as substitution, transposition, or symmetric/asymmetric encryption

    • Use online tools or libraries to assist with decryption

  • Answered by AI
  • Q2. DSA based question
  • Ans. 

    Implement a function to check if a given string is a palindrome or not.

    • A palindrome is a word, phrase, number, or other sequence of characters that reads the same forward and backward.

    • Convert the string to lowercase and remove all non-alphanumeric characters.

    • Compare the first and last characters, then the second and second-to-last characters, and so on until the middle of the string is reached.

    • If all pairs match, the s...

  • Answered by AI
  • Q3. Essay topic:- which one would be given higher priority passion or salary
  • Ans. 

    Passion or salary: which should be given higher priority?

    • Passion should be given higher priority as it leads to job satisfaction and better performance

    • Salary is important but it should not be the sole factor in choosing a job

    • Passion can also lead to better career growth and opportunities

    • However, financial stability is also important and should not be ignored completely

  • Answered by AI
Round 2 - HR 

(8 Questions)

  • Q1. Asked me to introduce myself.
  • Ans. 

    I am a product engineer with experience in designing and developing innovative products.

    • I have a degree in mechanical engineering and have worked in the field for 5 years.

    • I have experience in CAD software and 3D printing.

    • I have designed and developed products such as a smart water bottle and a portable solar charger.

    • I am passionate about creating products that improve people's lives.

  • Answered by AI
  • Q2. Asked about my project
  • Ans. I did a mini project on random password generator in python and described the whole process of the project and result with validation
  • Answered by PrepInsta
  • Q3. Asked the difference between C and Java
  • Ans. 

    C is a low-level language while Java is a high-level language with automatic memory management.

    • C is compiled while Java is interpreted

    • C has pointers while Java does not

    • Java has built-in garbage collection while C does not

    • Java is platform-independent while C is not

    • Java has a larger standard library than C

  • Answered by AI
  • Q4. Asked about method overloading
  • Ans. 

    Method overloading is a feature in OOP where multiple methods can have the same name but different parameters.

    • Method overloading allows for more flexibility in programming

    • The compiler determines which method to call based on the number and type of arguments passed

    • Example: public void print(int num) and public void print(String str) can both be called using print() method

  • Answered by AI
  • Q5. Asked me to explain a program in any programming language I was comfortable in
  • Ans. 

    Explained a program in a programming language I was comfortable in

    • I chose to explain a program in Python

    • The program was a simple calculator that could perform basic arithmetic operations

    • I explained the code step by step, starting with importing the necessary modules and defining functions

    • I also discussed the use of variables and data types in the program

    • Finally, I demonstrated how the program could be run and tested wi

  • Answered by AI
  • Q6. Asked me to explain about OOPs concepts
  • Ans. 

    OOPs concepts are a programming paradigm that focuses on objects and their interactions.

    • OOPs stands for Object-Oriented Programming.

    • It involves the use of classes, objects, encapsulation, inheritance, and polymorphism.

    • Classes are templates for creating objects, while objects are instances of classes.

    • Encapsulation is the process of hiding the implementation details of an object from the outside world.

    • Inheritance allows ...

  • Answered by AI
  • Q7. Are you okay with relocation?
  • Ans. 

    Yes, I am open to relocation for the right opportunity.

    • I am willing to relocate for a challenging and rewarding role

    • I am open to exploring new cities and cultures

    • I understand that relocation may be necessary for career growth

    • I am willing to consider relocation assistance if offered

    • Examples: I have previously relocated for a job opportunity and enjoyed the experience

    • I have researched the potential new location and am ex

  • Answered by AI
  • Q8. Are you okay signing a service bond?
  • Ans. 

    Yes, I am willing to sign a service bond.

    • I understand that a service bond is a commitment to work for a certain period of time with the company.

    • I am willing to sign a service bond if it is reasonable and fair.

    • I would like to know the terms and conditions of the bond before signing it.

    • I believe that signing a service bond shows my commitment to the company and the product.

    • Examples of reasonable service bond terms includ...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundAt the time of the interview, I had 0 Years (fresher) of experience. My academic qualification is B.Tech from Sri Venkateshwara Engineering College.Wipro interview preparation:Resources to prepare for this interview - I have seen many interview experiences on YouTube and got an idea like how questions are being askedTips for other job seekers - Be confident in your answers. And try to give descriptive answers. If you are writing a code, explain your logic, and thought process behind it.Final outcome of the interviewSelected

I applied via Referral and was interviewed in Sep 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic technical questions related to your field

Interview Preparation Tips

Interview preparation tips for other job seekers - Project experiences in previous company and manager will be there for technical interview..required detailed explanation which products you are working

Interview Questionnaire 

7 Questions

  • Q1. Java applets
  • Q2. Difference between java and c++
  • Ans. 

    Java is an object-oriented programming language while C++ is a general-purpose programming language.

    • Java is platform-independent while C++ is platform-dependent.

    • Java has automatic garbage collection while C++ requires manual memory management.

    • Java has a simpler syntax compared to C++.

    • Java has a built-in support for multithreading while C++ requires external libraries.

    • C++ allows for low-level memory manipulation while J...

  • Answered by AI
  • Q3. OOPS encapsulation etc
  • Q4. Tell me about yourself
  • Q5. Explain IOT in layman terms
  • Ans. 

    IOT is a network of physical devices that are connected and can communicate with each other to perform tasks.

    • IOT stands for Internet of Things

    • It involves connecting everyday devices to the internet

    • These devices can communicate with each other and with us

    • Examples include smart homes, wearable technology, and industrial sensors

  • Answered by AI
  • Q6. Why code in java
  • Ans. 

    Java is a popular language for its platform independence, object-oriented programming, and vast community support.

    • Java is platform-independent, meaning it can run on any operating system without modification.

    • Java is object-oriented, allowing for modular and reusable code.

    • Java has a vast community of developers and libraries, making it easy to find solutions to problems.

    • Java is used in a variety of applications, includi...

  • Answered by AI
  • Q7. Any relocation problem
  • Ans. 

    Relocation is not a problem for me.

    • I am open to relocating for the right opportunity.

    • I have experience relocating for previous jobs and have successfully adapted to new environments.

    • I am flexible and willing to adjust to new locations and cultures.

    • I understand the challenges that come with relocation and have a plan in place to handle them.

    • I have researched the potential relocation area and am excited about the opportu

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: There were 2 sections of english and quantitative aptitude. 40 questions were to be answered.
After that there was coding round in which 2 questions were asked. 70 mins were provided.
Duration: 40 minutes
Total Questions: 40

Round: Technical Interview
Experience: This was a personal interview round and questions were asked froms OOPS and basic programming. They were basically looking for projects.

Round: HR Interview
Experience: This was a skype round and general questions were asked by the HR. They just wanted to test the basic knowledge and communication skills of the student.

Skills: Talking Ability, Coding Skills, Project
College Name: Netaji Subhas Institute Of Technology, Delhi

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. What is your grip on C?
  • Ans. 

    I have a strong grip on C programming language.

    • I have experience in writing efficient and optimized code in C.

    • I am familiar with data structures and algorithms in C.

    • I have worked on projects involving embedded systems and device drivers in C.

    • I have knowledge of memory management and pointers in C.

    • I have used C to develop applications in various domains such as networking, gaming, and system programming.

  • Answered by AI
  • Q2. How do you plan on coping up in IT?
  • Ans. 

    I plan on coping up in IT by continuously learning and adapting to new technologies and industry trends.

    • Continuously learning and staying updated with the latest technologies and industry trends

    • Taking up relevant courses, certifications, and attending workshops or conferences

    • Networking and collaborating with professionals in the IT field

    • Seeking mentorship and guidance from experienced professionals

    • Practicing problem-so...

  • Answered by AI
  • Q3. How do you cope under pressure?

Interview Preparation Tips

Round: Test
Experience: The test was ok, not too easy or not too bad. If you know your basics and have good time management skills. The test wouldn't be too much of a problem.
Tips: * Get good ground on your basics
* Manage time accordingly

Round: Technical Interview
Experience: I've learned that being cool and confident is the key. Though things tend to make you nervous, we can't let that get to us.
Tips: * Make sure what you're trying to say is put forward effectively
* Maintain clear precision in your answers

General Tips: * Enjoy your experience
* Realize there's nothing to lose
* Don't worry about making mistakes
*Be prepared
Good luck!
Skill Tips: * Be cool
* Be confident
* Maintain clarity
Skills: Critical Thinking, Working Under Pressure
College Name: university college of engineering, Osmania University

Skills evaluated in this interview

ConverSight.ai Interview FAQs

How many rounds are there in ConverSight.ai Product Engineer interview?
ConverSight.ai interview process usually has 1 rounds. The most common rounds in the ConverSight.ai interview process are Technical.
What are the top questions asked in ConverSight.ai Product Engineer interview?

Some of the top questions asked at the ConverSight.ai Product Engineer interview -

  1. What is reac...read more
  2. What is virtual ...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 7.9k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 4.9k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all
ConverSight.ai Product Engineer Salary
based on 7 salaries
₹5.5 L/yr - ₹12 L/yr
12% less than the average Product Engineer Salary in India
View more details

ConverSight.ai Product Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

3.0

Work-Life balance

3.0

Salary & Benefits

5.0

Job Security

3.0

Company culture

5.0

Promotions/Appraisal

2.0

Work Satisfaction

Explore 1 Review and Rating
Product Engineer
7 salaries
unlock blur

₹5.5 L/yr - ₹12 L/yr

Devops Engineer
7 salaries
unlock blur

₹3.8 L/yr - ₹7 L/yr

Data Analyst
5 salaries
unlock blur

₹8.5 L/yr - ₹9 L/yr

Senior Product Developer
4 salaries
unlock blur

₹9 L/yr - ₹30 L/yr

Test Engineer
3 salaries
unlock blur

₹4 L/yr - ₹7 L/yr

Explore more salaries
Compare ConverSight.ai with

Fractal Analytics

4.0
Compare

Tiger Analytics

3.6
Compare

Mu Sigma

2.7
Compare

LatentView Analytics

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview