Upload Button Icon Add office photos

Filter interviews by

Blaize Software Engineer II Interview Questions and Answers

Updated 11 Mar 2023

Blaize Software Engineer II Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Feb 2023. 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 tips
Round 2 - Technical 

(1 Question)

  • Q1. Basic Questions about C,DS
Round 3 - Technical 

(1 Question)

  • Q1. Tree based Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up C, C++ & DS, Basic managerial, behavioural Questions .

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Test contains 26 questions for me 13 are java based 13 are c++ based

Round 2 - Technical 

(2 Questions)

  • Q1. Indexing in dbms
  • Ans. 

    Indexing in DBMS is a technique to improve the performance of queries by creating a data structure that allows for faster retrieval of data.

    • Indexes are created on columns in a database table to speed up the retrieval of rows that match a certain condition.

    • Types of indexes include clustered, non-clustered, unique, and composite indexes.

    • Examples of indexing techniques include B-tree, hash, and bitmap indexes.

    • Indexing can...

  • Answered by AI
  • Q2. Find whether two strings are or not anagrams
  • Ans. 

    Check if two strings are anagrams by comparing the sorted characters in each string.

    • Sort the characters in both strings and compare if they are equal.

    • Ignore spaces and punctuation when comparing the strings.

    • Example: 'listen' and 'silent' are anagrams.

    • Example: 'hello' and 'world' are not anagrams.

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Inorder traversal without recursion
  • Ans. 

    Use a stack to simulate the recursive inorder traversal process

    • Create an empty stack to store nodes

    • Start with the root node and push it onto the stack

    • While the stack is not empty, keep traversing left and pushing nodes onto the stack

    • Once you reach a leaf node, pop it from the stack, print its value, and move to its right child

    • Repeat the process until all nodes have been visited

  • Answered by AI
  • Q2. How to make a class final
  • Ans. 

    To make a class final, use the 'final' keyword in the class declaration.

    • Use the 'final' keyword before the 'class' keyword in the class declaration

    • A final class cannot be subclassed or extended

    • Final classes are often used for utility classes or classes that should not be modified

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Apr 2024. There were 5 interview rounds.

Round 1 - Coding Test 

2 dsa questions of easy/medium

Round 2 - Technical 

(1 Question)

  • Q1. Asked two dsa questions of leetcodeeasy/medium
Round 3 - Technical 

(1 Question)

  • Q1. Asked two dsa questions of leetcode easy/medium
Round 4 - Behavioral 

(1 Question)

  • Q1. Asked one dsa question on tree and discussion on resume and dbms os
Round 5 - HR 

(1 Question)

  • Q1. Salary Discussion
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Techical questions and coding questions related profile.
  • Q2. Basic concepts about your programming skills.

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice company and positive interview response and smooth interview process and recommend to join .
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Some database questions,some java questions .

Round 2 - Technical 

(3 Questions)

  • Q1. What is the difference between javascript and jQuery.
  • Ans. 

    JavaScript is a programming language used for web development, while jQuery is a library built with JavaScript to simplify HTML document traversal and manipulation.

    • JavaScript is a programming language, while jQuery is a library written in JavaScript.

    • JavaScript can be used for a wide range of tasks, while jQuery is mainly used for DOM manipulation and event handling.

    • JavaScript is a core technology for web development, w...

  • Answered by AI
  • Q2. Define different types of join
  • Ans. 

    Different types of joins are used in SQL to combine rows from two or more tables based on a related column between them.

    • Inner Join: Returns rows when there is at least one match in both tables.

    • Left Join (or Left Outer Join): Returns all rows from the left table and the matched rows from the right table.

    • Right Join (or Right Outer Join): Returns all rows from the right table and the matched rows from the left table.

    • Full ...

  • Answered by AI
  • Q3. Define multithreading concept and exception handling.
  • Ans. 

    Multithreading allows multiple threads to run concurrently, while exception handling deals with errors in a program.

    • Multithreading involves running multiple threads simultaneously to improve performance and responsiveness.

    • Threads share the same memory space but have their own program counter and registers.

    • Exception handling is a mechanism to handle errors or exceptional situations in a program.

    • It helps prevent the prog...

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Basic questions on what you have mentioned in resume , design patterns , reactjs questions , explain your project
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
Selected Selected
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 - Assignment 

It includes both aptitude, CS fundamentals and coding

Round 3 - Technical 

