In Project 2013, related tasks that further define summary tasks are called ________
A) subtasks B) summarized tasks C) team tasks D) indented tasks
A
You might also like to view...
The ________ cell is the cell that contains a formula for the results you are trying to achieve
A) objective B) result C) variable D) constraint
Features that are add-ins are activated through the ________
Fill in the blank(s) with the appropriate word(s).
Which of the following is not true about de facto standards?
a. They never evolve into de jure standards. b. They are those standards that emerge in the marketplace. c. They tend not to be developed by an official industry or government body. d. They are generally supported by more than one vendor but de facto standards have no official standing. e. They tend to emerge based upon the needs/response of the marketplace.
Given the following pseudocode, what would display if this pseudocode was coded and executed, given that examGrade = 93 and homeworkGrade = 87?
``` If examGrade >= 90 AND homeworkGrade >= 90 Then Display "You are doing very well!" Else If examGrade < 90 AND homeworkGrade >= 90 Then Display "Study harder for the next exam." Else If examGrade >= 90 AND homeworkGrade < 90 Then Display "See me for help with homework." Else Display "Let's talk about your grades." End If ``` a. You are doing very well! b. Study harder for the next exam. c. See me for help with homework. d. Let's talk about your grades.