Upload Button Icon Add office photos

Filter interviews by

Votary Softech Solutions Embedded Software Engineer Interview Questions and Answers for Freshers

Updated 3 Sep 2023

Votary Softech Solutions Embedded Software Engineer Interview Experiences for Freshers

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Mar 2023. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

(2 Questions)

  • Q1. Apptitude on c Landuage questions and guess the out put for given code concentrate only on C language for this role
  • Q2. What are the segments in stacks and heap
  • Ans. 

    Stack and heap are segments of memory used in programming. Stack is used for static memory allocation, while heap is used for dynamic memory allocation.

    • Stack is used for static memory allocation, where memory is allocated and deallocated in a last-in-first-out order.

    • Heap is used for dynamic memory allocation, where memory is allocated and deallocated in any order.

    • Examples: Stack is used for function call stack, local v...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Ask about previous company experience and skill whats the expected salary discussion on company policies bond agreements original document submission for 6 months bond breakage amount and open for relocati...
Round 4 - One-on-one 

(1 Question)

  • Q1. Technical questions on clanguage and c++ testing and debugging tools questions if shortlisted this will be final rounf if not therse will be one more one on one round
Round 5 - both one on one and apptitude 

(1 Question)

  • Q1. Discussion with CEO for company policies and one on one round on technical questions like c language and the embedded boards that you are worked on

Interview Preparation Tips

Topics to prepare for Votary Softech Solutions Embedded Software Engineer interview:
  • c language
  • Linux
  • Shell Scripting
  • Linux Kernel
  • Unit Testing
Interview preparation tips for other job seekers - Need to be Strong in C language for freshers and if expericed also to be strong in technical terms and tools that use are used in previous company and the boards or IDES that you are worked on in previous companies

Skills evaluated in this interview

Interview questions from similar companies

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

Interview Questionnaire 

1 Question

  • Q1. Introduction, pillars of OOP, Js, Linked list, stack, queue, Constrictor, Operator overloading, CSS HTML JS Basics

Interview Preparation Tips

Interview preparation tips for other job seekers - Just clear your besic concept

I applied via Referral and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Coding Test 

If you are a fresher , then this is for you else almost no coding test for experienced candidates.

Round 2 - One-on-one 

(1 Question)

  • Q1. Javascript basics, Angular react general questions depends upon profile.
Round 3 - Behavioral 

(1 Question)

  • Q1. They asked general questions related to some hectic situation faced in previous company / project..

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm . Clear your basics . That's it.

I applied via Company Website and was interviewed in May 2022. There were 3 interview rounds.

Round 1 - Coding Test 

There were 5 coding question, I have completed 4 question and got a call for an interview.

Round 2 - Technical 

(2 Questions)

  • Q1. All basics question of c, like pointer, structure, dynamic allocation
  • Q2. One easy coding problem
Round 3 - HR 

(1 Question)

  • Q1. This round is a confirmation of your selection in company.

Interview Preparation Tips

Topics to prepare for Revature Software Engineer interview:
  • Clear Basics
Interview preparation tips for other job seekers - TR is main round. Focus on basics of any one language with implementation.

I applied via Recruitment Consulltant and was interviewed in Oct 2022. 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 - Technical 

(3 Questions)

  • Q1. Here technical round was very important .you want to right infront of interviewers .They test your problem skills.
  • Q2. Related python questions. Armstrong numbers,febonnic numbers.
  • Q3. About your self and education ,if upload any projects in your resume you want to explain their

Interview Preparation Tips

Interview preparation tips for other job seekers - Dear, Job seekers you want learn must and should aptitude and communication skills

Software Engineer Interview Questions & Answers

Revature user image Udayasri Sailakshmi

posted on 4 Feb 2024

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

Regarding coding, ds

Round 2 - HR 

(5 Questions)

  • Q1. Tell me about your selfl
  • Q2. About orientation of revature pre-training
  • Q3. Cgpa of ug, inter, 10th
  • Ans. 

    The question asks for the CGPA of undergraduate, intermediate, and 10th grade.

    • Provide the CGPA obtained in undergraduate degree

    • Provide the CGPA obtained in intermediate

    • Provide the CGPA obtained in 10th grade

  • Answered by AI
  • Q4. About b. Tech projects
  • Q5. About my Hobbies, interested things
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic Aptitude , English

