Answer:
Bullets can be turned off and on.
Lists don't have to use numbers or bullets.
Explanation:
because L just wanted the light
Answer:
#include <iostream>
using namespace std;
void swap(int *a,int *b)
{
int temp;
temp=*a;
*a=*b;
*b=temp;
}
bool consecutive(int k1,int k2,int k3)
{
int arr[]={k1,k2,k3}; //storing these variables into an array
int i,j;
for(i=0;i<3;i++)
{
for(j=i;j<3;j++)
{
if(arr[i]>arr[j])
{
swap(arr[i],arr[j]); //swapping to sort these numbers
}
}
}
if((arr[1]==arr[0]+1)&&(arr[2]==arr[0]+2)) //checks if consecutive
return true;
else
return false;
}
int main()
{
int result=consecutive(6,4,5); //storing in a result variable
if(result==0)
cout<<"false";
else
cout<<"true";
return 0;
}
OUTPUT :
true
Explanation:
In the above code, it stores three elements into an array and then sorts the array in which it calls a method swap() which is also defined and interchanges values of 2 variables. Then after sorting these numbers in ascending order , it checks if numbers are consecutive or not, if it is true, it returns true otherwise it return false.
Answer:
The first option is incorrect
Explanation:
With the Control+C method, you copy the text. With the Control+V method, you paste it. You do not remove any of the text and instead create a duplicate
Answer:
i dont know but thanks for marks
On this spreadsheet, a feature which Debra should use to find the answer is the What-if analysis.
A spreadsheet application is a sort of computer programme that is often created with cells that are arranged in rows and columns in a tabular fashion in order to perform the following operations on a data set:
Generate
Sort
Calculate
Format
Arrange
What-if analysis, which is a feature of Microsoft Excel, is a procedure created and built for altering cell values in order to see how these changes will impact the results of Excel formulas on the spreadsheet.
Changing the values in cells to see how such changes may impact the results of formulas on the worksheet is known as what-if analysis. Scenarios, Goal Seek, and Data Tables are the three different What-If Analysis tools that are included with Excel. Data tables and scenarios use collections of input values to predict potential outcomes.
Learn more about Debra:
brainly.com/question/26142862
#SPJ4