Okay sure.
I’ll 1)chords
2)pulse
3)aerophone
4) the answer is C
5)rhythm
Pretty sure those are the answers
Answer:
1) For preparation of plan :
It is to gather the team and creating the timeline. Gathering the inputs for the plan and confirming the mission and vision then launching the strategy.
2) A mission would describe about the company and the specification of the company
A vision is the long term or future state of the organization to achieve in a time frame.
Both would include the OAS statements and strategic shifts.
3) The OAS and strategic shift would help to create a balanced score card that would help for data gathering and analysis
This would include the financial, customers goal, Process goals, people's goals etc.
4) To create and develop the plan's framework:
To set the objective for high level organizational goals
To measure the and accomplish the objectives
To take initiatives to achieve the objectives
Explanation:
Answer:
System analysis can be defined as a deep analysis of a part of the structure of a module that has been designed before. System design means to make any module or a part of the structure from scratch and build it completely without estimation.
Explanation:
Answer:
public static int average(int j, int k) {
return (int)(( (long)(i) + (long)(j) ) /2 );
}
Explanation:
The above code returns the average of two integer variables
Line 1 of the code declares a method along with 2 variables
Method declared: average of integer data type
Variables: j and k of type integer, respectively
Line 2 calculates the average of the two variables and returns the value of the average.
The first of two integers to average is j
The second of two integers to average is k
The last parameter ensures average using (j+k)/2