Q1: Tell me about a project you’re most proud of. What was your role and impact? Answer (Simple): “One project I’m really proud of is working on a finance project with NeoVerify . Neo is a company that helps auto lenders in the US make better loan decisions . They do this by using the lender’s own past loan data and applying AI and machine learning to build a custom scoring model . My role was to work on the backend side, where I helped in building APIs, designing the database, and supporting the scoring logic . The goal was to make the loan approval process faster and reduce manual work. The impact was big — lenders were able to automate most of their underwriting process . This saved them a lot of time and cost , helped their sales team close loans faster , and at the same time reduced risk because decisions were more data-driven. I felt proud because my contribution helped create a system that was smarter, faster, and safer for the client’s business.” Q2: How do you handle ...
The web development is usually divided into three subsystems closely integrated to each other. They are: – Model (active record) : all the data logic is handled by this model which in rails is known as the active record library. It acts a bridge between the ruby program code and the main database. View (action view) : the end user sees the view part of the application. Controller (action controller) : it acts as a data broker of an application. It also helps in handling the logic which allows the model and view to communicate with one another. This is how the model view controller framework used in ruby on rails.
The methods which are used before and after the action of the controller method are executed. It ensures that the code runs with the given action method which is called. Three types of filters are supported by rails. They are: Before filters: these filters are executed before the execution of the code in the action controller. After filters: these filters are executed after the execution of the code in the action controller. Around filters: these are executed both before and after the execution of the code present in the action controller.
Comments
Post a Comment