Upload Button Icon Add office photos

Logitech

Compare button icon Compare button icon Compare

Filter interviews by

Logitech Python Developer Interview Questions and Answers

Updated 24 May 2024

Logitech Python Developer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. All questions related to dictionary and django rest framework

Top trending discussions

View All
Interview Tips & Stories
2w (edited)
timepasstiwari
·
A Digital Markter
Nailed the interview, still rejected
Just had the BEST interview ever – super positive and encouraging! But got rejected. Interviewer said I was the most prepared, knew it was a full-time role (unlike others), and loved my answers. One of my questions was even called "the best ever asked!" He showed me around, said I was exactly what they wanted, and would get back by Friday. I was so hyped! Then today, I got the rejection email. No reason given, just "went with someone else." Feels bad when your best isn't enough. Anyone else been there? How'd you cope?
Got a question about Logitech?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview before Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 150 Minutes
Round difficulty - Medium

Have to attempt 2 programming questions within 2:30 hours. Can take any time over the weekend. Relatively easy problems. Questions were long, but the solution code was small.

  • Q1. 

    The Skyline Problem

    Compute the skyline of given rectangular buildings in a 2D city, eliminating hidden lines and forming the outer contour of the silhouette when viewed from a distance. Each building is ...

  • Ans. 

    Compute the skyline of given rectangular buildings in a 2D city, eliminating hidden lines and forming the outer contour of the silhouette.

    • Iterate through the buildings and create a list of critical points (x, y) where the height changes.

    • Sort the critical points based on x-coordinate and process them to generate the skyline.

    • Merge consecutive horizontal segments of equal height to ensure no duplicates in the output.

  • Answered by AI
  • Q2. 

    MergeSort Linked List Problem Statement

    You are given a Singly Linked List of integers. Your task is to sort the list using the 'Merge Sort' algorithm.

    Input:

    The input consists of a single line contain...
  • Ans. 

    Sort a Singly Linked List using Merge Sort algorithm.

    • Implement the Merge Sort algorithm for linked lists.

    • Divide the list into two halves, sort each half recursively, then merge them.

    • Use a fast and slow pointer to find the middle of the list for splitting.

    • Handle the base case of a single node or empty list.

    • Example: Input: 4 3 2 1 -1, Output: 1 2 3 4

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 240 Minutes
Round difficulty - Medium

Had to solve 1 programming question in 4 hours. It was in the morning on a weekend. The environment was not so good. It was a small institute and got very crowded. The platform was also buggy. but the question was not difficult. Was able to solve it in just 1 hour and leave.

  • Q1. 

    Batch Photography Problem

    Alex has acquired a machine that can photocopy photos in batches of a minimum size 'K'. Given 'N' photos with resolutions represented in an integer array photos, the machine prod...

  • Ans. 

    Minimize maximum error by splitting photos into batches of size at least 'K'.

    • Sort the array of resolutions in ascending order.

    • Iterate through the array and calculate the error for each possible batch.

    • Return the minimum possible maximum error found.

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

It was in the afternoon. The interviewer basically asked me what technologies I have worked on. Checked my knowledge of those technologies with simple questions. Told me what I'll be working on if I get selected.

  • Q1. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
  • Ans. 

    Sort an integer array containing only 0s, 1s, and 2s in linear time complexity.

    • Use three pointers to keep track of the positions of 0s, 1s, and 2s in the array.

    • Iterate through the array and swap elements based on the values encountered.

    • Maintain left pointer for 0s, right pointer for 2s, and current pointer for traversal.

    • Example: If current element is 0, swap it with element at left pointer and increment both pointers.

    • E...

  • Answered by AI
Round 4 - Video Call 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Hard

