Upload Button Icon Add office photos

Filter interviews by

F5 Networks Sde1 Interview Questions and Answers

Updated 8 Dec 2024

F5 Networks Sde1 Interview Experiences

1 interview found

Sde1 Interview Questions & Answers

user image Anonymous

posted on 8 Dec 2024

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

I applied via campus placement at Thapar Institute of Engineering and Technology (TIET) and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Coding Test 

It was an easy level coding round with basic 2 dsa questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Intersection of two linked list.
  • Q2. Coin change problem

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with networking questions as well as depth about C/C++

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. What is the internal working of a hashmap?
  • Q2. Design a Least Recently Used (LRU) cache.
Round 2 - Technical 

(2 Questions)

  • Q1. What are the SOLID principles in software engineering?
  • Q2. What design patterns have you worked with?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Difference between Scheduled script and Map reduce script?
  • Ans. 

    Scheduled script runs on a predefined schedule, while Map reduce script processes large datasets in parallel.

    • Scheduled script is used for automating tasks at specific times, like sending reports daily at 8am.

    • Map reduce script is used for processing large datasets by splitting them into smaller chunks and processing them in parallel.

    • Scheduled script is typically used for routine tasks, while Map reduce script is used fo...

  • Answered by AI
  • Q2. Types of scripts in NetSuite.
  • Ans. 

    Types of scripts in NetSuite include SuiteScript, SuiteTalk, SuiteFlow, and SuiteBuilder.

    • SuiteScript: JavaScript-based scripts for customizing NetSuite functionality.

    • SuiteTalk: Web services integration for connecting NetSuite with external systems.

    • SuiteFlow: Visual workflow tool for automating business processes.

    • SuiteBuilder: Customization tool for modifying NetSuite forms, fields, and records.

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Automation framework related questions
  • Q2. Java coding on strings
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. There we a lot of question on Python basics 1. Iterators 2. Generator 3. List Comprehensions 4. Static Method, Class Method 5. Testing in Python - Pytest 6. Magic Methon 7. Try Except Else Block in Python ...
  • Q2. DSA Questions 1. Balanced Parenthesis 2. String Compression - Check on Leetcode
  • Q3. Basic SQL Count(*) query
Round 2 - Technical 

(3 Questions)

  • Q1. Memory Management in Python
  • Ans. 

    Memory management in Python involves automatic memory allocation and deallocation through garbage collection.

    • Python uses automatic memory management through garbage collection to allocate and deallocate memory.

    • Memory is managed using reference counting and a cycle-detecting garbage collector.

    • Python's memory management is efficient for most use cases, but can lead to memory leaks if circular references are not handled p

  • Answered by AI
  • Q2. Garbage Collection in Python
  • Ans. 

    Garbage collection in Python is an automatic memory management process that helps in reclaiming memory occupied by objects that are no longer in use.

    • Python uses a built-in garbage collector to manage memory automatically.

    • The garbage collector in Python uses reference counting and a cycle-detecting algorithm to reclaim memory.

    • Explicitly calling the 'gc.collect()' function can trigger garbage collection in Python.

    • Garbage...

  • Answered by AI
  • Q3. Code a system to query an API, do multiprocessing and improve the efficiency
  • Ans. 

    Code a system to query an API, do multiprocessing and improve efficiency

    • Use a library like requests in Python to query the API

    • Implement multiprocessing using a library like multiprocessing or threading in Python

    • Optimize efficiency by caching API responses or using asynchronous programming

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - This was for a Python Job Posting - Prepare well for basic to advanced level Python core concepts, any online site with a question bank of Python is good enough to prepare
DSA asked is generally easy, do some practice on LeetCode

Skills evaluated in this interview

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 Jun 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Do you have working experience of SwiftUI
  • Q2. Have you ever implemented or worked with server driven UIs
  • Ans. 

    Yes, I have experience implementing server driven UIs.

    • Implemented server driven UIs using JSON responses to dynamically update UI elements

    • Worked with frameworks like React and Angular to handle server driven UI updates

    • Used server driven UIs to efficiently manage and display large amounts of data

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. What is closure and types?
  • Ans. 

    Closure is a function that captures variables from its surrounding scope, allowing it to access those variables even after the scope has closed.

    • Closure allows a function to access variables from its lexical scope even after the function has finished executing.

    • Types of closures include lexical closures, which capture variables from the surrounding lexical scope, and function closures, which capture variables from the fu...

  • Answered by AI
  • Q2. What is Core data and all operations with example/scenarios
  • Ans. 

    Core Data is a framework provided by Apple for managing the model layer objects in an iOS application.

    • Core Data is used for storing, retrieving, and managing data in an iOS app.

    • It provides an object-oriented interface to work with data.

    • Operations include creating, reading, updating, and deleting data.

    • Example: Creating a new record in Core Data for a user profile.

    • Example: Fetching a list of items from Core Data to displ

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Why you want to join the company?
  • Q2. Why should we hire you