Round 2 - Technical 

(2 Questions)

  • Q1. Which programming language you know
  • Ans. 

    I am proficient in Java, Python, C++, and JavaScript.

    • Java

    • Python

    • C++

    • JavaScript

  • Answered by AI
  • Q2. Normalization im
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(4 Questions)

  • Q1. What is singleton design pattern
  • Ans. 

    Singleton design pattern restricts the instantiation of a class to a single instance and provides global access to it.

    • Used when only one instance of a class is required throughout the application

    • Provides a global point of access to the instance

    • Implemented using a private constructor, static method, and static variable

    • Example: Logger class, Database connection class

  • Answered by AI
  • Q2. C# LINQ queries for group and sum data from data table
  • Ans. 

    C# LINQ queries for group and sum data from data table

    • Use GroupBy() method to group data based on a specific column

    • Use Sum() method to calculate the sum of a column

    • Use Select() method to select the required columns

  • Answered by AI
  • Q3. Solid design principles
  • Ans. 

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

    • Single Responsibility Principle (SRP) - each class should have only one responsibility

    • Open/Closed Principle (OCP) - classes should be open for extension but closed for modification

    • Liskov Substitution Principle (LSP) - subclasses should be able to replace their parent classes without affecting the program's correctness

    • Interface Se...

  • Answered by AI
  • Q4. OOPS concepts ,like association and all

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are an experienced software Engineer, focus on designing part of the system.

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude test and was unproctored

Round 2 - Technical 

(1 Question)

  • Q1. It was a online technical round

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare SQL concepts and basic OOPs concepts
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

MCQ questions on OS, JS and HTML

Round 2 - Coding Test 

Basic Questions from resume. String/Array DSA questions

Votary Softech Solutions Interview FAQs

How many rounds are there in Votary Softech Solutions Embedded Software Engineer interview for freshers?
Votary Softech Solutions interview process for freshers usually has 5 rounds. The most common rounds in the Votary Softech Solutions interview process for freshers are Resume Shortlist, Coding Test and HR.
How to prepare for Votary Softech Solutions Embedded Software Engineer interview for freshers?
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 Votary Softech Solutions. The most common topics and skills that interviewers at Votary Softech Solutions expect are Bluetooth, Bsp, Camera, Embedded C and Embedded Software.
What are the top questions asked in Votary Softech Solutions Embedded Software Engineer interview for freshers?

Some of the top questions asked at the Votary Softech Solutions Embedded Software Engineer interview for freshers -

  1. what are the segments in stacks and h...read more
  2. apptitude on c Landuage questions and guess the out put for given code concentr...read more
  3. discussion with CEO for company policies and one on one round on technical ques...read more

Tell us how to improve this page.

Votary Softech Solutions Embedded Software Engineer Interview Process for Freshers

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 49 Interviews
Cyfuture Interview Questions
3.0
 • 45 Interviews
IT By Design Interview Questions
3.5
 • 40 Interviews
Revature Interview Questions
3.5
 • 40 Interviews
ConsultAdd Interview Questions
3.5
 • 36 Interviews
View all
Votary Softech Solutions Embedded Software Engineer Salary
based on 13 salaries
₹3.4 L/yr - ₹6.8 L/yr
34% less than the average Embedded Software Engineer Salary in India
View more details

Votary Softech Solutions Embedded Software Engineer Reviews and Ratings

based on 2 reviews

3.3/5

Rating in categories

3.3

Skill development

3.3

Work-life balance

3.7

Salary

2.7

Job security

3.3

Company culture

3.3

Promotions

3.3

Work satisfaction

Explore 2 Reviews and Ratings
Software Engineer
149 salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Senior Software Engineer
45 salaries
unlock blur

₹7.2 L/yr - ₹20 L/yr

Softwaretest Engineer
16 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Technical Lead
15 salaries
unlock blur

₹16.5 L/yr - ₹30 L/yr

Embedded Software Engineer
13 salaries
unlock blur

₹3.3 L/yr - ₹6.8 L/yr

Explore more salaries
Compare Votary Softech Solutions with

Maxgen Technologies

4.6
Compare

Cyfuture

3.0
Compare

Value Point Systems

3.6
Compare

JoulestoWatts Business Solutions

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