It was also in the afternoon. The interviewer was the member of the team I'll be working on if I get selected. He asked me some basic questions about related technologies.
Gave me 2-3 DS & Algo problems and asked me to solve them.

  • Q1. 

    Array Sum Calculation

    Calculate the sum of all elements in an array of length N.

    Input:

    Line 1: An integer N indicating the size of the array.
    Line 2: N integers, the elements of the array, separated by ...
  • Ans. 

    Calculate the sum of all elements in an array of length N.

    • Iterate through the array and add each element to a running sum.

    • Return the final sum as the output.

  • Answered by AI
  • Q2. 

    Ninja and Alien Language Order Problem

    An alien dropped its dictionary while visiting Earth. The Ninja wants to determine the order of characters used in the alien language, based on the given list of wor...

  • Ans. 

    Determine the order of characters in an alien language based on a list of words.

    • Create a graph where each character is a node and there is a directed edge from character 'a' to character 'b' if 'a' comes before 'b' in any word.

    • Perform a topological sort on the graph to get the order of characters.

    • Return the order as a string in lexicographical order.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaNo CriteriaSamsung R&D Institute interview preparation:Topics to prepare for the interview - Recursion, Backtracking, Dynamic Programming, Trees, ArrayTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : It's a Daily process. Not weekly, Not monthly. DAILY!
Tip 2 : Take part in Online Contests. HackerEarth is best for Contests posted by companies.
Tip 3 : Even after you have solved some problem, try to find a better solution for it online. Companies don't want a solution, they want optimized solution.

Application resume tips for other job seekers

Tip 1 : Modify resume for each job you are applying for. It should show why you are suitable for that particular job.
Tip 2 : Remove any extra things like interests and hobbies. No one cares.

Final outcome of the interviewSelected

Skills evaluated in this interview

Python Developer Interview Questions Asked at Other Companies

asked in Cognizant
Q1. Explain the logic of a program to reverse a given string word by ... read more
asked in Cognizant
Q2. What is the difference between a variable and an object?
asked in TCS
Q3. 1. Difference between tuple and a list? 2. What are decorators? 3 ... read more
Q4. How do you convert a .txt file to a .csv file using Python?
asked in Accenture
Q5. Write a program to print a string in reverse without using built- ... read more

I appeared for an interview in Jun 2016.

Interview Preparation Tips

Round: Test
Experience: We had to code in the given duration. The question was a simple dynamic programming one. But the catch was that we could test our solution only a given number of times.
Tips: Make sure you're strong in your coding basics and have enough self confidence.
Duration: 3 hours
Total Questions: 1

Round: Technical Interview
Experience: The tech round was basically on the resume. There were a few questions about the projects I had done.
Tips: Know about everything you've written in your resume. Don't write anything that you're not very sure of.

Round: HR Interview
Experience: Questions were about my work and achievements in college and future plans.
Tips: Talk freely and don't be nervous. Don't reveal any future study plans to the HR!

College Name: Nitk surathkal
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 Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude train, time and work distance

Round 2 - Technical 

(1 Question)

  • Q1. Basics about my project and 3 eazy level coding question
Round 3 - HR 

(1 Question)

  • Q1. Discuss about salary and work cultrue

Software Developer Interview Questions & Answers

Sony user image SAI SWARUPA EADDALA

posted on 9 Jun 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
  • Q1. Basic self introduction
  • Ans. 

    I'm a passionate software developer with a strong background in full-stack development and a love for problem-solving.

    • Education: Bachelor's degree in Computer Science from XYZ University.

    • Experience: 3 years of experience in developing web applications using React and Node.js.

    • Projects: Developed an e-commerce platform that increased sales by 30% within the first quarter.

    • Skills: Proficient in JavaScript, Python, and SQL,...

  • Answered by AI
  • Q2. Final year project
  • Q3. Why hiring you
  • Ans. 

    I bring a unique blend of technical skills, problem-solving abilities, and a passion for innovation that can drive your projects forward.

    • Proven experience in full-stack development, having successfully built and deployed multiple web applications using React and Node.js.

    • Strong problem-solving skills demonstrated through optimizing an existing application, resulting in a 30% increase in performance.

    • Excellent teamwork an...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Sep 2022. There were 3 interview rounds.

