GithubHelp home page GithubHelp logo

hackbrightacademy / tech-interview-prep Goto Github PK

View Code? Open in Web Editor NEW
13.0 12.0 16.0 237 KB

๐ŸŽโœจ How to prep for Hackbright's technical admissions interview!

Home Page: https://hackbrightacademy.com/software-engineering-program/

License: Other

Python 52.59% JavaScript 47.41%
hackbright bootcamp admissions practice-questions python javascript

tech-interview-prep's Introduction

Hackbright Academy Logo
โญ๐ŸŒˆ How to Prep for the Technical Admissions Interview

Hello future Hackbrighters!

If you want to learn how our technical admissions interviews work or you'd like tips on how to prepare, you're in the right place!

๐Ÿ‘‹ Did you stumble onto this page randomly and have no idea what we're talking about? Learn more at hackbrightacademy.com where you can read all about our Software Engineering Program!

Contents

โ“ How do these interviews work?

Our interviews are about 30 min. long, so you should set aside 30 min. of time where you're free, have access to the internet, and able to talk with someone on the phone.

During the interview, you'll get a phone call from one of our friendly interviewers. You'll work with the interviewer to solve a code challenge in your programming language of choice (you don't have to know Python yet!).

Your interviewer will save some time at the end of the 30 min. where you can ask questions about the program ๐Ÿค—

๐Ÿ˜Ž Am I ready to book a technical interview?

If you can do the following, you're probably ready to book an interview:

  • Have worked with strings, numbers (integers), and arrays/lists before
  • Can think of an example of when you'd use a while-loop and when you'd use a for-loop
  • Write a function with parameters that returns a value
  • Add up all the numbers in an array/list of numbers by hand (without using built-in functions or methods)
  • Use conditional logic and loops to filter an array/list (ex.: "given a list of words, return all words that start with 'b'")

๐Ÿ”ฎ Where can I find practice questions?

There are lots of online resources with practice questions, which vary in quality and relevance. To help give you a sense of what to look for, we have collected some problems for you below. Most are written by Hackbright and a few are selected challenges from other resources.

You won't encounter these exact questions in our interviews. However, we recommend them so that you can practice "algorithmic thinking" and problem-solving with code. Working through these questions should help you gauge how comfortable you feel recalling and applying programming basics.

Keep in mind that code challenges can vary in difficulty from person to person โ€” a question that you think is easy might be hard for someone else (and vice versa). So while we can't make any guarantees, if you are able to solve problems similar to the ones below, there's a good chance you'll do well in our interview.

Our practice questions

๐Ÿ’ก Tips for a Successful Interview

  • We conduct our interviews on a site similar to replit.com. Since replit.com is free, we recommend taking some time to familiarize yourself with the platform.
  • You won't be allowed to refer to notes or use outside resources (like Google) to help you with syntax during the interview. If you're struggling with syntax or don't know what to do next, don't worry! Just let the interviewer know and they'll point you in the right direction.
  • Run your code often throughout the interview. Being a good programming means being a good debugger, so don't be afraid to read error messages carefully.
  • Your interviewer will understand how nerve-wracking it can be to program in front of someone. It happens to everyone, no matter how experienced they are. If you draw a blank or get stuck, that's okay! Use this as an opportunity to communicate effectively about what you do understand and what you don't understand.
  • Your interviewer wants to help you pass the interview. It may be helpful to think of them as a collaborator rather than a test proctor.
  • Technical interviews help you and us determine whether you are ready to take on the challenges of our Software Engineering course. In order to get the most out of our program, we need to make sure you are comfortable with certain programming basics including: basic data types (strings, integers, booleans, lists), conditional logic, indexing, looping, and functions.
  • If you don't pass the interview on your first try, don't panic! We'll provide feedback on where you can improve and discuss a timeline for when you can reinterview.

tech-interview-prep's People

Contributors

atrnh avatar mearajennifer avatar poemusica avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

tech-interview-prep's Issues

Current Solution Debug

In the current solution code, the function goes over the first number of the list and return the result based only on that first number. This code needs to be in a while loop to make sure it keeps iterating over each number on the list and return based on the total count of even or odds.

def get_even_or_odds(numbers):
count_even = 0
count_odd = 0

while True:
    for num in numbers:
        if num % 2 == 0:
            count_even = count_even + 1
        
        elif num % 2 != 0:
            count_odd = count_odd + 1
        
    if count_even > count_odd:
        return "Even"
        
    elif count_odd > count_even:
        return "Odd"
        
    else:
        return "Even and odd"

num_list = [1, 2, 3, 4, 5, 6, 7, 8, 10]

print(get_even_or_odds(num_list))

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.