Upload Button Icon Add office photos

Okta

Compare button icon Compare button icon Compare

Filter interviews by

Okta Interview Questions, Process, and Tips

Updated 4 Jan 2025

Top Okta Interview Questions and Answers

View all 12 questions

Okta Interview Experiences

Popular Designations

11 interviews found

Site Reliability Engineer 2 Interview Questions & Answers

user image גיל דניאלי

posted on 4 Jan 2025

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 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is your experience in cloud providers?
  • Ans. 

    I have experience working with AWS, GCP, and Azure cloud providers.

    • Managed infrastructure on AWS EC2 instances

    • Utilized GCP services like Compute Engine and Cloud Storage

    • Deployed applications on Azure Virtual Machines

  • Answered by AI
  • Q2. What projects did you do?
  • Ans. 

    I have worked on various projects including building a monitoring system for a large-scale application and implementing automated deployment pipelines.

    • Built a monitoring system using Prometheus and Grafana to track application performance and alert on issues

    • Implemented automated deployment pipelines using Jenkins and Ansible to streamline the release process

    • Optimized infrastructure configurations to improve system reli

  • Answered by AI

Site Reliability Engineer 2 Interview Questions asked at other Companies

Q1. What are the basic concepts of Object-Oriented Programming (OOP)?
View answer (1)

Sopra Steria

Success to our employee's well-being? A work-life balance that's simply unbeatable.

Our employees have rated us 4 for Work-Life Balance on AmbitionBox

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

I applied via Company Website and was interviewed in Jun 2024. There were 5 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic JS question, output of code.
Round 2 - Technical 

(2 Questions)

  • Q1. Print values of nested json element. Values is in array.
  • Ans. 

    Print values of nested json element in array format

    • Access the nested json element using dot notation

    • Iterate through the array to print each value

  • Answered by AI
  • Q2. Basic Node JS Todo app, to add, update and get end points
Round 3 - One-on-one 

(2 Questions)

  • Q1. Check if array can make strictly increasing order by making atmost 2 modifications.
  • Ans. 

    Check if array can be made strictly increasing by modifying at most 2 elements.

    • Iterate through the array and check if each element is greater than the previous one.

    • If there are more than 2 elements that need to be modified, return false.

    • Examples: ['1', '2', '3'] -> true, ['1', '3', '2', '4'] -> true, ['1', '1', '2', '3'] -> false

  • Answered by AI
  • Q2. Given 1000 servers and continue running steam check the stream is strictly increasing order. Divide those streams in 100 servers and process in parallel
  • Ans. 

    Divide 1000 servers into 100 groups to check if streams are strictly increasing in parallel

    • Divide the 1000 servers into 100 groups of 10 servers each

    • Assign each group of servers to a separate processing unit for parallel checking

    • Check if the stream on each server within the group is strictly increasing

    • Combine the results from all groups to determine if all streams are strictly increasing

  • Answered by AI
Round 4 - Technical 

(3 Questions)

  • Q1. How to manage terraform state file in common place so if one making changes other get modified file.
  • Ans. 

    Use remote backend in Terraform to manage state file in a common place.

    • Use remote backend in Terraform to store state file in a shared location like AWS S3 bucket or Azure Blob Storage.

    • Configure Terraform to use the remote backend by specifying the backend configuration in the Terraform configuration file.

    • Ensure proper access control and permissions are set up for the shared storage to prevent unauthorized access.

    • Use l...

  • Answered by AI
  • Q2. Difference b/w freetyle and normal pipeline . How to check if build is successful.
  • Ans. 

    Freestyle pipeline allows more flexibility in defining build steps compared to normal pipeline. Build success can be checked by examining the build status or logs.

    • Freestyle pipeline allows users to define build steps manually, while normal pipeline follows a predefined structure.

    • In freestyle pipeline, build steps can be configured using GUI, whereas normal pipeline uses a script-like syntax.

    • To check if a build is succe...

  • Answered by AI
  • Q3. Current version of linux, running process of linux.
  • Ans. 

    Current version of Linux is 5.14.6. Running processes in Linux can be viewed using commands like ps, top, and htop.

    • Current version of Linux is 5.14.6

    • Running processes in Linux can be viewed using commands like ps, top, and htop

  • Answered by AI
