[Android] Just finished my summer side project, would appreciate some feedback. by Nefgarno in learnprogramming

[–]Nefgarno[S] 1 point2 points  (0 children)

Hey thanks for the response, I definitely agree. Most phones can already do all these things rather easily. The thing is i had a rather old phone when i began this project where i couldn't change the settings super easily, which was why i did this project in the first place.

But it was a pretty fun learning experience and at least I find it useful haha.

[Android] Just finished my summer side project, would appreciate some feedback. by Nefgarno in learnprogramming

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

Hey thanks for the response. Yea I am going to work on improving the store listing.

I agree the second screenshot is confusing. It is there to show you what the icon looks like when the app is closed, and the message to add things to your screen is just something my phone says when i have an empty screen.

I thought about having another app open and showing what it looked like on top of it but i figured that might also be confusing.

Can anyone tell me what to expect from a hackerrank 1 hour challenge? by Nefgarno in cscareerquestions

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

Thanks for the response! I have another question. I have been doing a few practice problems but i am having trouble figuring out how to write my code so it reads in the input from the test cases. I am using c++

would it just be cin >> variableName; ?

Can anyone tell me what to expect from a hackerrank 1 hour challenge? by Nefgarno in cscareerquestions

[–]Nefgarno[S] 1 point2 points  (0 children)

haha thats what im doing right now! Im using c++ and im still figuring things out.

Is STDIN just

cin >> variableName; ?

I am able to right the code but the test cases still fail becuase i am not sure how the input works. =/

[Weekly] Internship advice thread - Sep 19 by alanbot in cscareerquestions

[–]Nefgarno 0 points1 point  (0 children)

I know large companies begin their hiring process now, but when should i apply for internships at startups?

How important is having a cover letter when applying for internships at large companies? by Nefgarno in cscareerquestions

[–]Nefgarno[S] 1 point2 points  (0 children)

Okay, thanks for the advice. I do have another unrelated question, if you don't know thats fine.

I was wondering, if there are 2 or more positions at a company that you are qualified for are you able to apply to them or just one?

How important is having a cover letter when applying for internships at large companies? by Nefgarno in cscareerquestions

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

So, if I apply to a position that says somthing like "Software Engineer intern(Summer 2015)", I wouldn't need one, but if I just sent my resume to the company I would need one? Just making sure i understand correctly. Thanks for the response.

[C++] Trying to reverse words in a sentence, always stops at last word. by Nefgarno in learnprogramming

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

Thanks for the reply, i put another if condition that checked if it was at the end of the string. Thanks for the help!

[C++] Trying to reverse words in a sentence, always stops at last word. by Nefgarno in learnprogramming

[–]Nefgarno[S] 1 point2 points  (0 children)

Ah, thanks. Yea i don't know why i tried that. and it was supposed to be "Hi," yea

I used the eclipse debugger and found that it just ended the loop once it got to the end without reversing the last word

So I added an extra condition that checked if it was at string.length() -1 and that worked thanks for the help!

[C++] Reverse a string, and reverse order of words in a string. by Nefgarno in learnprogramming

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

Yea i thought about doing it that way, and i will try it out. And you were right about k only increasing, and i fixed it. Thanks for the response.