Computer Science, asked by sikdarfillingstation, 1 day ago

Objective Type Questions
A Fill in the blanks with the correct words.
Radar
Value
Legend
Pie
Data Label
axis
1. The yaws is also known as the
2. The
Identifies the data series.
provides additional information about a data point on a chart.
3 The
4. The
chart plots data in concentric circles.
S The
chart is used to plot data for a single data series.
B Write T for the true statement and F for the false one. Correct the false statement(s).
1. A bar chart is a column chart drawn sideways.
2. A doughnut chart represents only one data series,
3. A 3-D chart contains two walls and a floor.
4. You cannot move a chart on the worksheet.
5. If you are not sure which type of chart to create, click the Recommended Charts
command
C
Plot area
Choose the correct option.
1. Which of these options means the dataset used for creating a chart?
a. Legend
b. Data table
C. Chart area
d. Chart tools
2. Which of these is the rectangular area bounded by the two axes?
a. Legend
b. Data label
d. Gridlines
3. Which of these charts plots data for a single data series?
a. Column chart b. Pie chart
C. Scatter chart d. Bar chart
4. Which of these shortcut buttons appear at the top-right corner of a chart?
Chart Elements
b. Chart Styles Chart Filters d. All of these
5. Which of these gives a y-axis title to your chart?
Chart Title b. Axis Title
c Primary Vertical
d. Primary Horizontal
a Axis Title
a Chart Title

plz help fast i will mark you as the brainlest brainliest ​

Answers

Answered by Aryansingh001
3

Answer:

abe ullu

Explanation:

# include <iostream> using namespace std; int main() { char op; float num1, num2; cout << "Enter operator: +, -, *, /: "; cin >> op; cout << "Enter two operands: "; cin >> num1 >> num2; switch(op) { case '+': cout << num1 << " + " << num2 << " = " << num1 + num2; break; case '-': cout << num1 << " - " << num2 << " = " << num1 - num2; break; case '*': cout << num1 << " * " << num2 << " = " << num1 * num2; break; case '/': cout << num1 << " / " << num2 << " = " << num1 / num2; break; default: // If the operator is other than +, -, * or /, error message is shown cout << "Error! operator is not correct"; break; } return 0; }

Output

Enter operator either + or - or * or divide : - Enter two operands: 3.4 8.4 3.4 - 8.4 = -5.0

Thi

Similar questions