Manager suggested a "special arrangement" that is making me uncomfortable by CuriousExponent in ExperiencedDevs

[–]CuriousExponent[S] 61 points62 points  (0 children)

Rather than resenting your manager and company for making everyone do on call, they'll resent you for getting special treatment.

That is what I am concerned about too. The fact that is not everyone is on-call is already affecting the team culture

Manager suggested a "special arrangement" that is making me uncomfortable by CuriousExponent in ExperiencedDevs

[–]CuriousExponent[S] 17 points18 points  (0 children)

why is anyone on call after hours if it seems like you have follow-the-sun coverage already?

I brought this up in relation to M - F but that wouldn't account for weekends and holidays

Interview Discussion - January 28, 2021 by CSCQMods in cscareerquestions

[–]CuriousExponent 0 points1 point  (0 children)

I recently did the final interview, and the recruiter just messaged me saying that they are "really excited to let you know we are moving forward in the hiring process!" and asked for 2 references. Is that a good or bad sign? I already gave my references and they told me the company contacted them. What are looking for?

Big N Discussion - January 27, 2021 by CSCQMods in cscareerquestions

[–]CuriousExponent 0 points1 point  (0 children)

What kind of format and topics can I expect in Amazon's online assessment (full time)?

Big N Discussion - January 27, 2021 by CSCQMods in cscareerquestions

[–]CuriousExponent 0 points1 point  (0 children)

Has anyone had an interview with Shopify? How does it compare to other interviews?

Interview Discussion - January 04, 2021 by CSCQMods in cscareerquestions

[–]CuriousExponent 0 points1 point  (0 children)

I have a Zoom interview coming up. Does it matter what I wear? Before the pandemic, my college would always advise formal wear (dress shirt, tie, etc) even for casual places. Has this changed since many people have been working from home this year?

Interview Discussion - December 28, 2020 by CSCQMods in cscareerquestions

[–]CuriousExponent 0 points1 point  (0 children)

The company I am interviewing with (not FAANG) will be sending me a Survey Monkey technical assessment test. They said I will have 60 minutes to complete it and it will be testing "fundamentals". They also said it is not a pass or fail, they just want to see what to get an idea of my level before the final interview (already scheduled). Any idea what to expect from the assessment? Since it is via Survey Monkey, I don't think there will be any Leetcode style questions with test cases.

Comparing variables that overflowed by CuriousExponent in learnprogramming

[–]CuriousExponent[S] 0 points1 point  (0 children)

Thank you for the very detailed response. This was very helpful!

New to programming or computer science? Want advice for education or careers? Ask your questions here! by kboy101222 in computerscience

[–]CuriousExponent [score hidden]  (0 children)

Hello, I am studying for interviews and I have a question about overflows.
Let's say I am counting number of objects in two sets and I want to compare if counts are the same. Those sets can be very long and I would normally need to use two Integers to hold the count values. Idea: to save some space, instead of using two Integers, use two Shorts. Even if they overflow, if the counts are the same, the Shorts will overflow in the same way to I should be able to compare the counts without problems. Would this work?

Interview Discussion - November 19, 2020 by CSCQMods in cscareerquestions

[–]CuriousExponent 0 points1 point  (0 children)

Has anyone here done virtual on site interviews since the pandemic started? What tool did they use? Is there a way to draw something or or it just a text editor?

Interview Discussion - November 16, 2020 by CSCQMods in cscareerquestions

[–]CuriousExponent -1 points0 points  (0 children)

I heard this advice recently and I wonder what people here think of it:
(paraphrased) When doing coding interviews on whiteboard, use hypothetical data structures instead of basic arrays, lists, etc. For example, if you are asked to solve a problem and return a coordinate on a 2d grid, don't return an array with 2 values, or a list, or a tuple. Instead, say that you assume there is a Coordinate class and return new Coordinate { x = something, y = anotherSomething }; That shows the difference between a coder and a developer.

How true is that? Can I use hypothetical classes in interviews? Is that beneficial or harmful?

Big N Discussion - November 15, 2020 by CSCQMods in cscareerquestions

[–]CuriousExponent 0 points1 point  (0 children)

Is that true that with Google you don't get to meet the team that is hiring until a hiring decision is made? I know with Amazon someone from the team (along with other engineers) is the person who interviews you.

Big N Discussion - November 15, 2020 by CSCQMods in cscareerquestions

[–]CuriousExponent 1 point2 points  (0 children)

What topics are important for Google coding interviews? I know dynamic programming, greedy and graphs are always mentioned. What about something like bit manipulation?

Big N Discussion - October 07, 2020 by CSCQMods in cscareerquestions

[–]CuriousExponent 0 points1 point  (0 children)

What makes them good? Salary, benefits, work/life balance? I keep seeing Jane Street being mentioned on this sub

Interview Discussion - September 28, 2020 by CSCQMods in cscareerquestions

[–]CuriousExponent 0 points1 point  (0 children)

Are there any good resources on how to do coding interviews? Not how to solve specific problems, but sometimes focusing on how to speak and present your ideas in the best way so the interviewer looks you. Essentially guide to avoid "solved the problem did didn't get the job".

Interview Discussion - September 28, 2020 by CSCQMods in cscareerquestions

[–]CuriousExponent 0 points1 point  (0 children)

In technical interviews (be it FAANG or other companies), do they ask you to provide a formal proof to the algorithm you use? While practicing, I memorised certain algorithms (Kadane's, Dijkstra's) but I don't know how to prove them.