Skip to main content

Technical Interview Questions

Review this list of 387 Technical interview questions and answers verified by hiring managers and candidates.
  • Amazon logoAsked at Amazon 
    Add answer
    Security Analyst
    Technical
    +1 more
  • Apple logoAsked at Apple 
    Add answer
    Security Engineer
    Technical
    +1 more
  • Google logoAsked at Google 
    1 answer

    "This is a Technical question. It tests your ability to understand high level technical concepts. Even though your job won't have any coding involved, you'll still need to understand these concepts. Being able to cover all these topics with clarity communicates confidence in your interviewer. Unfortunately, there's no formula for technical questions, but some general tips are: Use analogies when you can Break your solution into clear, bite-size steps Don't be afraid to use examples to b"

    Exponent - "This is a Technical question. It tests your ability to understand high level technical concepts. Even though your job won't have any coding involved, you'll still need to understand these concepts. Being able to cover all these topics with clarity communicates confidence in your interviewer. Unfortunately, there's no formula for technical questions, but some general tips are: Use analogies when you can Break your solution into clear, bite-size steps Don't be afraid to use examples to b"See full answer

    Product Manager
    Technical
  • Amazon logoAsked at Amazon 
    1 answer

    "Use a min-heap or sort the array, either method works"

    Kwaku K. - "Use a min-heap or sort the array, either method works"See full answer

    Software Engineer
    Technical
  • LinkedIn logoAsked at LinkedIn 
    1 answer

    "This question is quite straightforward. The key to this is to be concise and specific. > An endpoint is essentially the destination of an API call. The endpoint returns specific data depending on which endpoint was called. An example of a POST request is when a user signs up or logs in. Some data is posted and validated on the server (like a login email and password). An example of a GET request is when viewing another user's page. There's likely an endpoint that gets data like the person's name"

    Exponent - "This question is quite straightforward. The key to this is to be concise and specific. > An endpoint is essentially the destination of an API call. The endpoint returns specific data depending on which endpoint was called. An example of a POST request is when a user signs up or logs in. Some data is posted and validated on the server (like a login email and password). An example of a GET request is when viewing another user's page. There's likely an endpoint that gets data like the person's name"See full answer

    Product Manager
    Technical
  • 🧠 Want an expert answer to a question? Saving questions lets us know what content to make next.

  • Google logoAsked at Google 
    1 answer

    "How would you place Amazon Alex hardware in a car, if car software integration was not an option? Let me understand the context and the situation Is Amazon really trying to experiment if they could be a new device category in the cars (or) Is it that they did not get the right partnerships that led to this decision (assuming this is the case) What could be the objectives why Amazon will get interested in this? Apple and Google are getting entrenched in this space and Amazon has almost n"

    Vamsi K. - "How would you place Amazon Alex hardware in a car, if car software integration was not an option? Let me understand the context and the situation Is Amazon really trying to experiment if they could be a new device category in the cars (or) Is it that they did not get the right partnerships that led to this decision (assuming this is the case) What could be the objectives why Amazon will get interested in this? Apple and Google are getting entrenched in this space and Amazon has almost n"See full answer

    Technical
    Product Design
  • AWS logoAsked at AWS 
    Add answer
    Security Analyst
    Technical
    +2 more
  • Google logoAsked at Google 
    Add answer
    Software Engineer
    Technical
  • "I have worked with tools such as Hadoop, Oracle, DBeaver, and Databricks. I have used these tools at work when dealing with large datasets, data cleaning, data security, and creating models"

    Aneesh D. - "I have worked with tools such as Hadoop, Oracle, DBeaver, and Databricks. I have used these tools at work when dealing with large datasets, data cleaning, data security, and creating models"See full answer

    Data Engineer
    Technical
  • Capital One logoAsked at Capital One 
    Add answer
    Machine Learning Engineer
    Technical
  • Apple logoAsked at Apple 
    Add answer
    Security Engineer
    Technical
    +1 more
  • Google logoAsked at Google 
    Add answer
    Security Analyst
    Technical
    +1 more
  • Bentobox logoAsked at Bentobox 
    1 answer

    "1. Clarifying Questions & Objective Before diving into the solution, it is important to define the scope and goals: Context: Is this for an existing ecosystem (e.g., Zomato/Dineout) or a standalone SaaS product for restaurants? Demographic: Are we targeting high-end fine dining, busy urban cafes, or large-scale bar chains? Primary Objective: The broader goal is to streamline operations and optimize table turnover, ultimately leading to maximized revenue for"

    Mrigang S. - "1. Clarifying Questions & Objective Before diving into the solution, it is important to define the scope and goals: Context: Is this for an existing ecosystem (e.g., Zomato/Dineout) or a standalone SaaS product for restaurants? Demographic: Are we targeting high-end fine dining, busy urban cafes, or large-scale bar chains? Primary Objective: The broader goal is to streamline operations and optimize table turnover, ultimately leading to maximized revenue for"See full answer

    Product Manager
    Technical
    +2 more
  • FrontFinancial logoAsked at FrontFinancial 
    Add answer
    Product Manager
    Technical
    +1 more
  • Yelp logoAsked at Yelp 
    Add answer
    Technical
    Behavioral
  • Twitch logoAsked at Twitch 
    1 answer

    "This is a Technical question. It tests your ability to understand high level technical concepts. Even though your job won't have any coding involved, you'll still need to understand these concepts. Being able to cover all these topics with clarity communicates confidence in your interviewer. Unfortunately, there's no formula for technical questions, but some general tips are: Use analogies when you can Break your solution into clear, bite-size steps Don't be afraid to use examples to b"

    Exponent - "This is a Technical question. It tests your ability to understand high level technical concepts. Even though your job won't have any coding involved, you'll still need to understand these concepts. Being able to cover all these topics with clarity communicates confidence in your interviewer. Unfortunately, there's no formula for technical questions, but some general tips are: Use analogies when you can Break your solution into clear, bite-size steps Don't be afraid to use examples to b"See full answer

    Product Manager
    Technical
  • Mastercard logoAsked at Mastercard 
    2 answers

    "function findMinMax(array){ array.sort((a,b) => a - b); let min = array[0]; let max = array.slice(-1); return [min,max]; } `"

    Adam S. - "function findMinMax(array){ array.sort((a,b) => a - b); let min = array[0]; let max = array.slice(-1); return [min,max]; } `"See full answer

    Software Engineer
    Technical
  • NASA logoAsked at NASA 
    Add answer
    Security Analyst
    Technical
    +2 more
  • "package mycoding.tryexponent.com; import java.util.Scanner; public class FirstAndLastOccurenceOfaNumber { public static void main(String[] arg) { System.out.println("Enter 'a' to run the programme:"); System.out.println("Enter 't' to terminate the programme:"); Scanner in=new Scanner(System.in); String inputtedString=in.nextLine(); while(!"t".equalsIgnoreCase(inputtedString)) { System.out.println("enter a number to find its 1st nd last occurence"); int number=in.nextInt(); int[] array=new i"

    Ankur T. - "package mycoding.tryexponent.com; import java.util.Scanner; public class FirstAndLastOccurenceOfaNumber { public static void main(String[] arg) { System.out.println("Enter 'a' to run the programme:"); System.out.println("Enter 't' to terminate the programme:"); Scanner in=new Scanner(System.in); String inputtedString=in.nextLine(); while(!"t".equalsIgnoreCase(inputtedString)) { System.out.println("enter a number to find its 1st nd last occurence"); int number=in.nextInt(); int[] array=new i"See full answer

    Technical
  • Asana logoAsked at Asana 
    1 answer

    "Things on which Site performance depends Page Speed: The time it takes to load the webpage. It comprises the metrics like Server response time [Amount of time when a web client makes a request and a server responds to the request], Transfer time [Time it takes to download a webpage], and render time [Duration of time it takes to render the HTML page in browser]. DNS lookup speed: Every website name is mapped with the corresponding IP Address. So the browser lookup up the IP for t"

    Anonymous Muskox - "Things on which Site performance depends Page Speed: The time it takes to load the webpage. It comprises the metrics like Server response time [Amount of time when a web client makes a request and a server responds to the request], Transfer time [Time it takes to download a webpage], and render time [Duration of time it takes to render the HTML page in browser]. DNS lookup speed: Every website name is mapped with the corresponding IP Address. So the browser lookup up the IP for t"See full answer

    Technical
Showing 301-320 of 387