The protocol uses ip (internet protocol) addresses consisting of 128 bits is IPV6.
What is meant by protocol ?A protocol is a set of guidelines for data exchange.. Each step and process of communication between two or more computers has a set of rules that apply to it. Networks must adhere to specific rules in order to successfully carry data.
Network protocols can be divided into three categories. These include the administration, communication, and security procedures for networks: Examples of communication protocols include TCP/IP and HTTP, which are fundamental data communication technologies.
A "blueprint of methods, properties, and other requirements that suit a given task or piece of functionality" is defined by protocols. Swift checks for protocol conformance problems at compile time, enabling programmers to find some fatal defects even before the program is run.
To learn more about protocol refer to :
https://brainly.com/question/14280351
#SPJ4
what are vga cables used for
Answer:
VGA cables are used to connect a PC or a compatible laptop to a monitor.
Explanation:
When the monitor says "No VGA signal/cable connected", that means either the PC is off or the cable is disconnected from either the PC or the monitor.
write down the output of the following program by showing dry down
The output of the given program will be:
"CPE"
This is because the program defines a subroutine named RESULT which takes a string parameter A$. The RESULT subroutine first calculates the length of the string A$ using the LEN() function and stores it in variable B. It then initializes a counter C to 1 and enters a loop that runs as long as C is less than or equal to B.
In each iteration of the loop, the program takes the character at the position specified by C in the string A$ using the MID$() function and appends it to a new string B$. The program then increments the counter C by 2 and continues with the next iteration of the loop.
Once the loop has been completed, the program prints the final value of B$, which will contain every other character of the input string A$. In this case, since the input string is "COMPUTER", the output will be "CPE".
Learn more about program at:
https://brainly.com/question/11023419
#SPJ1
what is the use of LEFT$ function
Answer:
It is used by combining it with other functions such as VALUE, SUM, COUNT, DATE, DAY, etc.
23. Convert the following to Megabytes
a) 2GB
b) 2056 Bytes-
Answer:
A. 2048mb
B. 2 mb
Explanation:
Giga 1024 mb
MB 1024 kb
wes is using usmt to migrate user profiles to newly purchased windows 10 computers in the organization. to begin the migration, he executes the scanstate.exe process on the source computers to collect user profile information. where is this information most likely to be stored?
Answer:
When using USMT (User State Migration Tool) to migrate user profiles, the scanstate.exe process is used to collect user profile information from the source computers. This information is most likely to be stored in a migration store, which is a location on the source computer where USMT stores the data that it collects.
The migration store can be specified by the user when the scanstate.exe process is run, or it can be set to a default location. The default location for the migration store is typically the local drive of the source computer.
Once the user profile information has been collected and stored in the migration store, it can be used to restore the user profiles to the target computers using the loadstate.exe process. The loadstate.exe process reads the data from the migration store and restores it to the target computers, allowing the user profiles to be transferred to the new Windows 10 computers.
Explanation:
write a program that records high-score data for a fictitious game. the program will ask the user to enter the number of scores, create two dynamic arrays sized accordingly, ask the user to enter the indicated number of names and scores, and then print the names and scores sorted by score in descending order.
#include <iostream>
#include <string>
using namespace std;
void initializeArrays(string names[], int scores[], int size);
void sortData(string names[], int scores[], int size);
void displayData(const string names[], const int scores[], int size);
int main()
{
string names[5];
int scores[5];
initializeArrays(names, scores, 5);
sortData(names, scores, 5);
displayData(names, scores, 5);
return 0;
}
void initializeArrays(string names[], int scores[], int size){
for(int i=0; i<size; i++){
cout<<"Enter the name for score #"<<(i+1)<<": ";
cin >> names[i];
cout<<"Enter the score for score #"<<(i+1)<<": ";
cin >> scores[i];
}
}
void sortData(string names[], int scores[], int size){
int temp = 0;
string tempStr = "";
for(int i=0; i < size; i++){
for(int j=1; j < (size-i); j++){
if(scores[j-1]< scores[j]){
temp = scores[j-1];
scores[j-1] = scores[j];
scores[j]=temp;
tempStr = names[j-1];
names[j-1] = names[j];
names[j]=tempStr;
}
}
}
}
void displayData(const string names[], const int scores[], int size){
cout<<"Top Scorers:"<<endl;
for(int i=0; i<size; i++){
cout<<names[i]<<": "<<scores[i]<<endl;
}
}
C++ Programming :
C++ is an object-oriented programming language which gives a clear structure to programs and allows code to be reused, lowering development costs. C++ is portable and can be used to develop applications that can be adapted to multiple platforms. Performance, effectiveness, and flexibility of usage were the design pillars of C++, which was created with systems programming, embedded, resource-constrained software, and big systems in mind. The software infrastructure and resource-constrained applications, such as desktop programmes, video games, servers, and performance-critical programmes, are two areas where C++ has been proven to be very useful.
C++ is standardized by an ISO working group known as JTC1/SC22/WG21. It has released six iterations of the C++ standard thus far and is now working on C++23, the upcoming revision. C++ was first standardised by the ISO working group in 1998 as ISO/IEC 14882:1998, also referred to as C++98. It released a revised version of the C++ standard in 2003 called ISO/IEC 14882:2003 that addressed issues found in C++98.
The two fundamental parts of the C++ programming language are a direct translation of hardware characteristics, mostly from the C subset, and zero-overhead abstractions built on top of those mappings. According to Stroustrup, C++ is ""C++" is a lightweight abstraction programming language that "offers both hardware access and abstraction" and is "built for creating and using efficient and elegant abstractions." Its ability to be done effectively sets it apart from other languages."
To learn more about C++ refer :
https://brainly.com/question/20339175
#SPJ4
C++ is an object-oriented programming language which gives a clear structure to programs and allows code to be reused, lowering development costs. C++ is portable and can be used to develop applications that can be adapted to multiple platforms.
How to Create C++ Program for High score data for a fictious?C++ is an object-oriented programming language which gives a clear structure to programs and allows code to be reused, lowering development costs. C++ is portable and can be used to develop applications that can be adapted to multiple platforms. Performance, effectiveness, and flexibility of usage were the design pillars of C++, which was created with systems programming, embedded, resource-constrained software, and big systems in mind.
The software infrastructure and resource-constrained applications, such as desktop programmes, video games, servers, and performance-critical programmes, are two areas where C++ has been proven to be very useful.
#include <iostream>
#include <string>
using namespace std;
void initializeArrays(string names[], int scores[], int size);
void sortData(string names[], int scores[], int size);
void displayData(const string names[], const int scores[], int size);
int main()
{
string names[5];
int scores[5];
initializeArrays(names, scores, 5);
sortData(names, scores, 5);
displayData(names, scores, 5);
return 0;
}
void initializeArrays(string names[], int scores[], int size){
for(int i=0; i<size; i++){
cout<<"Enter the name for score #"<<(i+1)<<": ";
cin >> names[i];
cout<<"Enter the score for score #"<<(i+1)<<": ";
cin >> scores[i];
}
}
void sortData(string names[], int scores[], int size){
int temp = 0;
string tempStr = "";
for(int i=0; i < size; i++){
for(int j=1; j < (size-i); j++){
if(scores[j-1]< scores[j]){
temp = scores[j-1];
scores[j-1] = scores[j];
scores[j]=temp;
tempStr = names[j-1];
names[j-1] = names[j];
names[j]=tempStr;
}
}
}
}
void displayData(const string names[], const int scores[], int size){
cout<<"Top Scorers:"<<endl;
for(int i=0; i<size; i++){
cout<<names[i]<<": "<<scores[i]<<endl;
}
}
C++ is standardized by an ISO working group known as JTC1/SC22/WG21. It has released six iterations of the C++ standard thus far and is now working on C++23, the upcoming revision. C++ was first standardised by the ISO working group in 1998 as ISO/IEC 14882:1998, also referred to as C++98. It released a revised version of the C++ standard in 2003 called ISO/IEC 14882:2003 that addressed issues found in C++98.
The two fundamental parts of the C++ programming language are a direct translation of hardware characteristics, mostly from the C subset, and zero-overhead abstractions built on top of those mappings. According to Stroustrup, C++ is ""C++" is a lightweight abstraction programming language that "offers both hardware access and abstraction" and is "built for creating and using efficient and elegant abstractions." Its ability to be done effectively sets it apart from other languages."
To learn more about C++ refer to:
brainly.com/question/20339175
#SPJ4
cual es el procedimientos para asistir en el transporte publico a personas discapacitadas
Answer:
Una discapacidad física o motora en una o más partes del cuerpo obstaculiza las acciones y / o movimientos de la persona con discapacidad. La discapacidad puede surgir porque las partes del cuerpo no han crecido completamente o están dañadas (anomalías físicas) o porque las funciones físicas están alteradas (anomalías funcionales).
En la mayoría de los casos, se proporciona una ayuda a las personas con discapacidades físicas graves para que puedan desenvolverse más fácilmente en la sociedad. Alguien con una discapacidad motora severa en las piernas a menudo usa una silla de ruedas. Las personas con una discapacidad motora de las manos (pérdida de la motricidad fina) o de los brazos pueden compensar esto con un manipulador o ayudas especializadas en tareas, como un dispositivo para comer o un dispositivo para girar las hojas.
Así, todos estos elementos deben ser posibles de ser insertados en los medios de transporte público como forma de ayudar a estas personas a trasladarse por estos medios, es decir, los autobuses, trenes, etc., deben estar adaptados para poder recibir allí a pasajeros en sillas de ruedas o con necesidades motoras especiales.
give 4 example for echinodermis cnidarians poriferas platyhilminthes nematodes and annerids
Answer:
Among the largest and most important invertebrate phyla are Porifera (sponges), Cnidaria (jellyfish, corals, and sea anemones), Platyhelminthes (flatworms), Nematoda (roundworms), Mollusca (snails, bivalves, squids, and octopuses), Annelida (segmented worms), Arthropoda (horseshoe crabs, spiders, crabs, centipedes, ..
______________________ increases security by verifying identity based on more than just a password or pin.
Answer:
two-factor authentication
Explanation:
two-factor authentication increases security by verifying identity-based on more than just a password or pin.
which of the following statements enables you to print file updated on the screen when a c program is finished?
The statement "printf" allows you to print file updates on the screen when a C program is finished.
Which statement enables printing file updates on the screen when a C program is finished?
The "printf" statement in C is used to print output to the screen or console. By using "printf" with appropriate formatting, you can display file updates or any other desired information on the screen when a C program finishes execution.
This allows for displaying relevant details, such as updated file contents or summary statistics, to provide feedback or results to the user.
"printf" supports various format specifiers to handle different data types and can be customized to present the desired information in a readable format.
It is a versatile function for displaying output and providing information to the user during program execution.
Learn more about "printf"
brainly.com/question/30711524
#SPJ11
What literary device is used in Their Eyes Were Watching God?
The novel "Their Eyes Were Watching God" by Zora Neale Hurston uses various literary devices to engage the reader. One of the literary devices used in the novel is figurative language.
For example, the author uses metaphors to help convey the protagonist's feelings and thoughts, as seen in Janie's expression to Pheoby that if God doesn't care about her neighbors as much as Janie does, then her neighbors are in trouble. The use of figurative language helps to create a more vivid and interesting reading experience, as well as helps the reader to better understand the protagonist's journey.
Find out more about literary device
brainly.com/question/14917014
#SPJ4
HELP FAST
You see this red line appear below your text as you are typing an email. The red line indicates that you should check for:
red squiggly line
grammar errors
grammar errors
sentence structure errors
sentence structure errors
punctuation errors
punctuation errors
spelling errors
spelling errors
Answer:
spelling errors and/or punctuation errors
What are the reasons for battery problems? How can these problems be corrected?
How do we know if we can believe the things on the internet?
Answer:
you have to check for reliability
Explanation:
Answer:
you can't always believe the internet some stuff is false are bended
Explanation:
yea
Hi there! I need a bit of help on my computer's assignment. Question is below!
\(\underline{\large\text{Question}}\)
Selena would like go back to a page that she visited recently. She should use the _____.
A) links in the display window
B) scroll bar to scroll up through the pages
C) back button in the navigation bar
D) click on the back button in the display window
\(\underline{\large\text{Exceptions:}}\)
The answer must:
- Be correct.
- Be well explained
The answer must not include:
- Spams
- Incorrect answers
- Incomplete explanation
Good luck :)
Answer:
The back button of the navigation bar
Explanation:
The back and forward buttons are standard on the many web browsers. The navigation bar is the same place where you type your URLs. In this case, Selena would use the back button to go back to an active window she had previously visited. It helps you move backward in the same order you previously made your visits.
codes such as those offered by the spj, prsa, and rtnda are legally enforceable.
The codes of ethics provided by professional organizations such as the Society of Professional Journalists (SPJ), Public Relations Society of America (PRSA), and Radio Television Digital News Association (RTDNA) are not legally enforceable. These codes are voluntary guidelines that members of these organizations agree to abide by.
However, violating these codes could result in disciplinary action by the organization, including revocation of membership.The codes of ethics provided by these organizations serve as a standard for ethical conduct within their respective professions. They outline principles and best practices that aim to promote accuracy, fairness, and impartiality in journalism and public relations. These codes are intended to guide professionals in making ethical decisions and maintaining the trust of their audience and clients.While not legally enforceable, these codes may have some impact in legal proceedings. For example, if a journalist is accused of defamation, they may argue that they were abiding by the SPJ Code of Ethics in their reporting. This could potentially strengthen their defense in court.In summary, the codes of ethics provided by professional organizations such as SPJ, PRSA, and RTDNA are not legally enforceable. However, they serve as voluntary guidelines for ethical conduct and may have some influence in legal proceedings.
Learn more about codes here
https://brainly.com/question/29330362
#SPJ11
Use goal seek to calculate the changing value in cell D4 the will result in set value in cell D13 of 160 in excel
The utilization of the goal seek to calculate the changing value in cell D4 is as follows:
Click cell D13.Click the data tab on the ribbon.Click "What-if analysis" in the forecast group.Click goal seek.Click on the value text box.Type 160 and press the tab.Click cell D4. Click Ok. What is the "Goal seek" in computers?In computers, goal seek may be characterized as a type of function in Excel that allows you to adjust an input value in a formula to determine a desired outcome. This What-If Analysis tool is ideal for situations where you know the outcome you want, but aren't sure of the values needed to reach that outcome.
You can use Goal Seek to determine what interest rate you will need to secure in order to meet your loan goal. Goal Seek works only with one variable input value. If you want to accept more than one input value, for example, both the loan amount and the monthly payment amount for a loan, use the Solver add-in.
Therefore, the utilization of the goal seeks to calculate the changing value in cell D4 is well described above.
To learn more about Goal seeking in excel, refer to the link:
https://brainly.com/question/14805918
#SPJ1
Give one (1) advantage and one(1) disadvantage of using and integrated software package over a custom written one.
Answer:
See explanation
Explanation:
An Integrated software package is a kind of software package that combines various applications in just one program. It basically provides one spreadsheet, one word processing and database management. A good example is the Microsoft Office.
A custom written software package on the other hand is the type that is specially created for a particular business. It is created to meet the client's specifications and preferences.
An advantage of using integrated software is the low cost and fast deployment. Integrated software packages are relatively affordable and easy to acquire unlike that custom based ones that take time to create.
A disadvantage of the integrated software is the lack of control and flexibility. Because it is an integrated software package, you have no control over how it is built and on the long run their updates may not be what you want. And unlike the Custom written one, you cannot tell the developers to add or remove features that suit your needs.
An integrated software suite is a form of software bundle that combines multiple programs into a single application. It contains a single spreadsheet, word process, and database administration tool.
The content and quality software suite, on either hand, is specifically created for a specific firm. It is made to fulfill a client's needs and preferences.Advantage:
Its low cost and ease of deployment of integrated software. Unlike made-to-order software applications, which take time to develop, integrated software is very inexpensive & straightforward to obtain.Disadvantage:
It is the loss of oversight and flexibility therefore it is embedded system software, you have no control over how it is produced; as a result, any upgrades aren't always what you want in the long run. In addition, unlike the Manually created one, you may instruct the programmers to add or delete features that meet your requirements.Learn more about integrated software packages:
brainly.com/question/17541095
If you are planning on using a GPS to reach your destination, what else is it a good idea to have with you
Answer:
your mom
Explanation:
The background extinction rate is a speeding up because of human use of land. b the result of climate change. c much faster than speciation. d a very slow, natural process.
The background extinction rate is a very slow, natural process. It is the rate at which species naturally go extinct over time due to various factors such as competition, predation, and changes in the environment.
The background extinction rate is influenced by a combination of factors, including natural changes in the environment and interactions between species. It is important to note that human activities, such as land use changes and climate change, can significantly accelerate the rate of extinction, causing it to exceed the natural background rate. Human alteration of habitats, deforestation, pollution, and climate change have a detrimental impact on biodiversity, leading to the loss of species at an alarming rate.
While speciation, the process of new species emerging, can occur at varying rates, the background extinction rate tends to be much slower than speciation. This imbalance between extinction and speciation can lead to a decline in overall biodiversity. Conservation efforts and sustainable practices are crucial to mitigate human-induced factors and preserve Earth's rich biodiversity for future generations.
Learn more about biodiversity here
brainly.com/question/29765125
#SPJ11
Instructions Write a program which allows the user to choose from a menu as follows: 1. Find Smallest 2. Find Largest 3. Quit The program should allow the user to continue picking options until the user picks 3. Quit If the user picks option 1 or 2, they should be allowed to enter as many numbers as they want. The user will indicate they are done by entering the sentenial value -1000 If the user had chosen option 1 (Find Smallest), after they enter -1000, you should display the smallest number they entered. Be carefuls you don't say -1000 is the smallest! If the user had chosen option 2 (Find Largest), after they enter -1000, you should display the largest number they entered. Sample Output: 1. Find Smallest Number 2. Find Largest Number 3. Quit 1 Enter a number 57 Enter a number 282 Enter a number 4239 Enter a number 472 Enter a number 795 Enter a number 71 Enter a number 1 Enter a number 2 Enter a number -1000 Smallest is: 1
Here is the code that you can use in order to get your task done. The code will execute as you desire, the program will allow the user to choose from a menu as follows:
1. Find Smallest2. Find Largest3. QuitThe program should allow the user to continue picking options until the user picks 3. Quit. If the user picks option 1 or 2, they should be allowed to enter as many numbers as they want. The user will indicate they are done by entering the sentinel value -1000.
If the user had chosen option 1 (Find Smallest), after they enter -1000, you should display the smallest number they entered. Be carefuls you don't say -1000 is the smallest! If the user had chosen option 2 (Find Largest), after they enter -1000, you should display the largest number they entered.```
#include
using namespace std;
int main(){
int n, smallest, largest;
char choice;
do{
cout<<"\nMenu:\n";
cout<<"1. Find Smallest Number\n";
cout<<"2. Find Largest Number\n";
cout<<"3. Quit\n";
cout<<"Enter your choice : ";
cin>>choice;
switch(choice){
case '1':
cout<<"Enter numbers: ";
cin>>n;
smallest = largest = n;
while(cin>>n, n != -1000){
if(n < smallest)
smallest = n;
}
cout<<"Smallest is : "<>n;
smallest = largest = n;
while(cin>>n, n != -1000){
if(n > largest)
largest = n;
}
cout<<"Largest is : "<
To know more about program visit:
https://brainly.com/question/14368396
#SPJ11
A, B , C, or D? Please help
Answer:
c
Explanation:
2 volts is needed to power up a led
hope this helps. :))))
lab simulation 8-1: create a new namespace and configure branchecache dfs allows you to group shares from different servers into a single logical share called what
DFS allows users to group shares from the different servers into a single logical share called 'Namespace'.
DFS (Distributed File System) Namespaces is a role service in Windows Server that permits you to group shared folders placed on different servers into one or more logically structured namespaces. DFS Namespace makes it possible to provide users with a virtual view of shared folders, where a single path leads to files placed on multiple servers. There are no additional software or hardware requirements for using DFS Namespaces.
You can learn more about Distributed File System at
https://brainly.com/question/20228376
#SPJ4
Which of these should a company consider before implementing cloud computing technology?.
The options that a company consider before implementing cloud computing technology is is I, II, and III
I: Employee satisfaction
II: Potential cost reduction
III: Information sensitivity
What technology is used in the cloud?In order to bring about quicker innovation, adaptable resources, and scale economies, cloud computing, in its simplest form, is the supply of computing services via the Internet ("the cloud"), encompassing servers, storage, databases, networking, software, analytics, and intelligence.
Therefore, the Steps for Implementing Cloud Computing Successfully are:
Establish the objectives.Determine the current situation.Consider Things Beyond Technology.Start off cautiously.Pick Your Cloud Migration Partner Carefully.Avoid putting all your eggs in one basket.Learn more about computing technology from
https://brainly.com/question/17369247
#SPJ1
See full question below
7. Which of these should a company consider before implementing cloud computing technology. I: Employee satisfaction, II: Potential cost reduction, III: Information sensitivity
• Only I
• Only II
• Only III
• I, II, and III
Write a code in python that guesses a hardcoded answer and keeps on asking the user until the user gets the answer correct. The cmputer should be telling the user if the number they are guessing is too low or too high.
import random
#You can change the range.
answer = random.randint(1,1000)
counter = 0
while(True):
guess = int(input("Make a guess: "))
message = "Too high!" if guess>answer else "Too low!" if guess<answer else "You won!"
print(message)
if(message=="You won!"):
print("It took",counter,"times.")
break
else:
counter+=1
each time a packet is copied, a counter associated with the packet increases by one. this counter is called the .
The counter associated with a packet that increases by one each time the packet is copied is called the Time-To-Live (TTL) counter.
The TTL counter is a field in the header of an IP packet that specifies the maximum number of network hops that the packet can traverse before it is discarded. As the packet travels through the network, each router that forwards the packet decrements the TTL value by one. If the TTL reaches zero before the packet reaches its destination, the packet is discarded and an error message is sent back to the sender.
By limiting the number of hops that a packet can take, the TTL field helps prevent packets from circulating indefinitely in the network and consuming resources. The TTL counter also serves as a basic mechanism for congestion control, as it encourages packets to take the shortest path to their destination and avoid congested or slow-moving network segments.
You can learn more about packet at
https://brainly.com/question/29484548
#SPJ11
Select all of the registers listed below that are changed during EVALUATE ADDRESS step of an LC-3 LDR instruction. Select NONE if none of the listed registered are changed.
PC
NONE
MDR
DST register
MAR
IR
PC and MAR are the registers changed during the EVALUATE ADDRESS step of an LC-3 LDR instruction.
What is a register?A register is a small amount of fast memory used by a computer processor to store data that it needs to access quickly during its operation. It is used to temporarily store instructions, data, and addresses.
In the EVALUATE ADDRESS step of an LC-3 LDR instruction, the PC (Program Counter) is updated to the address of the next instruction to be executed. The MAR (Memory Address Register) is then loaded with the effective memory address of the operand being fetched by the LDR instruction.
Learn more about register on:
https://brainly.com/question/13014266
#SPJ1
Who helped washington write his famous farewell address?.
Washington's famous farewell address was written by him alone. He had some input from James Madison and Alexander Hamilton, but ultimately it was Washington who crafted the final version.
While Washington received input and advice from various individuals, including James Madison and Alexander Hamilton, the final version of his famous farewell address was written by Washington alone. In fact, it is believed that Washington was the primary author of the address and relied heavily on his own experiences and insights gained over his lifetime. The farewell address was an important moment in American history, as it laid out Washington's vision for the future of the United States and warned against the dangers of partisanship and sectionalism.
Ultimately, Washington wrote his famous farewell address without the help of a co-author. While he received input from others, he relied on his own experiences and insights to craft a message that would resonate with future generations of Americans. His address remains an important piece of American history, and its lessons continue to be relevant today.
To know more about farewell visit:
https://brainly.com/question/8057514
#SPJ11
What is the second step of the A+ troubleshooting methodology?A. Identify the problemB. Establish a probable causeC. Test the theoryD. Document
The second step of the A+ troubleshooting methodology is Establish a probable cause.
So, the correct answer is B.
Understanding the step of Establish a probable causeThis step involves narrowing down the possible issues based on the information gathered during the first step, which is Identify the problem.
The second step of the A+ troubleshooting methodology is to establish a probable cause. Once the problem has been identified, the technician must then determine what is causing the problem.
This involves examining the symptoms and gathering information to determine the most likely cause. The technician may use various tools and techniques to help with this process, such as diagnostic software, hardware tests, or examining system logs.
Once a probable cause has been established, the technician can then move on to the next step of testing the theory by implementing a solution and observing the results.
It is important to document the entire troubleshooting process, including the steps taken, the results observed, and any solutions implemented. This documentation can be used for future reference and can help other technicians who may encounter similar problems. Hence, the answer of this question is B. Establish a probable cause.
Learn more about troubleshooting at
https://brainly.com/question/29736842
#SPJ11
HELPPPPP !!!!!!!!!!!
Answer:
Computers are developed along two separate engineering paths, producing two different types of computers.
An analog computer operates on continuosly varying data.
A digital computer operates on descrete data.
Data sorting refers to the arrangement of the data records in the ascending or descending order on the basis of numeric of alphabetic fields.
Answer:
hope this will help you friend.