Modern Application Development II, Quiz 2
You are building a login feature for a web application. The frontend sends the user’s email and password to the backend API. The backend validates credentials against a database. Which security issues exist in the code given below?
Frontend: script.js
Backend: app.py
You are building a login feature for a web application. The frontend sends the user’s email and password to the backend API. The backend validates credentials against a database. Which security issues exist in the code given below?\ Frontend: script.js Figure from the original question paper Backend: app.py Figure from the original question paper Consider the following Vue.js code. Figure from the original question paper What will be printed on the console first? Consider the following Vue.js application with two different route scenarios and a component that uses reactive data binding:\ Scenario: An e-commerce application where: Product list component displays products filtered by category• Category changes through router parameters: /products/:category• When a user navigates from /products/electronics to /products/books, the product list should update • Component Code: Figure from the original question paper If the developer changed the template to use displayedProducts instead of filteredProducts, What would be the most likely issue?