Upload Button Icon Add office photos
Engaged Employer

i

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

MiQ Digital Verified Tick

Compare button icon Compare button icon Compare
3.4

based on 88 Reviews

Filter interviews by

MiQ Digital Sde1 Interview Questions and Answers

Updated 20 Dec 2022

MiQ Digital Sde1 Interview Experiences

1 interview found

Sde1 Interview Questions & Answers

user image Anonymous

posted on 20 Dec 2022

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

I applied via campus placement at Lovely Professional University (LPU) and was interviewed before Dec 2021. There were 4 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. Question related to project mentioned in resume. Basic Questions Regarding SQL and OS.
Round 3 - Coding Test 

Easy level ds/algo questions from array and strings.

Round 4 - HR 

(1 Question)

  • Q1. Questions Regarding my interest/hobbies etc. It was very friendly.

Interview Preparation Tips

Interview preparation tips for other job seekers - Know what you have done in your resume. Brushup basics of OS/SQL and OOPs concepts. Practice easy/medium level of ds/algo. No need of CP.

Interview questions from similar companies

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

Leetcode easy-medium

Round 2 - Technical 

(2 Questions)

  • Q1. What is Cyber Security and information security?
  • Ans. 

    Cyber security is the practice of protecting systems, networks, and data from digital attacks.

    • Cyber security involves implementing measures to prevent unauthorized access, data breaches, and other cyber threats.

    • It includes technologies, processes, and practices designed to protect networks, devices, programs, and data from attack, damage, or unauthorized access.

    • Examples of cyber security measures include firewalls, ant...

  • Answered by AI
  • Q2. What are the types of encryption?
  • Ans. 

    Types of encryption include symmetric encryption, asymmetric encryption, and hashing.

    • Symmetric encryption: Uses the same key for both encryption and decryption, examples include AES and DES.

    • Asymmetric encryption: Uses a pair of public and private keys for encryption and decryption, examples include RSA and ECC.

    • Hashing: Converts data into a fixed-size string of bytes, examples include MD5 and SHA.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Dot net related stuffs
  • Q2. Dependency injection
Round 2 - Coding Test 

Built an app using dot net and angular

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

I applied via Naukri.com and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Dsa medium level problem
  • Ans. 

    Implement a function to find the longest common prefix amongst an array of strings.

    • Iterate through the characters of the first string and compare with the corresponding characters of other strings.

    • Stop when a mismatch is found or when reaching the end of any string.

    • Return the prefix found so far.

  • Answered by AI
  • Q2. Dsa hard level problem
  • Ans. 

    The question is about solving a hard level problem related to data structures and algorithms.

    • Understand the problem statement thoroughly before starting to solve it.

    • Break down the problem into smaller subproblems if possible.

    • Consider different approaches and analyze their time and space complexity.

    • Test your solution with different test cases to ensure its correctness.

    • Optimize your solution if possible to improve its ef

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Regarding React-Native Questions
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Questionnaire 

2 Questions

  • Q1. Self introduction
  • Q2. Gentral questions

I applied via campus placement at Indian School of Mines (ISM), Dhanbad and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Word Search

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on Data Structure and Algorithms

I applied via Recruitment Consulltant

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. Angular life cycle hook
  • Q2. Share data between components
  • Ans. 

    Data can be shared between components using props, state management libraries, or a global store.

    • Props can be used to pass data from a parent component to a child component.

    • State management libraries like Redux or MobX can be used to manage and share data between components.

    • A global store like React Context can be used to share data between components without passing props.

    • Events can be used to communicate between comp...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be sure on your skills and requirement. And be punctual

Interview Questionnaire 

