Upload Button Icon Add office photos

Filter interviews by

AdeptChip Services Senior Software Engineer Interview Questions and Answers

Updated 3 Feb 2022

AdeptChip Services Senior Software Engineer Interview Experiences

1 interview found

I was interviewed in Aug 2021.

Round 1 - Technical 

(1 Question)

  • Q1. Python basic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up your basic skills and make sure you answer in confident level

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed in Jul 2024. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Ofdm, Fixed point, sampling theorem, digital filters,
  • Q2. Previous work clarity
  • Ans. 

    Previous work clarity is essential for successful collaboration and understanding of project requirements.

    • Clearly explain the projects you have worked on in the past, including your role and responsibilities

    • Provide examples of how you communicated with team members to ensure clarity in project goals

    • Discuss any challenges you faced in previous projects and how you overcame them

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Fft, ofdm, CP, sampling theorem, previous experience,
  • Q2. C basics, memory layout, function pointer, big small endian, bit manipulation, zero padding in structures
Round 3 - Coding Test 

Bit manipulation, memory layout, interrupts, semaphore mutex, implement memcpy, sorting, algo to share resource equally

Round 4 - One-on-one 

(1 Question)

  • Q1. Previous work experience, general attitude

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for coding, strong on basics
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Bitwise operation and memory layout in c
  • Ans. 

    Bitwise operations are used to manipulate individual bits in memory. Memory layout in C refers to how data is stored in memory.

    • Bitwise operations include AND, OR, XOR, and NOT.

    • They are often used for tasks like setting or clearing specific bits, checking if a bit is set, or toggling bits.

    • Memory layout in C determines how variables are stored in memory, including their size, alignment, and order.

    • It is important to under...

  • Answered by AI
  • Q2. Explain few terms in LTE
  • Ans. 

    LTE stands for Long-Term Evolution, a standard for wireless communication in mobile networks.

    • LTE is a 4G wireless communication technology

    • It provides high-speed data transmission and low latency

    • LTE uses OFDMA for downlink and SC-FDMA for uplink

    • LTE supports multiple antennas for improved signal quality (MIMO)

    • LTE Advanced (LTE-A) is an enhanced version with higher data rates and capacity

  • Answered by AI
  • Q3. In one path goes wrong in mimo does snr and data both or any one goes bad

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Selenium xpath and dynamic loading of elements
  • Ans. 

    Selenium xpath is used to locate elements on a web page, especially useful for dynamic loading scenarios.

    • Use xpath to locate elements based on their attributes or position on the page

    • For dynamic loading, use explicit waits to ensure elements are present before interacting with them

    • Consider using relative xpath expressions to make your tests more robust and maintainable

  • Answered by AI
  • Q2. Java programs on strings
  • Q3. Test Ng architecture explain
  • Ans. 

    TestNG is a testing framework inspired by JUnit and NUnit, with more advanced features for test automation.

    • TestNG uses annotations to define test methods and test configurations.

    • It supports parameterized tests, test dependencies, and test groups.

    • TestNG allows parallel execution of tests, making it faster than other testing frameworks.

    • It provides detailed test reports and supports data-driven testing.

    • TestNG can be integ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and go for interview

Skills evaluated in this interview

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

(1 Question)

  • Q1. Some technical question on advanced java
Round 2 - Technical 

(1 Question)

  • Q1. Scenario based question design swiggy app on microservice architecture
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Apr 2022. There were 5 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 - Coding Test 

Pointer and linked list

Round 3 - Case Study 

Pure technical on kernel programming

Round 4 - Technical 

(3 Questions)

  • Q1. Pure technical questions on background project
  • Q2. Mutex semaphore and spinlock
  • Q3. How you will achieve multi threaded programming
  • Ans. 

    Multi-threaded programming can be achieved by creating multiple threads that run concurrently.

    • Identify the tasks that can be executed in parallel

    • Create threads using threading libraries in the chosen programming language

    • Synchronize the threads to avoid race conditions and deadlocks

    • Use locks, semaphores, and mutexes to manage shared resources

    • Optimize the performance by balancing the workload among threads

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Why you want to join this company
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2022. There were 3 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 

I interviewed with Mediatek having just 1 year of experience. It was for outsourcing position.

They asked me concepts from C language, writing code for data structures (LinkedIn list), and a question on string which I can't remember. This was pre COVID days.

Round 3 - Technical 

(1 Question)

  • Q1. Write code to insert a node to the middle of linked list
  • Ans. 

    Insert a node to the middle of a linked list

    • Find the middle node using slow and fast pointers

    • Create a new node with the data to be inserted

    • Adjust the pointers to insert the new node in the middle

  • Answered by AI

Interview Preparation Tips

Topics to prepare for MediaTek India Technology Senior Software Engineer interview:
  • C
  • Operating Systems
  • Multithreading
  • TCP
  • IPV4
  • IPV6
  • Data Structures
Interview preparation tips for other job seekers - Study concepts of C language thoroughly. All questions on pointers, double pointers, bit manipulation and memory management.

Study questions on data structures like Linked list, stacks, queues, arrays, and strings. Practice writing code in C.

Study operating system and Unix concepts like processes, threads, deadlock, mutex, semaphores, IPC mechanisms etc. Practice problems on concurrent programming.

Study networking concepts like OSI model, TCP, UDP, IP (v4 and v6) and socket programming. Practice socket programming in C.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Implement atoi in c language
  • Q2. Remove the head of the linked list mainitning the remaining links
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

First Round was pretty basic and coding questions was medium in Python and React.
Then coding assignment from client and then Manager Round followed by HR Round

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

I applied via Referral and was interviewed before Oct 2022. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. This was more like shortlisting round with manager. Asked about resume and previous work experience. Not much Technical questions.
Round 2 - One-on-one 

(5 Questions)

  • Q1. Python programming questions, Basics
  • Q2. Python oops concepts
  • Q3. What is module in Python
  • Ans. 

    A module in Python is a file containing Python code, which can define functions, classes, and variables.

    • Modules help organize Python code into reusable components

    • Modules can be imported into other Python scripts using the 'import' keyword

    • Examples of modules in Python include math, random, and os

  • Answered by AI
  • Q4. Python memory management
  • Q5. Basic Devops questions

Skills evaluated in this interview

AdeptChip Services Interview FAQs

How many rounds are there in AdeptChip Services Senior Software Engineer interview?
AdeptChip Services interview process usually has 1 rounds. The most common rounds in the AdeptChip Services interview process are Technical.

Tell us how to improve this page.

AdeptChip Services Senior Software Engineer Salary
based on 11 salaries
₹10 L/yr - ₹30 L/yr
13% more than the average Senior Software Engineer Salary in India
View more details

AdeptChip Services Senior Software Engineer Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

5.0

Skill development

4.4

Work-life balance

4.4

Salary

4.6

Job security

4.4

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 2 Reviews and Ratings
Physical Design Engineer
39 salaries
unlock blur

₹4.8 L/yr - ₹12.7 L/yr

Software Engineer
15 salaries
unlock blur

₹3.5 L/yr - ₹11.5 L/yr

Senior Physical Design Engineer
11 salaries
unlock blur

₹20 L/yr - ₹26 L/yr

Senior Software Engineer
11 salaries
unlock blur

₹10 L/yr - ₹30 L/yr

Physical Design Engineer 1
8 salaries
unlock blur

₹3.2 L/yr - ₹6 L/yr

Explore more salaries
Compare AdeptChip Services with

TCS

3.7
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare

HCLTech

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