Answer:
I will use a riser card to install the card parallel to the motherboard.
Explanation:
If you attempted to install a GPU like this and it stands tall, then this means that you do not have enough room for the card. Instead of purchasing a new case that will allow the GPU to seat comfortably, you can buy a riser card. A riser card seats at a right angular position and is built to extend a motherboard slot. I expect a motherboard that supports an EVGA GeForce GTX 1080 graphics card to support a riser card because not all boards support a riser card. Once it is installed, the card will rest on the motherboard and will rotate the GPU to seat parallel with the motherboard.
THE BEST Answer:
b) Use a riser card to install the card parallel to the motherboard.
Second Answer:
a) Use a different case that allows for the height of the expansion card.
B. Is the Easiest and best way!
Crystal inc. is a multifaceted company that deals with the mining, cutting, and selling of diamonds. It gives distributors and suppliers access to its database to place orders or restock inventories electronically and automatically. Which of the following is the network implemented in the company?A) intranetB) chaosnetC) extranetD) ethernet
Answer:C)Extranet
Explanation: Extranet is the network on private basis for sharing of the organizational information with the vendors, employees, customers,suppliers etc. It uses the internet service for the distribution of the data outside of the company in extended form.Electronic data interchange is used for exchanging of large amount of information.
Other options are incorrect because intranet is the internet service which works within enterprise, chaosnet is protocol for transmission of data in full duplex form and ethernet is the communication with the help of protocol in traditional manner.
In a particular jurisdiction, taxi fares consist of a base fare of $4.00, plus $0.25 for every 140 meters traveled. Write a function that takes the distance traveled (in kilometers) as its only parameter and returns the total fare as its only result. Write a main program that demonstrates the function.
Answer:
// here is code in java.
import java.util.*;
// class definition
class Main
{
// method that return total fare
public static double fare(double dis)
{
// calculate the total fare
double tot_fare=(4+((dis*1000)/140)*0.25);
return the fare
return tot_fare;
}
//driver method
public static void main (String[] args) throws java.lang.Exception
{
try{
// scanner object to read input string
Scanner s=new Scanner(System.in);
// variable
double dis;
System.out.print("please enter the distance in KM: ");
//read the number
dis=s.nextDouble();
// call the function with "dis" parameter
double ride_fare=fare(dis);
// print the total fare
System.out.println("total fare is: "+ride_fare);
}catch(Exception ex){
return;}
}
}
Explanation:
Read the distance from user with the help of scanner class.Call the function with parameter "dis".Here it will calculate the total fare as (4+((dis*1000)/140)*0.25). Here base fare is $4 and $0.25 for every 140 meter.Then function will return the total fare.
Output:
please enter the distance in KM: 7
total fare is: 16.5
Given the integer variables x, y, and z, write a fragment of code that assigns the smallest of x, y, and z to another integer variable min.Assume that all the variables have already been declared and that x, y, and z have been assigned values).
Final answer:
To find the smallest value among three integers x, y, and z and assign it to another variable min, one can use a series of if-else statements to compare these variables and assign the smallest one to min.
Explanation:
The question involves writing a fragment of code that assigns the smallest value among three integer variables x, y, and z to another integer variable named min. This is a basic programming task commonly encountered in high school computer science courses.
To accomplish this task, one way is to use conditional statements (if-else statements) to compare the values of x, y, and z and then assign the smallest value to min. Below is an example of how this could be implemented in a typical programming language:
if (x < y && x < z) {
min = x;
} else if (y < z) {
min = y;
} else {
min = z;
}
This code snippet first checks if x is smaller than both y and z. If this condition is true, x is the smallest number, and its value is assigned to min. If x is not the smallest, it then checks if y is smaller than z. If y is smaller, its value is assigned to min. If neither x nor y are the smallest, then z must be the smallest, and its value is assigned to min.
If an application written for an earlier version of Windows doesn't run correctly the operating system can emulate its own older version to allow a given program to work with newer hardware or software. The compatibility mode settings in Windows can be changed by: ______________.
a) Right-clicking the program icon and choosing "Restore previous versions" option from the menu
b) Right-clicking the program icon, clicking Properties, and then applying the required settings on the Compatibility tab
c) Right-clicking the program icon and selecting "Run program using recommended compatibility settings" option from the pop-up menu
d) Right-clicking the program icon and selecting "Run as administrator" option from the pop-up menu
Answer:
The answer is b) Right-clicking the program icon, clicking Properties, and then applying the required settings on the Compatibility tab.
Explanation:
If you have to run an application on a specific operating system, you have to configure the compatibility by accessing in its Properties, then Compatibility tab, and configure the operating system properly.
Due to advances in high speed communication networks, the information lag, or the time it takes for information to be disseminated around the world, has been significantly shortened. True or False?
Answer:
True
Explanation:
Latency is a more proper term to describe de the time it takes for a client to send a request and recieve a response form the server. When the latency is too high when playing games online, the user will experience delays and even the game will freeze in the worst cases. This delay on online gaming is what we called lag and can be reduced thanks to the advances in communication networks. Higher bandwitdths are now possible due to network technologies like optical fiber and the implementation of 5G mobile network will also boost data speed for mobile games. It is also true there are other ways to reduice lag that does not require a change to a faster network; sometimes a better use of the network connection is good enough, but it is totally right that faster communication network have reduced information lag and allow users to have access to games than decades ago would have been imposible to play due to network limitations.
Explain what the World Wide Web is, including several tasks that can be accomplished online. Include definitions of the following terms in your response: webpage, downloading, website, and web server.
Final answer:
The World Wide Web is a system of interconnected documents and resources accessed through the Internet. It includes webpages, downloading, websites, and web servers. Webpages are single documents on the web, downloading is transferring files, websites are collections of webpages, and web servers store and deliver website files.
Explanation:
The World Wide Web (WWW) is a system of interconnected documents and resources accessed through the Internet. It allows users to navigate between webpages and perform various tasks online. A webpage is a single document on the web that can contain text, images, videos, and other multimedia elements. When you download something, you are transferring a file from a remote server to your local device. A website is a collection of webpages that are related to each other and hosted on a web server. A web server is a computer that stores the files and data associated with a website and delivers them to users upon request.
What kind of programming language allows you to use a vocabulary of reasonable terms such as "read," "write," or "add" instead of the sequence of on/off switches that perform these tasks?
Answer:
High level programming language
Explanation:
There are two groups of programming software:
1. High level programing: Here you can program using almost natural languaje and making complex instructions on a simpler way. The advantages is faster programming and the ability to do complex programs. In this example we can use languages like C/C++, visualbasic.
2. Low level programming: This type of programing is near to machine language (binary - '0' and '1'), and usually is used to obtain full performance of the processor. But requires a high level of expertise from the programmer and is complex to write simple task, like "store a variable". Example: Assembler languague.
Assuming that a program has the following string object definition, which statement correctly assigns the string literal "Jane" to the string object?
string name;
name = "Jane";
string name = {Jane};
name = 'Jane';
name = Jane;
Answer:
name="Jane";
Explanation:
In C++ assigning a value to a string object takes the following syntax:
String variable declaration prior to the assignment using:
string <variable-name>;
String variable assignment:
<variable-name> = "<variable-value>";
As per the question, the variable-name is 'name' and variable-value is 'Jane'. So the required assignment has the format:
string name;
name="Jane";
Jennifer, a customer, informs you that unexpected icons are appearing on her system's desktop. You identify the symptoms of the malware infection. Which of the following procedures will you perform next?A. Quarantine infected system
B. Schedule scans and run updates
C. Report the issue to the information security officer
D. Disable System Restore (in Windows)
E. Educate end user
Answer:
B. Schedule scans and run updates.
Explanation:
With a malware infection you have to scan the computer with an antivirus immediately. Then, you run possible updates to get the system stronger.
From which type of data storage does the CPU load information for processing during normal operation?
hard drive
RAM
SSD
ROM
Answer:
RAM
Explanation:
Computers use two kinds of storage: The primary and secondary storage. The CPU interacts with main memory, or the primary storage, or the RAM, by referring to it for instructions and data. Every time we load or open something on our computers, it is placed in RAM so that the CPU can access that temporary stored information more easily. It requests data or instructions from RAM, process it and then writes some new data back to the RAM in a continuous complete cycle.
"The binary pattern 01000001 represents the number 65." Write a brief response explaining whether you believe this statement is always true. Explain your reasoning.
Answer:
Yes
Explanation:
Yes this statement is always true.
Starting from right the first digit represents 1 and second digit represents 2 and so forth.
Starting from right the sequence becomes
1,2,4,8,16,32,62,128 for 8 binary digits
If 1 is written then we count it else for 0 we don't count it
for example 01 means 1 and 10 means 2 and 11 means 3 as 2+1=3
for 01000001 only place that is filled is for 1 and 64 therefore complete decimal digit shall be 64+1=65 and it would always remain same.
In subscript of 2 we can write [tex]2^{n}[/tex], where n=0,1,2,3,4,...
For first digit from right [tex]2^{n}[/tex] will be [tex]2^{0}[/tex] which is 1. For second digit from right [tex]2^{1}[/tex] which will be 2 so on and so forth.
For this question we have [tex]2^{0}[/tex] and [tex]2^{6}[/tex] which will be 1+64=65
Binary patterns are numbers in base 2, and they are called binary numbers.
The statement that the binary pattern 01000001 represents number 65 is true
The binary number is given as:
[tex]\mathbf{01000001_2}[/tex]
Convert the number to base 10, as follows:
[tex]\mathbf{01000001_2 = 0 \times 2^7 + 1 \times 2^6 + 0 + \times 2^5 + 0 \times 2^4 + 0 \times 2^3 + 0 \times 2^2 + 0 \times 2^1 + 1 \times 2^0}[/tex]
Evaluate the exponents
[tex]\mathbf{01000001_2 = 0 \times 128 + 1 \times 64 + 0 + \times 32 + 0 \times 16 + 0 \times 8+ 0 \times 4 + 0 \times 2 + 1 \times 1}[/tex]
Evaluate all products
[tex]\mathbf{01000001_2 = 0 + 64 + 0 + 0+ 0 + 0 + 0 + 0 + 1}[/tex]
Add all numbers
[tex]\mathbf{01000001_2 = 65}[/tex]
Rewrite as:
[tex]\mathbf{01000001_2 = 65_{10}}[/tex]
Hence, the statement is true
Read more about binary numbers at:
https://brainly.com/question/2599721
An operating system __________ is much like a variable in a Python script, except that an environmental variable is stored by the computer's operating system and can be accessed by every program running on the computer.
Answer:
Environmental Variable.
Explanation:
The environmental variable of operating system is like a variable in python script.There is one difference that is environmental variable is stored by the operating system of the computer and every running program on the computer can access it.The user can set the value of PYTHONPATH permanently through the control panel in windows or by using the terminal.
An operating system environment variable is a variable stored by the operating system and accessible by all programs. Shell variables, on the other hand, are specific to the shell and not accessible by other programs. They help control various aspects of the command-line environment.
An operating system environment variable is much like a variable in a Python script, except that an environmental variable is stored by the computer's operating system and can be accessed by every program running on the computer.
These variables store information about your login session and control many aspects of the command-line environment. For example, the variable $USER commonly holds the username of the logged-in user.There are also shell variables, which are similar to environment variables but are used only by the shell and conventionally have lowercase names. Unlike environment variables, they are set within the shell using commands like declare instead of export. Understanding these distinctions is crucial for proper configuration and troubleshooting in command-line interfaces.Write a program that asks the user to enter a number of seconds and then printsthe same amount of time in days, hours, minutes, and seconds.For example, 3667 seconds is equivalent to 0 days, 1 hour, 1 minute, and 7 seconds.Print out the result in the format:"0 day(s), 1 hour(s), 1 minute(s), and 7 second(s)."
Answer:3363 seconds
Explanation:3363 is equivalent to 0days 1 hour, 1 min, and 7 sec
Jason is the local network administrator who has been tasked with securing the network from possible DoS attacks. Within the last few weeks, some traffic logs appear to have internal clients making requests from outside the internal LAN. Based on the traffic Jason has been seeing, what action should he take?
Answer: Implementing ingress filtering.
Explanation: Ingress filtering is the method that is deployed for checking whether the data packets arriving at the destination are actually coming from the claimed source or not.They helps in the prevention of the unwanted traffic in the network paths.
This techniques is used by internet service providers, enterprises and other organization for the protection from malicious traffic. This mechanism can also behave as the packet filtering device.Thus,Jason should use ingress filtering for maintaining security of the local network from any attack.
In an LAN domain, _______________ is similar to a hub but can filter traffic, a ______________ connects LANs, or a LAN and a WAN, and a ______________ is a software or hardware device that filters traffic in and out of a LAN.
Answer: Switch, router, firewall
Explanation:
The function of the switch is to distribute the network to different networks similar in functioning to that of the hub but it performs filtering of the traffic present in the network using various traffic filtering algorithms.
The router whose main function is to route packets across the network is also used to connect between LANs and between LAN and a WAN.
The firewall is typically installed on systems or in servers or in routers with it most important function to filtering the traffic and minimize the packet delivery delay in LANs.
Yuri is a skilled computer security expert who attempts to break into the systems belonging to his clients. He has permission from the clients to perform this testing as part of a paid contract. What type of person is Yuri?
a) Cracker
b) White-hat hacker
c) Black-hat hacker
d) Grey-hat hacker
Answer:
b) White-hat hacker
Explanation:
This is also called an ethical hacker. Unlike the other options, a white-hat hacker is a person specialized on computational security which offers services to organizations to test how safe they are from informatic attacks (viruses, theft of information, etc). This is carried out based on a agreement between the whihte-hat hacker and the client via a contract.
Developers often think of software quality in terms of faults and failures. Faults are problems (for example, loops that never terminate or misplaced commas in statements) that developers can see by looking at the code. Failures are problems, such as a system crash or the invocation of the wrong function, that are visible to the user. Thus, faults can exist in programs but never become failures, because the conditions under which a fault becomes a failure are never reached. How do software vulnerabilities fit into this scheme of faults and failures? Is every fault a vulnerability? Is every vulnerability a fault?
While developing application solutions, software developers are always advised to consider producing secure code that is not vulnerable to hacks. Vulnerabilities, in the simplest of terms, can be described as an error or a fault in code. These errors or bugs, as a result, can cause unexpected actions like system crashes or connectivity issues. Some can go as far as creating information leakage and allowing unauthorized system access. Therefore, it is almost always certain that some bugs will cause vulnerabilities on software that have those bugs in them. It is also fit to say that faults in software are part of a larger list of factors that can cause software vulnerabilities. However, note that not all vulnerabilities are faults.
A user has just reported that he downloaded a file from a prospective client using IM. The user indicates that the file was called account.doC) The system has been behaving unusually since he downloaded the file. What is the most likely event that occurred?A) Your user inadvertently downloaded a macro virus using IM.B) Your user may have downloaded a rootkit.C) Your user may have accidently changed a setting on the system.D) The system is unstable due to the use of IM.
Answer: A) Your user inadvertently downloaded a macro virus using IM
Explanation:
As the user has downloaded a file from a prospective client ad the file was account.doc, but since then the system of the user has not been behaving normally so the most possible reason could have been the user has inadvertently downloaded a micro virus using the IM. These micro virus are invisible programs which can be transferred inadvertently from one user to another another. They can be transported over the network.
Option b is not correct as the user has not download a rootkit as it would require special privileges.
Option c is not correct as the user upon changing a setting in the system can reset it.
Option d is not correct as using the IM is not unstable to the system.
So, the correct option is A.
Gateways: a. process all messages, even if the messages are not explicitly addressed to them b. can translate one network protocol into anotherc. are less complex than bridgesd. are most often used as the interface between two or more networks that have similar data link and network layer protocolse. cannot perform a routing function
Answer: B)can translate one network protocol into another
Explanation: Gateway is the element that acts between the two networks that persist protocols that are different from each other. It helps in the translation of one protocol into another protocol and thus it is known as protocol converter.
Other options are incorrect because they don't work on explicit messages, complexity is present in gateways as compared with bridges and is used between dissimilar protocols not data.Thus, the correct option is option(B).
_____ refers to the use of a digital forum where multiple people can communicate with one another by sending text, images, and screenshots to everyone at once. Select one:
a. Wiki
b. Chat
c. Desktop sharing
d. Shared workspace
Answer:
b. Chat
Explanation:
Chat refers to the use of a digital forum where multiple people can communicate with one another by sending text, images, and screenshots to everyone at once. In particular where content is shared with multiple users simultaneously, it is referred to as group chat. There are several chatting applications available from software vendors which can be used for this purpose.
___________ is an approach to boundary spanning that results from using sophisticated software to search through large amounts of internal and external data to spot patterns, trends, and relationships that might be significant.
Answer: Business intelligence
Explanation:
Most of the enterprises and organizations collects huge amount of data through the use of MIS. These data can be based on any aspect of the business. But the collection of such large sets of data is useless until and unless there is a business intelligence associated with it. the work of business intelligence is to use software tools for analysis of the collected data so that it could be useful for enterprise or company to look for patterns and trends in the market.
The outcome of such business intelligence is very helpful particularly to managers, executives for taking particular decisions in the greater interest of the company.
So we can say, business intelligence is an approach to boundary spanning that results from using sophisticated software to search through large amounts of internal and external data to spot patterns, trends, and relationships that might be significant.
A department manager would like to choose an access control model in which the owner of a resource decides who may modify permissions on that resource. Which model fits that scenario?
Answer: Discretionary access control (DAC)
Explanation: Discretionary access control is the control system that is imposed over the information system. The information systems contains different objects and subjects that gets the permission to do the operations.
The operation which the components can do are sharing the data to other object or subjects, privilege providence, change in the rules for the access, security entities getting changed etc.
Universal Containers has a requirement to integrate Salesforce with an external system to control record access. What option should the Architect consider when designing a solution?A. Use the Metadata API to maintain the related SObject recordsB. Use the Security API to modify the role hierarchy in SalesforceC. Use the SOAP API to maintain the related SObject_share recordsD. Use the SOAP API to create new Criteria-Based Sharing Rules in Salesforce
Answer:
C. Use the SOAP API to maintain the related SObject_share records
Low-level languages allow programmers to concentrate on the tasks they want to perform with their program rather than the details of how the CPU will execute those programs. True False
Answer:
False.
Explanation:
The answer is the opposite, low level languagues are intended to allow the programmer full control of the cpu process, and perfomance.
But the disadvantages are: requires high level of expertise, its hard to program complex task.
High level languages allow programmers to concentrate in the task.
The science of nutrition studies the relationship of a. vitamins to minerals. b. foods to optimal health and performance. c. carbohydrates, fats, and proteins to the development and maintenance of good health. d. the macronutrients and micronutrients to physical performance. e. kilocalories to calories in food items
Answer:
B. Foods to optimal health and performance.
Explanation:
Because the science of nutrition is the relation between food diet and health. It's like eating to have good health, that's all.
The science of nutrition focuses on studying the relationship between carbohydrates, fats, proteins, and other nutrients in foods to the development and maintenance of good health. Therefore, the correct option is C.
It looks at the effects of these macronutrients and other important nutrients on the growth, development and general health of the body. Vitamins, minerals and other micronutrients are also taken into account by nutrition science as they are important for maintaining good health.
Nutritional science seeks to provide insight into appropriate dietary choices, nutritional standards, and methods for promoting health and preventing disease by understanding the composition and effects of various nutrients.
Therefore, the correct option is C.
Learn more about Nutritional science, here:
https://brainly.com/question/14577636
#SPJ6
What Windows Server 2016 Standard and Datacenter feature provides the ability to move selected blocks of data to different storage locations, such as moving data from hard drive storage to solid state storage?
Answer:
Storage tiering
Explanation:
Storage tiering is the Windows Server 2016 Standard and Datacenter feature that provides the ability to move selected blocks of data to different storage locations, such as moving data from hard drive storage to solid state storage.
Given an integer variable count, write a statement that displays the value of count on the screen. Do not display anything else on the screen -- just the value of count.
Answer:
cout<<count;
Explanation:
The above statement is in c++ which display the value of count .The cout statement is used in c++ to print the value on console .
Following are the code in c++
#include <iostream> // header file
using namespace std; // namespace
int main() // main method
{
int count=90; // count variable
cout<<count; // display the value of count
return 0;
}
Output:
90
In this program we have declared a count variable of integer type which is initialized by 90 and finally displays the value of count on the screen.
Astrid's computer screen suddenly says that all files are now locked until money is transferred to a specific account, at which time she will receive a means to unlock the files. What type of malware has infected her computer?
a) Bitcoin malware
b) Crypto malware
c) Blocking virus
d) Networked worm
Answer:
C) Blocking virus
Explanation:
It is true that money it is currently asked to be paid in cryptocurrencies like Bitcoin, but this malware existed before cryptos, so let's explain a little bit more about blocking viruses also known as ransomware.
A blocking virus restricts a part of the whole access to an operating system and also display the instructions to unlock it again, which is normally sending money to a specific account exaxtly as Astrid's case.
You want to create a directory called ~/Documents/papers, but you’re not sure that the ~/Documents directory exists. What command can you type to create the desired directory and its parent directory if it doesn’t already exist?
a) mkdir -a ~/Documents/papers
c) mkdir --recursive ~/Documents/papers
c) mkdir -R ~/Documents/papers
d) mkdir -r ~/Documents/papers
e) mkdir -p ~/Documents/papers
Answer: e) mkdir -p ~/Documents/papers
Explanation:
As the question says we want to create a directory called ~/Documents/papers, but we are not sure whether it exist or not so we would type the command for making directory starting with mkdir.
Here mkdir means make directory. Followed by mkdir we will use -p. Here p is used to create all the directories for getting us the directory we want and its advantage is that it would ignore all the errors if the directory already exist.
Followed by the name of the directory that we want to create.
So the desired answer for the given condition would be mkdir -p ~/Documents/papers
In a fantasy world, your character must face hordes of demons. Each demon is vulnerable to a type of magical spell. This weakness is exposed through trial and error. What kind of challenge has been described here?
extrinsic knowledge
imperfect information
perfect information
intrinsic knowledge
Answer:
Imperfect information
Explanation:
-Extrinsic knowledge refers to information that comes from the outside.
-Imperfect information refers to a situation in which a player doesn't know all the information needed from the beginning of the game when he has to do something.
-Perfect information refers to a situation in which a player knows all the information needed from the beginning of the game when he has to do something.
-Intrinsic knowledge refers to the information that a person knows without realizing it.
According to the definitions, the kind of challenge that has been describe in this situation where the weakness of the demon is exposed through trial and error is imperfect information.
Answer:
D. intrinsic knowledge
Explanation:
So just for this question, we want to keep our eyes on A and D. Keep in mind that A and D are the complete opposite of each other, so the best way I can put it simply is that in the gaming world "extrinsic knowledge" is like an action game, however, "intrinsic knowledge" is like a puzzle game. And as we see in the question your player has to think their way out, so it leans more into "intrinsic knowledge" than anything.
So again its D. intrinsic knowledgeI HOPE THIS HELPS! STAY AWESOME!