Round 5 - Behavioral 

(1 Question)

  • Q1. If I've mentored team? I've experience of backend or frontend (since my working experience in JS). About my last project.
  • Ans. 

    Yes, I have mentored a team in both backend and frontend development, with experience in JavaScript.

    • Mentored a team in backend and frontend development

    • Experience in JavaScript

    • Last project involved implementing a new feature in the frontend using React

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong Linux, Docker, Jenkins, Terraform. Be prepare with last project they can ask anything and everything. which you going to tell about projects you worked on. System design should be strong. Be confident.

Skills evaluated in this interview

Top Okta Technical Staff Member and Software Engineer Interview Questions and Answers

Q1. Difference b/w freetyle and normal pipeline . How to check if build is successful.
View answer (1)

Technical Staff Member and Software Engineer Interview Questions asked at other Companies

Q1. Difference b/w freetyle and normal pipeline . How to check if build is successful.
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Design LRU Cache. Suggest the best Data structure for this.

Round 2 - Coding Test 

(1 Question)

  • Q1. Given a set of overlapping time ranges, calculate the total run time.
  • Ans. 

    Calculate total run time of overlapping time ranges

    • Sort the time ranges by start time

    • Iterate through the sorted time ranges and merge overlapping ranges

    • Calculate the total run time by summing up the merged ranges

  • Answered by AI

Skills evaluated in this interview

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)

Interview Questions & Answers

user image Anonymous

posted on 28 Jun 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Referral and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Given string which is log entry count the top 2 max number of endpoint called

Round 2 - Technical 

(4 Questions)

  • Q1. What are the system calls when the process is created
  • Ans. 

    System calls when a process is created

    • fork()

    • exec()

    • clone()

  • Answered by AI
  • Q2. Design a logging system for 1000 hosts
  • Ans. 

    Design a scalable logging system for 1000 hosts.

    • Use a centralized logging server to collect logs from all hosts.

    • Implement log rotation to manage disk space efficiently.

    • Consider using a distributed logging system like Elasticsearch, Logstash, and Kibana (ELK stack).

  • Answered by AI
  • Q3. Difference between igw and nat
  • Ans. 

    IGW stands for Internet Gateway and is used to connect a VPC to the internet, while NAT (Network Address Translation) is used to allow instances in a private subnet to access the internet.

    • IGW is used to provide a path for internet traffic to and from a VPC

    • NAT is used to allow instances in a private subnet to access the internet while hiding their private IP addresses

    • IGW is associated with a VPC, while NAT is associated...

  • Answered by AI
  • Q4. Difference between encryption and hashing
  • Ans. 

    Encryption is reversible, while hashing is irreversible.

    • Encryption is a process of converting data into a code to prevent unauthorized access.

    • Hashing is a process of converting data into a fixed-length string of characters.

    • Encryption uses algorithms like AES, RSA, while hashing uses algorithms like MD5, SHA-256.

    • Encrypted data can be decrypted back to its original form, while hashed data cannot be reversed.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be prepared

Skills evaluated in this interview

Okta interview questions for popular designations

 Senior Software Engineer

 (2)

 ml engineer

 (1)

 Technical Product Manager Staff

 (1)

 Technical Staff Member and Software Engineer

 (1)

 Tester

 (1)

 Site Reliability Engineer

 (1)

 Site Reliability Engineer 2

 (1)

 Senior Accountant

 (1)

Technical Product Manager Staff Interview Questions & Answers

user image Shatavisha Chakravorty

posted on 14 Sep 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Talk about your agile coaching experience
  • Ans. 

    I have 5+ years of experience coaching agile teams in various industries

    • Led agile transformation for a software development team, improving delivery time by 30%

    • Trained team members on agile principles and practices, resulting in increased collaboration and productivity

    • Facilitated daily stand-up meetings, sprint planning, and retrospectives to ensure team alignment and continuous improvement

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Questions related to k8s
  • Q2. Questions related to work done

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)

Jobs at Okta

View all
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Linux commands basics
  • Q2. Docker related questions devops

Interview Preparation Tips

Interview preparation tips for other job seekers - My Interview went really well, got no feed back and directly got rejection email for no good reason