Round 1 - Coding Test 

Basic oops concepts and .net core DI related questions

Round 2 - Coding Test 

Angular intermediate level questions and .net coding on screen for questions like creating an Oauth syntax

Round 3 - HR 

(2 Questions)

  • Q1. Salary negotiation
  • Q2. And brief about role and responsibility
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 Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Logical reasoning, quantitative

Round 2 - Technical 

(2 Questions)

  • Q1. Java basics and intermediate
  • Q2. What is recursion
  • Ans. 

    Recursion is a programming technique where a function calls itself in order to solve a problem.

    • Recursion involves breaking down a problem into smaller subproblems and solving them recursively.

    • It requires a base case to stop the recursive calls.

    • Examples include factorial calculation, Fibonacci sequence generation, and tree traversal.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - java
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Nov 2023. There were 3 interview rounds.

Round 1 - Coding Test 

2 medium level questions

Round 2 - Technical 

(1 Question)

  • Q1. OOPS, DSA, PROJECT AND OTHER RESUME INCLUDED TOPICS
Round 3 - HR 

(1 Question)

  • Q1. Are you okay with the company
  • Ans. 

    I am comfortable with the company's policies and appreciate their role in fostering a positive work environment.

    • I have reviewed the employee handbook and understand the expectations regarding conduct and performance.

    • I appreciate the emphasis on work-life balance, which aligns with my values.

    • The company's commitment to diversity and inclusion resonates with my personal beliefs.

    • I am familiar with the policies on remote w...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jan 2023. 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 - Coding Test 

Data structures, linq and .net core related questions

Round 3 - Technical 

(1 Question)

  • Q1. Angular and .net core related questions
Round 4 - HR 

(1 Question)

  • Q1. About salary discussion
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. Explain prototypal inheritance
  • Ans. 

    Prototypal inheritance allows objects to inherit properties and methods from other objects in JavaScript.

    • In JavaScript, every object has a prototype, which is another object from which it can inherit properties.

    • You can set an object's prototype using Object.create() or by setting the __proto__ property.

    • Example: const animal = { sound: 'roar' }; const lion = Object.create(animal); console.log(lion.sound); // 'roar'

    • Proto...

  • Answered by AI
  • Q2. Web performance fundamentals
  • Q3. Testing frameworks

Logitech Interview FAQs

How many rounds are there in Logitech Python Developer interview?
Logitech interview process usually has 1 rounds. The most common rounds in the Logitech interview process are Technical.

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 1 interview experience

Interview Questions from Similar Companies

OPPO Interview Questions
4.0
 • 226 Interviews
LG Electronics Interview Questions
3.9
 • 224 Interviews
Daikin Interview Questions
4.1
 • 169 Interviews
Samsung Research Interview Questions
3.2
 • 137 Interviews
Xiaomi Interview Questions
3.8
 • 98 Interviews
Sony Interview Questions
4.2
 • 75 Interviews
Signify Interview Questions
3.5
 • 58 Interviews
Carrier Interview Questions
3.7
 • 52 Interviews
Western Digital Interview Questions
3.5
 • 50 Interviews
Panasonic Interview Questions
4.0
 • 46 Interviews
View all
Senior Software Engineer
12 salaries
unlock blur

₹14.8 L/yr - ₹21.3 L/yr

Software Engineer
10 salaries
unlock blur

₹7 L/yr - ₹8.7 L/yr

Business Finance Manager
6 salaries
unlock blur

₹27 L/yr - ₹43.3 L/yr

Senior QA Automation Engineer
6 salaries
unlock blur

₹18.2 L/yr - ₹20 L/yr

BI Developer
5 salaries
unlock blur

₹10.6 L/yr - ₹11.5 L/yr

Explore more salaries
Compare Logitech with

OPPO

4.0
Compare

LG Electronics

3.9
Compare

Daikin

4.1
Compare

Sony

4.2
Compare
write
Share an Interview