Answer: a)Innovation
Explanation: Innovation is the technique that helps in the creation of the product with changes and alteration. Extra required features , better functioning, less time consumption, etc are some factors that are usually done in item to make it desirable by the consumer and they are attracted toward buying the enhanced product.
Other options are incorrect because research and design techniques is used for researching about the product and then designing it and disruptive technology is the technology that is used for the damaging the marketing of the exiting product through introducing a new product.Thus, the correct option is option(a).
Answer:
DNS or Domain Name System
Explanation:
You can query a DNS server with a domain name to get an IP address.
Answer:
i dont see any models...please include a picture
The software that allows developers to deploy applications using the exact same environment in which they were developed is docker. The correct option is A.
<h3>What is a software package?</h3>
An assortment of files and data about those files makes up a software package. Linux's distributions are typically set up as individual software packages, each of which contains a specific program, like a web browser or a development environment.
Docker is a platform of service products that uses visualization of OS. Develops the shipping and running application.
Thus, the correct option is A. Docker.
To learn more about the software package, refer to the link:
brainly.com/question/18523054
#SPJ4
The question is incomplete. Your most probably complete question is given below:
A. Docker
B. Git
C. Bitbucket
D. Gitlab
Answer:
<u> Initial program output (from original program)</u>
Annual salary is: 40000
Monthly salary is: 3333
<u>Program output after workHoursPerWeek = 35</u>
Annual salary is: 35000
Monthly salary is: 2916
<u>Revised program (using variable workWeeksPerYear)</u>
- public static void main(String[] args) {
-
- int hourlyWage = 20;
- int workHoursPerWeek = 35;
- int workWeeksPerYear = 52;
- int annualSalary = 0;
-
- annualSalary = hourlyWage * workHoursPerWeek * workWeeksPerYear;
- System.out.print("Annual salary is: ");
- System.out.println(annualSalary);
-
- System.out.print("Monthly salary is: ");
- System.out.println((hourlyWage * workHoursPerWeek * workWeeksPerYear) / 12);
-
- return;
-
- }
Program output:
Annual salary is: 36400
Monthly salary is: 3033
<u>Revised Program after introducing monthly salary</u>
- public static void main(String[] args) {
-
- int hourlyWage = 20;
- int workHoursPerWeek = 35;
-
- int workWeeksPerYear = 52;
- int annualSalary = 0;
- int monthlySalary = 0;
-
- annualSalary = hourlyWage * workHoursPerWeek * workWeeksPerYear;
- monthlySalary = hourlyWage * workHoursPerWeek * workWeeksPerYear;
-
- System.out.print("Annual salary is: ");
- System.out.println(annualSalary);
-
- System.out.print("Monthly salary is: ");
- System.out.println((monthlySalary) / 12);
-
- return;
-
- }
Explanation:
One reason to use variable to replace the magic number is to improve the readability of the program. If we compared the revised version of the program with the original program, we will find that the variable enable our code easier to understand.
Besides, if we wish to change the value (e.g. working hours per year or per month), we just need to adjust the value assigned on the variables. The variables provide a single access point to get or change the value.