Answer:
you will need a cpu(core processor unit), Motherboard,RAM(Random access memory), CPU Cooler, GPU(Graphics processor unit or Graphics card), PSU(Power supply unit or power supply), your gonna need storage so either ssd or hdd, and most important of all is a case and case fans, plus if you are going to have a whole setup your gonna need preipherals, so keyboard,mouse, headset, mic, mouse pad, desk, monitors,etc.
Hope this helps
tightly.
SEQUENCING
4. Directions: Arrange the following statement in chronological order. Write letters AG on the
provided
1. Straighten the wire by pinching it using your fingers. Arrange it by color order to get
2. Test the cable before installing them.
3. Once the color order is correct, group the wire in a line.
4. Using a crimping tool, cut the cable shielding about 1 inch from both ends.
5. After the wires are placed inside the plug, place the connector into the crimper and pus
on the handles tightly.
6. Unfold the wire.
7. Push all the unstripped colored wires into the connector. Hold it with the clip side faci
from you.
Answer:
AG 6.
AG 1.
AG 3.
AG 4.
AG 7.
AG 5.
AG 2.
Explanation:
Chronology can be defined as an arrangement of data, items or documents in the order in which they occurred or happened (in time), from the earliest to the most recent or latest.
Simply stated, ordered events are organized in order of time and this process is known as chronology.
Generally, a chronology can be used as a filing process in various areas such as schools, hospitals, hotels, and business firms to help put data (informations) in order by time or date.
In Computer networking, a cable can be defined as a wired connector used for connecting and transmitting signals between two or more network devices such as CAT-5, CAT-6 and fiber optic cables. These cables which are either twisted or untwisted pair are to be crimped in order to make them eligible and appropriate for use in connecting network devices.
Furthermore, there are two (2) color codes used for the arrangement of the wires in a network cable based on the type of network connection;
I. For straight-through, host device to a router or switch;
Color code: white-orange, orange, white-green, blue, white-blue, green, white-brown, brown.
II. For cross-over, network device to a network device e.g router or router;
white-green, green, white-orange, blue, white-blue, orange,
You are given an array of integers, each with an unknown number of digits. You are also told the total number of digits of all the integers in the array is n. Provide an algorithm that will sort the array in O(n) time no matter how the digits are distributed among the elements in the array. (e.g. there might be one element with n digits, or n/2 elements with 2 digits, or the elements might be of all different lengths, etc. Be sure to justify in detail the run time of your algorithm.
Answer:
Explanation:
Since all of the items in the array would be integers sorting them would not be a problem regardless of the difference in integers. O(n) time would be impossible unless the array is already sorted, otherwise, the best runtime we can hope for would be such a method like the one below with a runtime of O(n^2)
static void sortingMethod(int arr[], int n)
{
int x, y, temp;
boolean swapped;
for (x = 0; x < n - 1; x++)
{
swapped = false;
for (y = 0; y < n - x - 1; y++)
{
if (arr[y] > arr[y + 1])
{
temp = arr[y];
arr[y] = arr[y + 1];
arr[y + 1] = temp;
swapped = true;
}
}
if (swapped == false)
break;
}
}
Create a C++ program that will solve the satisfy the following criteria:
Accept a number from the user and print all prime numbers from 1 to that number.
Answer:
#include <iostream>
using namespace std;
int main()
{
int x;
cout << "Please type your number:" << endl;
cin >> x;
int e = 1;
int i;
while(e < x+1){
bool isPrime = true;
// 0 and 1 are not prime numbers
if (e == 0 || e == 1) {
isPrime = false;
}
else {
for (i = 2; i <= e / 2; ++i) {
if (e % i == 0) {
isPrime = false;
break;
}
}
}
if (isPrime){
cout << e << endl;
}
else{
}
e++;
}
return 0;
}
What feature would you use to enhance a text box? Shape Styles, Adjust slide layout, Insert new format, or Add-ons?
Answer:
I believe add-ons are used for that
Explanation:
some context free languages are undecidable
You are working with a database table that contains invoice data. The table includes columns for billing state, billing_country, and total. You want to know the average total price for the invoices billed to the state of Wisconsin. You decide to use the AVG function to find the average total, and use the AS command to store the result in a new column called average_total. Add a statement to your SQL query that calculates the average total and stores it in a new column as average_total. NOTE: The three dots (...) indicate where to add the statement. 1 2 SELECT billing state, billing_country, 3 4 5 6 FROM invoice WHERE billing_state 7 Run 8 "WI" Reset What is the average total for Wisconsin?
Using the as command, you decide to create a new column called average total and use the avg function to determine the average total.
Fourth is the average of the invoice totals for each vendor, represented as VendorAvg, followed by the sum of the invoice totals for each vendor, represented as VendorTotal, VendorCount, and VendorCount. We use VendorID in the query since the result set needs to contain each vendor's unique invoices. You are utilizing a database table that holds information about invoices. The table has columns for total, billing state, and billing country. You're interested in learning the average total cost of the bills paid.
Learn more about command here-
https://brainly.com/question/3632568
#SPJ4
Why the following code is giving error NAME="REHMAAN" PRINT ("hello') PRINT ("HI")
Answer:
corrected code:
NAME="REHMAAN"
print ("hello")
print ("HI")
Explanation:
In python, put every statement on its own line. Even indentation matters.PRINT should be in lowercase, i.e., printThe string quotes should be both " or both ', but not a mix like in "hello'A ___________ consists of a large number of network servers used for the storage, processing, management, distribution, and archiving of data, systems, web traffic, services, and enterprise applications.
Answer:
Data center
Explanation:
A network service provider can be defined as a business firm or company that is saddled with the responsibility of leasing or selling bandwidth, internet services, infrastructure such as cable lines to both large and small internet service providers.
Generally, all network service providers, internet service providers and most business organizations have a dedicated building or space which comprises of a large number of computer systems, security devices, network servers, switches, routers, storage systems, firewalls, and other network associated devices (components) typically used for remote storage, processing, management, distribution, and archiving of large amount of data, systems, web traffic, services, and enterprise applications.
Furthermore, there are four (4) main types of data center and these includes;
I. Managed services data centers.
II. Cloud data centers.
III. Colocation data centers.
IV. Enterprise data centers.
Select the correct answer. Which symbol denotes markup tags? A. {} B. < >. C. ( ) OD. []
Answer:
B
Explanation:
Select the guidelines you should follow when creating a memo.
A. Single space the paragraphs in the memo.
B. Send copies to anyone who is affected by the memo.
C. Write very long sentences.
D. Get to the point at the beginning of the memo.
E. Keep the paragraph lengths short.
F. Do not send copies to people who were mentioned in the memo.
Please help me. 30 points!
Select the guidelines you should follow when creating a memo.
A. Single space the paragraphs in the memo.D. Get to the point at the beginning of the memo.E. Keep the paragraph lengths short.When creating a memo, you should start it by keeping your opinion that seems strong So, get to the point at the beginning of the memo. Single space the paragraphs because it makes it look tidy but too much space gives the reader a thought that it's too empty. Keep the paragraph lengths short, this is an art. Everyone cannot do it, keeping your point with a short paragraph is not easy. Short paragraphs keeps the reader interested in the memo. Too long paragraphs are boring...~
Answer:
Hello there, the answer is A,D,E
Explanation:
write a description of the set containing the elements sunday, monday, tuesday, wednesday, thursday, friday, and saturday.
A set's elements or members are the things that make up the set. The components of a set are often denoted by commas and written inside a pair of curly (idle) braces. The set's name is always printed in capital letters. Here, "A" refers to the set whose members are the letters v, w, x, y, and z.
What is meant by elements?The term "technological element" refers to any specific biological material, data, method, protocol, procedure, or process that was used in or incorporated into a product as a result of the university's performance of the research project and that can be distinguished from other biological material, data, methods, or protocols of the same kind. An element is a particular component inside a broader group. For instance, in computer programming, a variety of elements (indexed) may be present in an array and may each be saved and used separately. Many rising and green technologies, including renewable energy, energy security, energy storage, electronics, urban development, and agriculture, depend on technology critical elements (TCEs), including rare earth elements, platinum group elements, and other comparatively scarce metals.To learn more about elements. refer to:
https://brainly.com/question/24121804
#SPJ4
The things that make up a set are known as its members or elements. Commas and a pair of curly (idle) braces are typically used to denote the parts of a set.
Capital letters are always used to spell the set's name. The set whose members are the letters v, w, x, y, and z is referred to as "A" in this instance.
What is meant by elements?Any specific biological material, data, method, protocol, procedure, or process that was used in or incorporated into a product as a result of the university's performance of the research project and that can be distinguished from other biological material, data, methods, or protocols of the same kind is referred to as a "technological element."
A particular component within a larger group is an element. In computer programming, for instance, an array may contain a number of indexed elements, each of which can be saved and utilized independently.
Technology critical elements (TCEs), such as rare earth elements, platinum group elements, and other relatively scarce metals, are necessary for many emerging green technologies, such as electronics, renewable energy, energy security, and energy storage.
To learn more about elements:
brainly.com/question/24121804
#SPJ4
Which tag is used to create number list?
<ol> tag is used to create number list
Where does an antivirus run suspicious applications?
Antivirus software runs suspicious applications in a ________ and checks for malicious activity.
Answer:
Antivirus programs use heuristics, by running susceptible programs or applications with suspicious code on it, within a runtime virtual environment. This keeps the vulnerable code from infecting the real world environment. Behavioural-based detection - This type of detection is used in Intrusion Detection mechanism.
1 Discuss on Decision Statements with program
2. Discuss on Repetition Statements with program
The programmer can structure programming statements to be repeated as long as certain conditions are met, which helps them to use variables more effectively.
What do programming decision statements do?
A computer program's decision structure is a feature that enables the program to decide and alter its behavior in response to that choice. The choice is determined in light of the results of a logical test. A calculation that has a true-false outcome is referred to as a logical test.
Decision statements in C: What are they?If the conditions we have are true, a collection of available statements will be executed in the case of decision control statements in C language (nested if and if-else). When these possible conditions are false, the statements in the otherwise part won't be executed.
To know more about Decision Statements visit:-
https://brainly.com/question/13631418
#SPJ1
A LinkedIn profile is required to be able to share your work experience and qualifications with potential employers.
True
False
Answer:
False
Explanation:
A LinkedIn profile is not required.
The Internet of Things refers to devices that are able to talk to each other. Group of answer choices False True
In which of the following situations must you stop for a school bus with flashing red lights?
None of the choices are correct.
on a highway that is divided into two separate roadways if you are on the SAME roadway as the school bus
you never have to stop for a school bus as long as you slow down and proceed with caution until you have completely passed it
on a highway that is divided into two separate roadways if you are on the OPPOSITE roadway as the school bus
The correct answer is:
on a highway that is divided into two separate roadways if you are on the OPPOSITE roadway as the school busWhat happens when a school bus is flashing red lightsWhen a school bus has its flashing red lights activated and the stop sign extended, it is indicating that students are either boarding or exiting the bus. In most jurisdictions, drivers are required to stop when they are on the opposite side of a divided highway from the school bus. This is to ensure the safety of the students crossing the road.
It is crucial to follow the specific laws and regulations of your local jurisdiction regarding school bus safety, as they may vary.
Learn more about school bus at
https://brainly.com/question/30615345
#SPJ1
* Describe the five components of a
computer
Answer:screen, keyboard, cpu, mouse, processor, mother board, power box. Ports
Explanation:
Suppose you present a project and your supervisor comments that the graphics need to be a higher quality and suggests you replace a circuit board. To what circuit board is your supervisor referring?
graphics card
video card
sound card
system card
Answer:graphics card
Explanation:
Answer:
graphics card
Explanation:
Shandra recently bought a brand-new digital camera from a local camera shop but when she got it home, she noticed the lens was jammed. What would be an effective way for her to handle this situation?
3. which of the following tasks can data analysts do using both spreedsheets and SQL? Select all that apply -process huge amounts of data efficiently, use formulas, join data, perform arithmetic
The tasks that can data analysts do using both spreadsheets and SQL Are options B, C and D:
Use formulasJoin dataPerform arithmeticDo data scientists employ algebra?In data analytics, algebra from a college level is widely used. Since most algorithms employ it, linear algebra is very important for any professional who wants to work with machine learning and/or AI.
Data analysts are in charge of acquiring data from primary and secondary sources, installing and maintaining databases, and discovering, evaluating, and interpreting trends from the data. They also analyze data using statistical techniques.
Therefore, While data analysts must be adept with numbers and can benefit from having a basic understanding of math and statistics, much of data analysis simply involves following a series of logical procedures. People don't need to have a lot of mathematical expertise to excel in this field.
Learn more about data analysts from
https://brainly.com/question/23810306
#SPJ1
Which of the following terms describes an attacker walking or driving through business areas and neighborhoods to identify unprotected wireless networks from the street using a laptop or a handheld computer?
A. Wi-Fi stealing.
B. Wi-Fi trolling.
C. Wi-Fi jacking.
D. Wi-Fi hacking.
Answer:
C. Wi-Fi jacking
Explanation:
Answer: yessir b
Explanation:
Evaluate the expression using stack 14-(6-10)-10
Answer:
14 -(6-10)-10
14-(-4)-10
18-10
= 8
Question 11 (2.5 points)
A start-up company has hired you to implement an email strategy for its organization.
The company wants all of its employees to have an enterprise-level email client and
is considering Windows Live Essentials. They ask you if there are any limitations
about this email solution. Which of the following is a major limitation?
Answer:
the dot
Explanation:
the dot is a good day forecast for a bit
If columns are labelled alphabetically, what will be the label for the cell in row 1, column 16,384?
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
Hope this helps!
I need help with this
Implicit Cost is that the rental income Dmitri could receive if he chose to rent out his showroom.
Explicit Costs are that he wholesale cost for the drones that Dmitri pays the manufacturer and the wages that Dmitri pays to his employees
What is implicit cost?Implicit costs are the opportunity costs associated with the use of resources in a particular activity. They represent the potential benefits or income that could be obtained from an alternative use of those resources.
Explicit costs, on the other hand, are tangible, out-of-pocket expenses that are incurred in the process of running a business. They involve actual cash outflows or payments made to various parties.
The wholesale cost for the drones that Dmitri pays the manufacturer is an explicit cost because it involves an actual payment made to the manufacturer in exchange for the drones.
Learn more about implicit cost on
https://brainly.com/question/7824689
#SPJ1
how can we achieve an effective communication with other people
Use Python to: Combine the lists x, y, and z into one multi-dimensional array. Print the multi-dimensional array. Use the values within the multi-dimensional array to print this message:
THE SECRET LIES WITHIN.
#code start
x = ["N", "O", "H", "S"]
y = ["I", "R", "L", "T"]
z = ["C", "A", "W", "E"]
# Add code here.
( Note: a correct answer is needed as soon as possible. The due date is tomorrow )
Answer: ok I got tmdirn
Explanation:
Which of the following class definition defines a legal abstract class Group of answer choices public class Rectangle abstract { public abstract double findArea ( ); } public abstract class Rectangle { public abstract double findArea ( ); } public class Rectangle { public abstract double findArea ( ); } public class abstract Rectangle { public abstract double findArea ( ); }
Which of the following class definition defines a legal abstract class Group of answer choices
(a)
public class Rectangle abstract {
public abstract double findArea ( );
}
(b)
public abstract class Rectangle {
public abstract double findArea ( );
}
(c)
public class Rectangle {
public abstract double findArea ( );
}
(d)
public class abstract Rectangle {
public abstract double findArea ( );
}
Answer:
(b)
public abstract class Rectangle {
public abstract double findArea ( );
}
Explanation:When a class is declared with the abstract keyword, the class is called an abstract class. Abstract classes cannot be instantiated and may include one or more abstract methods. If a class contains an abstract method, then it (the class) must be declared abstract.
In Java, abstract classes are defined using the following format:
[access_modifier] abstract class [name_of_class]
[access_modifier] specifies the access modifier of the class which could be public, private, e.t.c
abstract is the keyword that specifies that the class is an abstract class.
class is a keyword used for defining classes
name_of_class specifies the name of the class.
The only option that fulfils this format is option b where;
(i) The access modifier is public
(ii) The name of the class is Rectangle
Option a is not correct because the abstract keyword is supposed to come before the class keyword.
Option c is not correct because the keyword abstract is missing. In other words, the class must be declared abstract since it contains abstract method findArea();
Option d is not correct because the abstract keyword is supposed to come before the class keyword.
what is a computer ?
Answer:
A computer is a machine that can be instructed to carry out sequences of arithmetic or logical operations automatically via computer programming. Modern computers have the ability to follow generalized sets of operations, called programs. These programs enable computers to perform an extremely wide range of tasks.
Explanation: