Answer:
crt (cathode ray tube) vcr (video cassette recorder)
Explanation:
The TCP\IP protocol was invented by who
Answer:
The TCP protocol was invented by Bob Kahn, Ray Tomlinson and Vint Cerf.
Explanation:
Answer:
Vint Cerf ,Bob Kahn and Ray Tomlinson
You are advising the owner of Smalltown Computer, a new, local computer repair store that also builds custom computers to order. What competitive strategies could Smalltown Computer exert? Which ones will it have difficulty exercising?
Answer:
speech processing is the study of speech signals and processing access signal the signals are used process in a digital representation suspicious processing can be recognised as a special case of digital signal processing light to speed signal
I want a loyal girlfri,end
Answer:
go to dating app
Explanation:
differentiate between soft copy output and hard copy output?
a hard copy stores data and information in the form of physical files it may be images text photographs and more a soft copy data and information in the form of virtual file saved on a computer or a drive you can preserve a hard copy for two long because its day subjected to wear and tear
Answer:
Soft copy output -when the output is in the form of soft copy ( I.e I'm the computer) you cannot touch it. it's the digital version.
Hard copy output -when output is in the form of hard format (.ie paper, print , xerox etc) you can touch it.
Why do you guys the internet who are planning to be Information technology technician?
Answer:
The biggest advantage of choosing information technology for a career is that it has a very low cost of education as compared to many other career choices. You don't need a 4-year degree to become an I.T. professional. Instead, you can get quick training to be certified in specific areas of Information Technology.
What is an example of something that can be done through Personal Automation?
Answer:
For example, at an insurance company, an underwriter could use a personal automation to extract data from third-party systems to assess risk. A relationship manager at an insurance company can set up a personal automation to validate and reconcile data in a customer relationship management (CRM) system.
A date for creation or revision
is mandatory for all web pages?
Answer:
I do believe so
Explanation:
Most websites have this, as far as I know
2. Which one of the following is the purpose of relating tables in a database?
A. To permit external data only to be viewed.
B. To allow data to be sorted before printing to a report.
C. To enable mathematical calculations to be carried out more efficiently.
D. To avoid duplication of data.
Answer:
D. To avoid duplication of data.
Which frequency will 802.11n work on if on a single-link network?
802.11n can function in "mixed mode" on the 2.4 GHz frequency, with a theoretical maximum speed of 300 Mbps, or on the 5 GHz frequency.
What do you mean by frequency?
In the case of electrical current, frequency is the number of times a sine wave repeats or completes, a positive-to-negative cycle.
802.11n can operate in "mixed mode" on the 2.4 GHz frequency, which will support just 802.11b or 802.11g-capable systems but will slow the entire network down to the maximum speed of the earliest standard connected, at a theoretical maximum speed of 300 Mbps.
Learn more about the single-link network:
https://brainly.com/question/4272298
#SPJ1
You are a Junior IT Technician in your organisation. One of the duties is to demonstrate and explain how the computer works to new intern stuff. Discuss how you would demonstrate and explain?
As an Junior IT technician in your company. One of the responsibilities is to set up and Install computer structures for the new intern staff members in order to display and explain how the computer functions to them.
How will you address one or more technical areas?
Depending on the dimensions of the employer you account for, the answer varies. It's not uncommon for a technical IT support team to be split into first- and second-line support, with the second-line support team taking care of the more specialist inquiries that the first-line support team couldn't handle.
I'll explain how to set up and configure computer systems, identify hardware and software issues, and resolve technical and awareness issues, either over the phone or in person, in my capacity as an IT technician.
Learn more about organisations here:
https://brainly.com/question/26965722
#SPJ10
what keys would you use when selecting multiple files not listed together
To select multiple files that are not listed together is first arrange them in order by date or their names, so that they get listed together, then press CTRL A to select all and copy them into a separate file.
What is selecting multiple files?Selecting multiple files is choosing many files together at once. Many times we select multiple files at once, that save our time.
Thus, to select multiple files that are not listed together is first arrange them in order by date or their names, so that they get listed together, then press CTRL A to select all and copy them into a separate file.
Learn more about selecting files in computer
https://brainly.com/question/10894626
#SPJ1
who stronger than the rock or jhon cena
a the rock
b jhon cena
the rock because he is strong, I don't know
Answer: John Cena
Explanation:
John Cena is stronger than the rock
Which of the following best describes a hotspot as
used in the Action feature of PowerPoint?
an image containing visible hyperlinks
O an invisible hyperlink embedded in a slide
O
a feature that converts presentations to
documents
a feature that allows you to present a slide to
people located remotely
A statement which best describes a hotspot as used in the Action feature of PowerPoint is: B. an invisible hyperlink embedded in a slide.
What is a hotspot?A hotspot can be defined as a visual effect that can be applied in Microsoft PowerPoint to content on a slide, so as to make elements (objects) interactive with the end users.
This ultimately implies that, an invisible hyperlink embedded in a slide is a statement which best describes a hotspot as used in the Action feature of PowerPoint.
Read more on PowerPoint here: https://brainly.com/question/26404012
#SPJ1
Answer:
It's B
Explanation:
i got it right on edg 2023
Make a String ArrayList.Then write a Java method that swaps the first and last elements.
Answer:In order to swap elements of ArrayList with Java collections, we need to use the Collections.swap() method. It swaps the elements at the specified positions in the list.
Declaration −The java.util.Collections.swap() method is declared as follows
public static void swap(List <?> list, int i, int j)
where i is the index of the first element to be swapped, j is the index of the other element to be swapped and list is the list where the swapping takes place.
Explanation:
import java.util.*;
public class Example {
public static void main (String[] args) {
ArrayList<Integer> list = new ArrayList<Integer>();
list.add(10);//0
list.add(20);//1
list.add(30);//2
list.add(40);//3
list.add(50);//4
System.out.println("Original list : " + list);
Collections.swap(list, 4, 0); // swapping element at index 3 i.e. 50 and index 1 i.e. 10
System.out.println("List after swapping : " + list);
}
}