Site Reliability Engineer Interview Questions asked at other Companies

Q1. what is diff cloud formation vs terraform, release management like blue green etc.
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Aug 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 Resume tips
Round 2 - HR 

(1 Question)

  • Q1. Basic questions about experience and qualifications.
Round 3 - Technical 

(2 Questions)

  • Q1. Technical questions about process and accounting skills. Its mostly the questions relevant to job descriptions and what we mentioned in the resume.Technical round itself 3 to 4 rounds from Senior accountan...
  • Q2. Job description and previous experience based .
Round 4 - One-on-one 

(1 Question)

  • Q1. Once cleared with technical round, It's all about salary discussion and offer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and be straight forward. Prepare something before the interview based on the job description.

Senior Accountant Interview Questions asked at other Companies

Q1. Tell me about your self tax,
View answer (22)

Tester Interview Questions & Answers

user image Anonymous

posted on 12 Jul 2024

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

(1 Question)

  • Q1. The challenged faced

Tester Interview Questions asked at other Companies

Q1. What is Sdlc and stlc. What is rtm. Diff bet severity n priority. What is scrum. What is burn down chart. What is verification n validation. What is testplan, testcase n test scenario. How testplan looks like. Steps of sdlc elaborate.
View answer (1)

ml engineer Interview Questions & Answers

user image Anonymous

posted on 14 Oct 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Repeating number
Round 3 - Technical 

(1 Question)

  • Q1. System design, distributed system

ml engineer Interview Questions asked at other Companies

Q1. How to evaluate regression models? explain r squared and adjusted r squared and difference between them
View answer (1)
Contribute & help others!
anonymous
You can choose to be anonymous

Okta Interview FAQs

How many rounds are there in Okta interview?
Okta interview process usually has 2-3 rounds. The most common rounds in the Okta interview process are Technical, One-on-one Round and Coding Test.
How to prepare for Okta interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Okta. The most common topics and skills that interviewers at Okta expect are Recruitment, Automation, Automation Testing, Troubleshooting and Python.
What are the top questions asked in Okta interview?

Some of the top questions asked at the Okta interview -

  1. Difference b/w freetyle and normal pipeline . How to check if build is successf...read more
  2. How to manage terraform state file in common place so if one making changes oth...read more
  3. Given 1000 servers and continue running steam check the stream is strictly incr...read more

Recently Viewed

SALARIES

Kantar

SALARIES

Hathway

PHOTOS

SailPoint Technologies

No Photos

Tell us how to improve this page.

Okta Interview Process

based on 9 interviews

Interview experience

3.9
  
Good
View more

BigBasket

We don't just offer jobs; we offer peace of mind.

Interview Questions from Similar Companies

Zscaler Softech Interview Questions
3.6
 • 71 Interviews
MagicPin Interview Questions
3.0
 • 50 Interviews
Gen Interview Questions
4.0
 • 17 Interviews
CyberArk Interview Questions
3.8
 • 12 Interviews
Splunk Interview Questions
4.4
 • 12 Interviews
CrowdStrike Interview Questions
4.1
 • 10 Interviews
FireEye Interview Questions
4.3
 • 5 Interviews
Proofpoint Interview Questions
4.1
 • 2 Interviews
Trend Micro Interview Questions
4.3
 • 1 Interview
View all

Okta Reviews and Ratings

based on 12 reviews

2.3/5

Rating in categories

2.2

Skill development

2.1

Work-life balance

2.7

Salary

2.2

Job security

2.4

Company culture

2.0

Promotions

2.1

Work satisfaction

Explore 12 Reviews and Ratings
Provisioning Analyst

Bangalore / Bengaluru

2-5 Yrs

Not Disclosed

Senior Analyst - Payroll

Bangalore / Bengaluru

3-6 Yrs

Not Disclosed

Senior Site Reliability Engineer

Bangalore / Bengaluru

5-8 Yrs

Not Disclosed

Explore more jobs
Salesforce Consultant
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Site Reliability Engineer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Financial Analyst
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Okta with

Google

4.4
Compare

Zscaler Softech

3.6
Compare

Palo Alto Networks

3.9
Compare

Gen

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