https://github.com/ritterim/interview
Technical Interview
https://github.com/ritterim/interview
exercise interview interview-questions
Last synced: 6 months ago
JSON representation
Technical Interview
- Host: GitHub
- URL: https://github.com/ritterim/interview
- Owner: ritterim
- License: mit
- Created: 2018-03-16T13:37:22.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2021-03-28T21:06:24.000Z (about 5 years ago)
- Last Synced: 2025-03-26T14:46:52.156Z (about 1 year ago)
- Topics: exercise, interview, interview-questions
- Size: 19.5 KB
- Stars: 8
- Watchers: 4
- Forks: 15
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RIMdev Technical Interview
The purpose of this exercise is to understand an applicants ability to *problem solve*, *think critically*, and *write software* with existing RIMdev team members. While there is no expected answer, we do expect the production of a working sample. That means the work must compile, transpile, or interpret and above all else run with no immediate exceptions.
While accomplishing this exercise is permitted before interviewing at Ritter Insurance Marketing, it may also be completed in collaboration with the interviewers.
You, as the interviewee, are encouraged to:
1. Ask Questions
1. Search the internet
1. Discuss your technical choices with interviewers
**NOTE: The desired outcome is a pull request to this repository that builds and can be run by interviewer with minimal effort.**
**We also do not expect to see build artifacts in your pull request.**
## Time
We expect the task to take anywhere between `45` to `90` minutes.
## Requirements
- GitHub account (personal or anonymous is fine)
- Please inform team members which PR is yours in the case an anonymous account is utilized
## Preferred Technology
- [.NET (C#)](https://www.microsoft.com/net)
## Objectives
- [ ] Import [`data.json`](data.json) into memory
- [ ] Submit an application that answers the following questions about the data set:
- [ ] What is the count of individuals over the age of `50`?
- [ ] Who is last individual that `registered` who is still `active`?
- [ ] What are the counts of each `favorite fruit`?
- [ ] What is the most common `eye color`?
- [ ] What is the `total balance` of all individuals combined?
- [ ] What is the `full name` of the individual with the id of `5aabbca3e58dc67745d720b1` in the format of `lastname, firstname`?
## Bonus
- [ ] Persist the result set to a database (of your choice)
- [ ] Include documentation for your technical choices
- documentation may be in the form of comments or a markdown file
- [ ] Credit any packages and sources that helped you solve