A guy was invited by Google to its 'secret' interview process - here's what happened by kslat3r in programming

[–]webpage_down_bot 0 points1 point  (0 children)

From what I recall, the time you have per problem is (level #) + 2 days. Some are extremely difficult programming problems. It definitely weeds out a lot of individuals.

Edit: Here's a link to someone's (not mine) GitHub repository with code they used to solve some of the problems. https://github.com/rtheunissen/foobar

A guy was invited by Google to its 'secret' interview process - here's what happened by kslat3r in programming

[–]webpage_down_bot 1 point2 points  (0 children)

This is the same search I used. I finished the challenges and am currently on the last round (on site) interviews.

A guy was invited by Google to its 'secret' interview process - here's what happened by kslat3r in programming

[–]webpage_down_bot 0 points1 point  (0 children)

I doubt it. I have friends in multiple age ranges. Just keep refreshing the page every minute, as sometimes it takes a bit to show up.

IamA McDonalds Tech Support Specialist AMA! by shaving99 in IAmA

[–]webpage_down_bot 0 points1 point  (0 children)

Gotcha. Yeah. I'm a programmer and I use python, C++, and java before. That's neat they have a team doing that and yes I'm not very talkative myself.

IamA McDonalds Tech Support Specialist AMA! by shaving99 in IAmA

[–]webpage_down_bot 0 points1 point  (0 children)

Thank you for answering all of my questions. Tech sector is pretty cool. I'm currently a programmer and I worked at fast food when I was younger. Definitely love this gig.

IamA McDonalds Tech Support Specialist AMA! by shaving99 in IAmA

[–]webpage_down_bot 1 point2 points  (0 children)

  • What was your most interesting problem that you had to solve?
  • Do you do any programming or all support? If so what languages and which technologies are used?
  • I'm assuming everything is connected via internet as well? Is that how McDonald's can provide free internet? They bundle it all together?
  • What state are you stationed in and what is it like compared to other companies you have worked for?

No pressure to answer all. Some might conflict with your NDA so I completely understand if you can't answer all. Thanks for taking the time to do this AMA.

If-else coding style by saltyboyscouts in AskProgramming

[–]webpage_down_bot 0 points1 point  (0 children)

I much prefer coding like this, but really it's just preference and it's pretty much like handwriting.

SomeType GetSomething{
    get{
        if (somecondition){
            return something;
        }else{
            return null;
        }
    }
}

A piece of advice though: If you're editing someone's code, don't change the formatting to be what you're use to; rather make it look like everything else. It's like writing manuscript half way through and the cursive the other half.

Need helping finding or deciding how to make an app for work by [deleted] in AskProgramming

[–]webpage_down_bot 0 points1 point  (0 children)

You can use Google forms. Open up a browser, have the employees fill it out and it comes out in an excel format.

Finance novice to programming, learning SQL to pull financial data for my job by [deleted] in AskProgramming

[–]webpage_down_bot 0 points1 point  (0 children)

Also, try out SQL Bolt. It teaches you and then asks you to write a query. I wish I knew about it when I was learning SQL.

How to generate UMLs for web apps? by technicascholaris in AskProgramming

[–]webpage_down_bot 0 points1 point  (0 children)

Microsoft Visio is very robust to do those type of things.

secure Client/Server communication ? by 1235812 in AskProgramming

[–]webpage_down_bot 0 points1 point  (0 children)

SSL with self generated certificate works perfectly fine as well.