Answer:
it is called specialization
Explanation:
Which button on the desktop do you click to examine your existing folder and file structure?
Answer: File Explorer
Explanation:
File Explorer is application that is found in computing system for management and navigation of files.It helps in extracting the content of file, tracks recently opened folder and file, arranges file in a folder etc.Graphical user interface(GUI) is used by File explorer so that is can access and manage and organize file system.File Explorer is launched by Microsoft corporation for exploring structure of files and folderWhy is it important to identify where privacy data resides throughout your it infrastructure?
When you are in _______ cell in a row of a table, pressing Tab moves the insertion point to the first cell in the next row. A. the center B. any C. the first D. the last
Mr. Olgesandravich is proctoring students working at their own pace in an online class. He is generating a spreadsheet that shows both the amount of the course that is complete as well as when the students are expected to finish. Which two formats is Mr.Olgesandravich most likely using?
percentages and date
percentages and currency
currency and accounting
date and accounting
What does ‘‘negotiation’’ mean when discussing network protocols? give an example?
Final answer:
Negotiation in network protocols is the process where communication parameters are established between entities to facilitate data exchange, similar to how business negotiations aim to reach agreements, albeit with cultural variations that impact the approach and success of the negotiations.
Explanation:
Negotiation in Network Protocols
When discussing network protocols, ‘negotiation’ refers to the process in which the entities involved in a communication establish the parameters of their connection and data exchange. This involves a set of precise rules that outline the sequence of who will transmit data first, the expected responses, and subsequent actions, thus facilitating a cooperative “conversation” between different devices or applications over a network.
An example of negotiation can be seen when a client and server determine the best encryption algorithm to use during the starting phase of a secure HTTPS session, ensuring both parties support and agree on the chosen method for securing data transmission.
In the business world, negotiation also plays a vital role. The process can be culturally dependent, as negotiation styles vary across different societies. For instance, Western cultures may view negotiation primarily as a business activity with a focus on concrete outcomes and efficiency, while other cultures, such as in Brazil or China, may prioritize building trust and respecting social norms and indirect communication styles when negotiating.
The context and cultural nuances can greatly affect the outcome and process of negotiation, making it crucial for negotiators to understand and adapt to the cultural expectations of their counterparts.
the banner over the finish line of a race is 400 cm long and 85 cm high. what is the area of the banner?
Which one of these is the most different? javascript php ruby python mysql?
Answer:MySql
Explanation:
Amonng them, MySql is a data base
List three functions that you can perform with a database that you cannot perform with a spreadsheet.
Problem 2. (expectedcost) it is difficult to make a budget that spans several years, because prices are not stable. if your company needs 200 pencils per year, you cannot simply use this year’s price as the cost of pencils two years from now. because of inflation the cost is likely to be higher than it is today. write a program to gauge the expected cost of an item in a specified number of years. the program asks for the cost of the item, the number of years from now that the item will be purchased, and the rate of inflation. the program then outputs the estimated cost of the item after the specified period. have the user enter the inflation rate as a percentage, such as 5.6 (percent). your program should then convert the percentage to a fraction,
The program that outputs the estimated cost of the item after the specified period with inflation rate as a percentage and convert the percentage to a fraction is; As written below
How to write a program in Java?
The input for this program is;
import java.util.Scanner;
public class TestDemo {
public static void main(String[] args) {
double cost, inflation;
int years;
Scanner input = new Scanner(System.in);
System.out.print("Enter the cost :");
cost = input.nextDouble();
System.out.print("Enter the number of years:");
years = input.nextInt();
System.out.print("Enter the inflation rate:");
inflation = input.nextDouble() * .01;
for (int i = 0; i < years; i++)
cost += cost * inflation;
cost = (int) (cost * 100) / 100.0;
System.out.println("Item will cost about $ " + cost + " in " + years + " years. " );
}
}
The output is;
Enter the cost :2000
Enter the number of years:12
Enter the inflation rate:0.056
Item will cost about $ 2013.48 in 12 years.
Read more about Java Programming at; https://brainly.com/question/18554491
What command can the current users execute to show a list of commands previously entered? explain the utility of this command?