(5 Questions)

  • Q1. There were three interviewers 1st person asked HR questions like personal details etc.. 2nd person asked technical questions like programming fundamentals and coding question 3rd person asked some logical...
  • Q2. Self introduction and things about your native place
  • Q3. Some CS fundamentals and a programme for finding permutations of given string
  • Q4. A logical puzzle about bulbs and switches
  • Q5. A programme to find distinct integers in given array
  • Ans. 

    Program to find distinct integers in given array

    • Iterate through the array and store each integer in a set data structure

    • Check if the integer already exists in the set, if not add it to the set

    • Return the set of distinct integers

  • Answered by AI

Skills evaluated in this interview

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

I applied via Internshala and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Easy to medium, can solve with leetcode medium

Round 2 - One-on-one 

(2 Questions)

  • Q1. Number of islands count
  • Ans. 

    Count the number of islands in a grid of '1's and '0's

    • Iterate through the grid and for each '1' encountered, perform a depth-first search to mark all connected '1's as visited

    • Increment the island count for each new island found

    • Ensure to handle boundary cases and check for visited nodes

  • Answered by AI
  • Q2. First and last index of a particular element in an array
  • Ans. 

    Find the first and last index of a specific element in an array of strings.

    • Iterate through the array and keep track of the index of the first and last occurrence of the element.

    • Return the first and last index once the iteration is complete.

    • Example: Array ['apple', 'banana', 'apple', 'orange'], element 'apple' - First index: 0, Last index: 2.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jun 2023.

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 - Aptitude Test 

Basic aptitude questions, computer fundaments and DSA questions.

Round 3 - Technical 

(2 Questions)

  • Q1. Questions Related to topics & projects in Resume on various topics like DBMS, OOPS, CN, Git, React, Javascript.
  • Q2. 2 very easy coding questions. 1. Flip the number 2. Move all the zeroes to the end of the array
Round 4 - Technical 

(2 Questions)

  • Q1. Questions Related to projects mentioned in Resume. SQL queries.
  • Q2. One coding Question 1. Number of pairs in array having sum k.
  • Ans. 

    Count pairs in array with sum k.

    • Use a hashmap to store the frequency of each element in the array.

    • For each element, check if k - element exists in the hashmap.

    • Increment the count of pairs if found and update the hashmap accordingly.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Progress Software Development Engineer interview:
  • OOPS
  • DBMS
  • SQL
  • Javascript
  • Javascript Frameworks
  • Git
  • DSA

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Asked basic mcq and leetcode level questions

Round 2 - Technical 

(1 Question)

  • Q1. It was resume based Interview. Asked about software development questions
Round 3 - HR 

(1 Question)

  • Q1. Salary based discussions and behavioural questions

Blaize Interview FAQs

How many rounds are there in Blaize Software Engineer II interview?
Blaize interview process usually has 3 rounds. The most common rounds in the Blaize interview process are Technical and Resume Shortlist.
What are the top questions asked in Blaize Software Engineer II interview?

Some of the top questions asked at the Blaize Software Engineer II interview -

  1. basic Questions about C...read more
  2. Tree based Questi...read more

Tell us how to improve this page.

Blaize Software Engineer II Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Qualcomm Interview Questions
3.8
 • 273 Interviews
Intel Interview Questions
4.2
 • 223 Interviews
Texas Instruments Interview Questions
4.1
 • 124 Interviews
Nvidia Interview Questions
3.7
 • 104 Interviews
MagicPin Interview Questions
3.0
 • 48 Interviews
Broadcom Interview Questions
3.4
 • 41 Interviews
Uplers Interview Questions
4.1
 • 40 Interviews
View all
Blaize Software Engineer II Salary
based on 14 salaries
₹9 L/yr - ₹18.2 L/yr
11% less than the average Software Engineer II Salary in India
View more details

Blaize Software Engineer II Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

4.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
22 salaries
unlock blur

₹14.5 L/yr - ₹35 L/yr

Software Engineer II
14 salaries
unlock blur

₹9 L/yr - ₹18.2 L/yr

Software Engineer
12 salaries
unlock blur

₹10.5 L/yr - ₹18 L/yr

Senior Engineer
5 salaries
unlock blur

₹20.4 L/yr - ₹27 L/yr

Research Engineer
5 salaries
unlock blur

₹12 L/yr - ₹18.1 L/yr

Explore more salaries
Compare Blaize with

Nvidia

3.7
Compare

Intel

4.2
Compare

Advanced Micro Devices

3.7
Compare

Qualcomm

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