routes.py @application.route(‘/login’, methods=[‘GET’, ‘POST…

routes.py @application.route(‘/login’, methods=[‘GET’, ‘POST’])def login(): login_form = classes.LogInForm() if login_form.validate_on_submit(): username = login_form.username.data password = login_form.password.data user = classes.User.query.filter_by(username=username).first() if user is not None and user.check_password(password): login_user(user) else: flash(‘Invalid username and password combination!’) return render_template(‘login.html’, form=login_form) flash.html {% with (1) %} {% for message in messages %} {{ message }} {% endfor %}{% endwith %}   In order to make flash.html display flash messages from routes.py, which one of the following should go in (1)?

routes.py @application.route(‘/plotly_example’, methods=(‘GE…

routes.py @application.route(‘/plotly_example’, methods=(‘GET’, ‘POST’))@login_requireddef plotly_example(): locations = classes.Location.query.all() output = plotly_map(locations) return render_template(‘plotly_map.html’, source=output) def plotly_map(locations): data = [ Scattermapbox( lat=[location.latitude for location in locations], lon=[location.longitude for location in locations], text=[location.name for location in locations], mode=’markers’, )] layout = Layout( autosize=True, hovermode=’closest’, mapbox=dict( accesstoken=mapbox_access_token, bearing=0, center=dict( lat=mean([location.latitude for location in locations]), lon=mean([location.longitude for location in locations]) ), pitch=100, zoom=10 ), ) fig = dict(data=data, layout=layout) output = plotly.offline.plot(fig, include_plotlyjs=False, output_type=’div’) return(output) plotly_map.html {% block content %} {{ (1) }} {% endblock %} Which filter should be used for (1) to render the json output on plotly_map.html?

Section F (Questions 19 ~ 24): A production line consists of…

Section F (Questions 19 ~ 24): A production line consists of two stations: one for production (Station A) and one for checking (Station B). Station A has job arrivals from outside, following a Poisson arrival process with rate 11/hr (a1 = 11/hr) and internal job arrivals from station B. A study shows that 50% of jobs produced at station A do not require checking but the other 50% of jobs are sent to the checking station (Station B). Station B gets an outside arrivals following a Poisson process with rate 5/hr (a2 = 5/hr). Among jobs at station B (both jobs from the outside and from station A), only 40% do not have defectives and leave the system. But the remaining 60% jobs need to be processed again at Station A and sent back to the end of the wait line of Station A. A defective item can visit stations A and B several times until it is fully fixed. A diagram of the production line is given below:    Station A has three servers and each processes one job at a time with a normally distributed service time with mean 6 minutes and variance 2 minutes2. Station B has one server and its processing time is also normal with mean 3 minutes and variance 0.25 minutes2.   

As the number of registered vehicles for the company is not…

As the number of registered vehicles for the company is not large enough to accommodate all requests, the company re-directs 1/4 of requests to a third party (e.g., taxi) and only accepts 3/4 of the requests. Calculate the mean interarrival time between accepted requests in minutes. Show your work.