9 Questions

  • Q1. Find Maximum sub sequence sum in an array ?
  • Ans. 

    Maximum sub sequence sum in an array

    • Use Kadane's algorithm

    • Initialize max_so_far and max_ending_here to 0

    • Iterate through the array and update max_ending_here and max_so_far

    • Return max_so_far

  • Answered by AI
  • Q2. What do you understand by the endianness of the system ? How do you find out the the type of endianness ?
  • Ans. 

    Endianness refers to the byte order of a system. It determines how multi-byte data types are stored in memory.

    • Little-endian systems store the least significant byte first, while big-endian systems store the most significant byte first.

    • Endianness can affect the way data is transmitted between systems.

    • To determine the endianness of a system, you can use the byte order mark (BOM) or write a test program that checks the by...

  • Answered by AI
  • Q3. Sort an array which consists of 0's and 1's only
  • Ans. 

    Sort an array of 0's and 1's only.

    • Use two pointers, one at the beginning and one at the end of the array.

    • Swap 0's from the beginning with 1's from the end until the pointers meet.

    • Alternatively, use a counting sort algorithm to count the number of 0's and 1's and then reconstruct the array.

  • Answered by AI
  • Q4. A question on applications of minimum spanning tree, apply prim's or kruskal's algorithm
  • Q5. What do you understand by Heaps, max and min heaps ?
  • Ans. 

    Heaps are data structures used to efficiently find the maximum or minimum element in a collection.

    • Max heap: parent nodes are always greater than or equal to child nodes

    • Min heap: parent nodes are always smaller than or equal to child nodes

    • Heaps are commonly used in priority queues and sorting algorithms

    • Heap operations include insert, delete, and extract max/min

    • Example: An array [3, 8, 2, 5, 1, 4, 6] can be represented a

  • Answered by AI
  • Q6. What do you understand by hashing ? questions on application of hashing
  • Q7. Find 3 nos a,b and c in an array where a+b = c
  • Ans. 

    Find 3 numbers in an array where a+b=c.

    • Loop through the array and check for all possible combinations of a and b.

    • Use a hash table to store the values of a and b, and check if c is present in the hash table.

    • Sort the array and use two pointers to find a and b, and then check if their sum equals c.

  • Answered by AI
  • Q8. Some puzzles, as the other interviewee said, but not asked to me
  • Q9. Questions on Dynamic programming

Interview Preparation Tips

College Name: NA

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Ask to do some basis javascript coding
  • Q2. Other react and node js question
Round 2 - One-on-one 

(1 Question)

  • Q1. Architecture questions of REact and node

MiQ Digital Interview FAQs

How many rounds are there in MiQ Digital Sde1 interview?
MiQ Digital interview process usually has 4 rounds. The most common rounds in the MiQ Digital interview process are Resume Shortlist, Technical and Coding Test.
What are the top questions asked in MiQ Digital Sde1 interview?

Some of the top questions asked at the MiQ Digital Sde1 interview -

  1. Question related to project mentioned in resume. Basic Questions Regarding SQL ...read more
  2. Questions Regarding my interest/hobbies etc. It was very friend...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Regalix Interview Questions
2.9
 • 44 Interviews
Denave Interview Questions
3.7
 • 39 Interviews
Xdbs Interview Questions
3.2
 • 39 Interviews
InMobi Interview Questions
3.6
 • 35 Interviews
Smollan Group Interview Questions
4.2
 • 33 Interviews
Mediamint Interview Questions
3.5
 • 32 Interviews
Adglobal360 Interview Questions
3.2
 • 24 Interviews
View all
MiQ Digital Sde1 Salary
based on 6 salaries
₹12 L/yr - ₹13 L/yr
43% less than the average Sde1 Salary in India
View more details
Software Engineer
29 salaries
unlock blur

₹11 L/yr - ₹16 L/yr

Data Analyst
24 salaries
unlock blur

₹6.5 L/yr - ₹17.2 L/yr

Senior Software Engineer
22 salaries
unlock blur

₹22 L/yr - ₹31 L/yr

Business Analyst
21 salaries
unlock blur

₹9 L/yr - ₹14.5 L/yr

Senior Analyst
21 salaries
unlock blur

₹12 L/yr - ₹19 L/yr

Explore more salaries
Compare MiQ Digital with

Affle

3.0
Compare

InMobi

3.6
Compare

Komli Media

4.0
Compare

Deloitte Digital

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