Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Sql ( Another Simple Program ) Given two variables, x and y, create and execute a program that will (i) ask for input from the

Sql

( Another Simple Program )

Given two variables, x and y, create and execute a program that will

(i) ask for input from the user on the values for x and y

(ii) calculate the value of the following algebraic expression z = 5 x 2 y ? 2 x y 2 + 7 x / y ? x + 2 y ? 17

(iii) display the output of the above mathematical processes; and

(iv) test the program with x = 10 and with y = 5 , and then test the program with two different values of x and y

Some starter code is given below.

SET SERVEROUTPUT ON;

SET VERIFY OFF;

DECLARE

x number := &x_number;

y number

z number

BEGIN

z := 5 * x**2 * y + ;

dbms_output.put_line('The value of the polynomial is ');

dbms_output.put_line( when x = and y = || y );

EXCEPTION -- throw an exception when division by zero

END;

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

OCA Oracle Database SQL Exam Guide Exam 1Z0-071

Authors: Steve O'Hearn

1st Edition

1259585492, 978-1259585494

More Books

Students also viewed these Databases questions

Question

l Discuss advantages and disadvantages of work teams.

Answered: 1 week ago

Question

How do modern Dashboards differ from earlier implementations?

Answered: 1 week ago