The type of tool would best serve a project manager whose team needs to share many different types of documents are d. timelines.
<h3>What are the timelines?</h3>
A mission timeline outlines the mission activities so as in their occurrence. It captures precisely what wishes to be finished over the path of the mission lifecycle and the way it will likely be finished.
The mission control timeline is an in-depth agenda on your mission. It spells out all the duties concerned and a closing date for every in order that your complete group can see whilst man or woman steps will take area and whilst the entire mission could be wrapped up.
Read more bout the project manager:
brainly.com/question/6500846
#SPJ1
Explanation:
rowCount() returns the number of rows affected by the last DELETE, INSERT, or UPDATE statement executed by the corresponding PDOStatement object.
Answer:
Yes, i mean come at me lol
Explanation:
Answer:
vec[0].push_back(10)
Explanation:
Given
Declaration: vector <int> vec
Required
Assign 10 to the first element
This can be done using the push_back keyword.
The syntax is: <em>vectorname[position].push_back(value); </em>
In this case:
vectorname = vec
position = 0 i.e. first element
value = 10
So, we have:
vec[0].push_back(10)
Answer:
#program in python.
#variables
slice_area=14.125
pi=3.14159
#read diameter
d=int(input("Enter diameter of pizza:"))
#area of pizza
area=pi*(d/2)*(d/2)
#number of slice
no_slice=int(area/slice_area)
#print slice
print("total silce are:",no_slice)
Explanation:
Declare and initialize a variable "slice_area" with 14.125 which is the area of a pizza slice.Initialize a variable "pi" with 3.14159.Then read the diameter of pizza.Find the area of pizza as "area=pi *d/2*d/2".Divide the total area with area of pizza slice.This will be the number of slice.
Output:
Enter diameter of pizza:20
total silce are: 22