get organized because of the beging when she start she will want ot be nice and fresh on everything
A) hotspot
Bluetooth is for short distance and pan is Personal area networks (PANs) connect an individual's personal devices
Answer:
// code in C++
#include <bits/stdc++.h>
using namespace std;
// main function
int main()
{
// variables
int sum_even=0,sum_odd=0,eve_count=0,odd_count=0;
int largest=INT_MIN;
int smallest=INT_MAX;
int n;
cout<<"Enter 10 Integers:";
// read 10 Integers
for(int a=0;a<10;a++)
{
cin>>n;
// find largest
if(n>largest)
largest=n;
// find smallest
if(n<smallest)
smallest=n;
// if input is even
if(n%2==0)
{
// sum of even
sum_even+=n;
// even count
eve_count++;
}
else
{
// sum of odd
sum_odd+=n;
// odd count
odd_count++;
}
}
// print sum of even
cout<<"Sum of all even numbers is: "<<sum_even<<endl;
// print sum of odd
cout<<"Sum of all odd numbers is: "<<sum_odd<<endl;
// print largest
cout<<"largest Integer is: "<<largest<<endl;
// print smallest
cout<<"smallest Integer is: "<<smallest<<endl;
// print even count
cout<<"count of even number is: "<<eve_count<<endl;
// print odd cout
cout<<"count of odd number is: "<<odd_count<<endl;
return 0;
}
Explanation:
Read an integer from user.If the input is greater that largest then update the largest.If the input is smaller than smallest then update the smallest.Then check if input is even then add it to sum_even and increment the eve_count.If the input is odd then add it to sum_odd and increment the odd_count.Repeat this for 10 inputs. Then print sum of all even inputs, sum of all odd inputs, largest among all, smallest among all, count of even inputs and count of odd inputs.
Output:
Enter 10 Integers:1 3 4 2 10 11 12 44 5 20
Sum of all even numbers is: 92
Sum of all odd numbers is: 20
largest Integer is: 44
smallest Integer is: 1
count of even number is: 6
count of odd number is: 4
Answer:
The answer is "True".
Explanation:
The web page is also known as a home page when it collects more than one page, it is called website. In web page designing, it uses the HTML for design a page and is also available via the web or other networks.
- When we insert a URL address to the Web page, it means, it contains the text, graphics, and hyperlinks to other Web pages and files.
- It also displays all the data on the page, that's why the given statement is true.
Answer:
The interval over which the graph is decreasing is;
(-∞, -3)
Explanation:
The given function is f(x) = 2·(x + 3)² + 2
By expanding the function, we have;
2·x² + 12·x + 20
From the characteristics of a quadratic equation, we have;
The shape of a quadratic equation = A parabola
The coefficient of x² = +2 (positive), therefore the parabola opens up
The parabola has a minimum point
Points to the left of the minimum point are decreasing
The minimum point is obtained as the x-coordinate value when f'(x) = 0
∴ f'(x) = d(2·x² + 12·x + 20)/dx = 4·x + 12
At the minimum point, f'(x) = 4·x + 12 = 0
∴ x = -12/4 = -3
Therefore;
The graph is decreasing over the interval from -infinity (-∞) to -3 which is (-∞, -3)
Please find attached the graph of the function created with Microsoft Excel
The graph is decreasing over the interval (-∞, -3).