Interview Preparation Tips

Topics to prepare for Collabera Technologies Senior Software Engineer interview:
  • Core Data
  • SwiftUI
  • GCD
  • Memory Management
Interview preparation tips for other job seekers - Good inteview

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Coding Test 

An online coding test at coderByte. Medium level question.

Round 2 - Technical 

(2 Questions)

  • Q1. Find sum of distinct elements from two given array.
  • Ans. 

    Sum of distinct elements from two arrays

    • Create a set to store distinct elements from both arrays

    • Iterate through each array and add elements to the set

    • Calculate the sum of elements in the set

  • Answered by AI
  • Q2. Discussion around Java,Spring-boot.

Skills evaluated in this interview

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

Coding + Aptitude question

Round 2 - Technical 

(2 Questions)

  • Q1. Basic of programming lang.
  • Q2. DSA and Oop concepts questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview pro
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. How to configure vpn
  • Ans. 

    To configure a VPN, you need to set up a VPN server, create user accounts, configure client devices, and establish secure connections.

    • Set up a VPN server using software like OpenVPN or Windows Server

    • Create user accounts with unique credentials for accessing the VPN

    • Configure client devices to connect to the VPN server using the provided credentials

    • Establish secure connections by encrypting data transmitted over the VPN

  • Answered by AI
  • Q2. System slowness how to resolve
  • Ans. 

    To resolve system slowness, check for hardware issues, optimize software, update drivers, and monitor resource usage.

    • Check for hardware issues such as low memory or CPU usage

    • Optimize software by removing unnecessary programs or services

    • Update drivers for hardware components

    • Monitor resource usage to identify bottlenecks

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - only immediate joiners

Skills evaluated in this interview

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

I applied via campus placement at Keshav Memorial Institute of Technology, Nalgonda and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude and techical

Round 2 - Technical 

(2 Questions)

  • Q1. SQL queries and coding questions on java
  • Q2. Oops topic and puzzles

F5 Networks Interview FAQs

How many rounds are there in F5 Networks Sde1 interview?
F5 Networks interview process usually has 2 rounds. The most common rounds in the F5 Networks interview process are Coding Test and Technical.
What are the top questions asked in F5 Networks Sde1 interview?

Some of the top questions asked at the F5 Networks Sde1 interview -

  1. Intersection of two linked li...read more
  2. Coin change prob...read more

Tell us how to improve this page.

F5 Networks Sde1 Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

NTT Data Interview Questions
3.9
 • 599 Interviews
Cisco Interview Questions
4.1
 • 395 Interviews
CitiusTech Interview Questions
3.4
 • 266 Interviews
Altimetrik Interview Questions
3.8
 • 211 Interviews
Xoriant Interview Questions
4.2
 • 180 Interviews
VMware Software Interview Questions
4.4
 • 157 Interviews
ThoughtWorks Interview Questions
3.9
 • 145 Interviews
Apexon Interview Questions
3.3
 • 134 Interviews
View all

F5 Networks Sde1 Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

4.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer III
128 salaries
unlock blur

₹18.9 L/yr - ₹47 L/yr

Software Engineer
105 salaries
unlock blur

₹10.5 L/yr - ₹30.8 L/yr

Software Engineer2
76 salaries
unlock blur

₹15 L/yr - ₹28 L/yr

Senior Software Engineer
70 salaries
unlock blur

₹25 L/yr - ₹64 L/yr

Software Engineer II
58 salaries
unlock blur

₹12.2 L/yr - ₹26 L/yr

Explore more salaries
Compare F5 Networks with

Cisco

4.1
Compare

Juniper Networks

4.2
Compare

Palo Alto Networks

3.8
Compare

Fortinet

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