Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Vahmine Technologies Team. If you also belong to the team, you can get access from here

Vahmine Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Vahmine Technologies Interview Questions and Answers

Updated 22 Apr 2024

Vahmine Technologies Interview Experiences

Popular Designations

2 interviews found

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

I applied via LinkedIn and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Basic Android question, data structure
  • Q2. Broadcast reciever
  • Q3. Java based question

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)

Developer Interview Questions & Answers

user image Anonymous

posted on 22 May 2023

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
No response
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 

(2 Questions)

  • Q1. What is the difference between array and collections?
  • Ans. 

    Arrays are fixed in size and store homogeneous data types, while collections are dynamic and store heterogeneous data types.

    • Arrays are declared with a fixed size, while collections can grow or shrink dynamically.

    • Arrays can only store elements of the same data type, while collections can store elements of different data types.

    • Arrays are faster for accessing elements, while collections are better for adding or removing e...

  • Answered by AI
  • Q2. Explain a scenario where you will use join query?
  • Ans. 

    Join queries are used to combine data from multiple tables based on a common column.

    • Join queries are used when data is spread across multiple tables and needs to be combined for analysis.

    • They are useful for retrieving data from related tables, such as customer orders and order details.

    • Join queries can be used to filter data based on specific criteria, such as only retrieving orders from a certain date range.

    • There are d...

  • Answered by AI

Skills evaluated in this interview

Developer Interview Questions asked at other Companies

Q1. Which programming language do you use regular in work
View answer (2)

Interview questions from similar companies

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

Paper based exam based on C and embedded c

Round 2 - One-on-one 

(1 Question)

  • Q1. Relevant questions asked
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Focuis on math and on science language

Round 2 - Coding Test 

Focus on mathematics

I applied via Naukri.com and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. All related to project worked on wlan testing and networking concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall Good.
They gave taken 3 technical and 1hr round
Round 1 - Aptitude Test 
Round 2 - Coding Test 
Round 3 - Technical 

(1 Question)

  • Q1. Had discussion about C, DS in depth
Round 4 - Technical 

(1 Question)

  • Q1. Questions about C and DS and basics of OS.
Round 5 - HR 

(1 Question)

  • Q1. What are the strengths and weaknesses of yours.

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through C, DS, Linux and C++.

I applied via Other and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic C language question like what is pointer ,Array,structure,Call by reference, Difference between union and structure. Some programming question are prime number,factorial,fabonacci series,strings etc

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good first of all learn every basic programming question and some times it also depend on interviewer

I applied via Naukri.com and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. 1) What is volatile? 2) What is constant? 3) Can we use volatile and const at a time?4) What is ISR how it works?
  • Ans. 

    Answers to questions related to software engineering concepts.

    • Volatile is a keyword used to indicate that a variable's value can be changed unexpectedly.

    • Constant is a keyword used to indicate that a variable's value cannot be changed once it is assigned.

    • Volatile and const can be used together to indicate that a variable's value cannot be changed and that it may change unexpectedly.

    • ISR stands for Interrupt Service Routi...

  • Answered by AI
  • Q2. What is pointer? Explain dangling pointer, null pointer, void pointer.
  • Ans. 

    A pointer is a variable that stores the memory address of another variable. Dangling, null, and void pointers are types of pointers.

    • Dangling pointer: a pointer that points to a memory location that has been deallocated or freed

    • Null pointer: a pointer that does not point to any memory location

    • Void pointer: a pointer that has no specific data type and can point to any data type

  • Answered by AI
  • Q3. Storage classes explain all the storage classes in c.
  • Ans. 

    Storage classes in C define the scope and lifetime of variables.

    • auto: default storage class for local variables

    • register: stores variables in CPU registers for faster access

    • static: retains value between function calls

    • extern: used to access global variables across multiple files

  • Answered by AI
  • Q4. Compilation stages.
  • Q5. Projects done at previous company with clear explanation.
  • Q6. CAN, SPI, I2C, UART differences.
  • Q7. Explain CAN data frame.
  • Ans. 

    CAN data frame is a message format used in Controller Area Network (CAN) protocol.

    • CAN data frame consists of 7 fields: Start of Frame (SOF), Arbitration ID, Control Bits, Data Length Code (DLC), Data Field, Cyclic Redundancy Check (CRC), and End of Frame (EOF).

    • The Arbitration ID field is used to identify the message priority and the source of the message.

    • The Data Field can contain up to 8 bytes of data.

    • The CRC field is...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just go through whatever things you have kept on your resume. Go through the project. Practice C as much as possible most of the questions will be asked on C programming.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Sep 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Write a Prime number function using C
  • Ans. 

    A function in C to check if a number is prime or not

    • Create a function that takes an integer as input

    • Check if the input number is divisible by any number from 2 to its square root

    • If it is not divisible by any number, return true (prime), else return false (not prime)

  • Answered by AI
  • Q2. Write some basic codes for Manipulation in array
  • Ans. 

    Basic codes for array manipulation including sorting, searching, and filtering.

    • Use built-in functions like sort() for sorting arrays.

    • Implement algorithms like binary search for searching in arrays.

    • Utilize filter() method for filtering arrays based on specific criteria.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, Keep calm and make sure you mentally prepared.

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. 1. Assignment
  • Q2. 2. Bunch of python questions.
  • Q3. 3. coding questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear with basics.

Vahmine Technologies Interview FAQs

How many rounds are there in Vahmine Technologies interview?
Vahmine Technologies interview process usually has 1-2 rounds. The most common rounds in the Vahmine Technologies interview process are Technical and Resume Shortlist.
What are the top questions asked in Vahmine Technologies interview?

Some of the top questions asked at the Vahmine Technologies interview -

  1. What is the difference between array and collectio...read more
  2. Explain a scenario where you will use join que...read more
  3. Basic Android question, data struct...read more

Tell us how to improve this page.

Vahmine Technologies Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

MyOperator Interview Questions
3.6
 • 21 Interviews
Ichhapurti.com Interview Questions
2.3
 • 19 Interviews
View all

Vahmine Technologies Reviews and Ratings

based on 7 reviews

2.5/5

Rating in categories

3.3

Skill development

2.8

Work-life balance

1.5

Salary

2.1

Job security

3.0

Company culture

2.2

Promotions

3.2

Work satisfaction

Explore 7 Reviews and Ratings
Android Developer
4 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Senior Android Developer
4 salaries
unlock blur

₹3.6 L/yr - ₹13.6 L/yr

Flutter Developer
4 salaries
unlock blur

₹3.6 L/yr - ₹3.6 L/yr

IOS Developer
3 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Customer Success Manager
3 salaries
unlock blur

₹2.4 L/yr - ₹5.8 L/yr

Explore more salaries
Compare Vahmine Technologies with

Yalamanchili Software Exports

3.3
Compare

ScoreMe Solutions

4.3
Compare

Xtancia Technosoft

4.0
Compare

Global Edge Software

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