Answer:
n/2
Explanation:
A linear search starts at the beggining of the array at index 0 and searches for the specific element by analyzing one element at a time. Meaning that if it does not exist in index 0 it moves to index 1 and if its not there it moves to index 2 and so on. If the element is not present in the array it finishes the array and ends, otherwise if it finds the element the search automatically ends. This means that on average the search would end early half of the time. This would mean that on average a total of n/2 elements are visited using a linear search.
Which command entered without arguments is used to display a list of processes running in the current shell
Answer:
ps
Explanation:
In Unix and Unix-like operating system, the command used to display the list of processes running in the current shell is ps. For each of these processes, the following details are displayed;
i. PID which indicates the id of the process
ii. TTY which indicates the type of terminal from which the process is running.
iii. TIME which represents the CPU time consumed by the the process and its sub-processes.
iv. CMD which represents the command that runs as the current process.
The Curtis Publishing Company's early marketing research efforts mainly had to do with _____. people who drove automobiles people who bought books people who read books people who bought automobiles
Answer:
people who bought automobiles
Explanation:
Market research can be defined as a strategic technique which typically involves the process of identifying, acquiring and analyzing informations about a business. It involves the use of product test, surveys, questionnaire, focus groups, interviews, etc.
Cyrus H. K. Curtis was a publisher that founded and established the Curtis Publishing Company as a news magazine in 1891.
The Curtis Publishing Company's early marketing research efforts mainly had to do with people who bought automobiles in the United States of America.
Assume that processor refers to an object that provides a void method named process that takes no arguments. As it happens, the process method may throw one of several exceptions. Write some code that invokes the process method provided by the object associated with processor and arrange matters so that your code causes any exception thrown by process to be ignored. Hint: use the catch (Exception ex) and do nothing under the catch clause.
Answer:
Following are the code to the given question:
try//defining a try block
{
processor.process();//defining an object processor that calls process method
}
catch(Exception e)//defining a catch block
{
}
Explanation:
In this question, the 'Try' and 'catch' block is used in which both the keywords are used to represent exceptions managed during runtime due to information or code errors. This try box was its code block which includes errors. A message queue catches the block errors and examines these.
In the try block, a method "process" is used which is create the object processor that calls the method.
c724 wgu True or false. A storage device consists of all the components that work together to process data into useful information
Answer:
False
Explanation:
A output device consists of all the components that work together to process data into useful information
Which software system is used to store appointments, scheduling, registration, and billing and receivables
Answer:
"Practice Management System (PMS)" is the appropriate answer.
Explanation:
It's the kind of technology that has been discovered in healthcare professionals, developed to handle the day-to-day activities utilizing the desktop application.Is therefore typically utilized assurance and consulting tasks, but can also be connected to medical digital records dependent on multiple treatment practices requirements.Thus the above is the correct answer.
Computer designers have concentrated on technology using gallium arsenide instead of silicon because silicon:
Answer: cannot emit light and has speed limitations
Explanation:
Silicon is usually used in computer chips and solar cells but Gallium arsenide is regarded as a better alternative even though it's costly than silicon.
Gallium arsenide has technical advantages over silicon as its electrons
move through it faster than they move through silicon. Also, cannot emit light and has speed limitations.
Gallium arsenide is used in manufacturing devices like infrared light-emitting diodes, solar cells, optical windows, etc.
_____ uses computer-generated, three-dimensional images to create the illusion of interaction in a real-world environment.
Answer:
"Virtual reality" is the appropriate answer.
Explanation:
The utilization of technological advances gives the impression of a 3D interactive environment wherein the things that have such a perception of space embodiment or involvement, are considered as Virtual reality.
Virtual reality implementations often include:
Entertainment,Medical and Educational activities.does unturned game is good for low end PC that without graphics card?
Answer:
What are your current PC specs and what operating system are you using?
Explanation:
Below are the minimum/recommended system requirements for Windows:
Minimum requirements:
OS: Windows 7 SP1+
Processor: 2 GHz
Memory: 4 GB RAM
DirectX: Version 10
Storage: 4 GB available space
Recommended Requirements:
OS: Windows 10 64-bit
Processor: 3 GHz
Memory: 8 GB RAM
DirectX: Version 11
Network: Broadband Internet connection
Storage: 6 GB available space
To check your specs (Windows):
1. Right-click on the Windows start menu icon on the bottom left-hand side of your screen.
2. Click on ‘System’ in the menu that pops up.
3. Next to ‘Device/Windows Specifications’ it will list all the information
anyone know how to translate this 1100111111110100000110 pls n ty!4!:$;
Answer:
1100111111110100000110 = �
Binary -> UTF-16
3,407,110 in decimal form
Additionally, it also translates to the color green in hexadecimal.
Not really sure what you are trying to translate this in to though.
What is the usage of "yield" in python?
Answer:
Yield is a keyword in Python that is used to return from a function without destroying the states of its local variable and when the function is called, the execution starts from the last yield statement. Any function that contains a yield keyword is termed a generator. Hence, yield is what makes a generator.
Explanation:
The part (or statement) of a recursive function that decides whether the recursive loop is terminated is called: (Select all that apply)
Answer:
The base case
Explanation:
Required
The part that determines the termination of a recursion
This part of a recursion is referred to as the base case.
Take for instance, the following:
factorial(int n) {
if (n < = 1) { return 1; }
else { return n*factorial(n-1); } }
The base case of the above is if (n < = 1) { return 1; }
Because the recursion will continue to be executed until the condition is true i.e. n less than or equals 1
You work as a computer technician for a production company that travels all over the world while filming and editing music videos. Due to the nature of video editing, you will be building a video production workstation for the company that will have the maximum amount of RAM, an 8-core CPU, a dedicated GPU, and a redundant array of solid state devices for storage. You are now determining which power supply to install in the system. What is the MOST important characteristic to consider when choosing a power supply
Answer: Input Voltage
Explanation:
Based on the information given, since the power supply to install in the system is being determined, the input voltage is the most important characteristic to consider when choosing a power supply.
The input voltage indicates the type of voltage and the electrical current that's required to power a device safely and effectively.
When an application has multiple uses what is it known as?
A. Minimum Features
B. Full Featured
C. Limited Features
D. Maximum Features
when do we use SAVE and SAVE AS in saving artwork in adobe illustrator?
PLEASE HELP ASAP
Answer:
to save in different format
A number of computers have been reported to be getting incorrect IP addresses. After doing some investigation, an unauthorized DHCP server has been determined to be the cause. Which step in the troubleshooting process should be performed next
Answer:
Establish a plan of action to find the DHCP server.
Explanation:
The troubleshooting process can be defined as the sequential steps that are to be taken while trying to proffer a solution to a problem, usually on computer systems.
The seven (7) steps of the troubleshooting process in ascending order are;
1. Identify the problem.
2. Establishing a theory of probable cause of the problem.
3. Test the established theory to determine cause.
4. You should establish a plan of action to resolve the problem while identifying its potential effects.
5. Implement a solution.
6. Verify full system functionality.
7. Document findings, actions and outcomes.
In this scenario, the step in the troubleshooting process that should be performed next is establishing a plan of action to resolve the problem by finding the unauthorized dynamic host control protocol (DHCP) server issuing the incorrect internet protocol (IP) addresses.
please answer me fast
Answer:
Btp
Explanation:
this will help you more
Answer:
BTP is the simplest and the most conventional model of topology
PTP
BTP✓✓✓
PTB
PTT
If a vulnerability is not fixed at the root cause, there is a possibility that another route of attack can emerge. This route is known as the ____________________.
Answer:
attack vector
Explanation:
If a vulnerability is not fixed at the root cause, there is a possibility that another route of attack can emerge. This route is known as the attackvector.
please answer me fast
Answer:
microsoft
Explanation:
this may help u
Answer:
Microsoft
because its a 2013 worldwide partner conference and Microsoft server operations
what is computer engineering
Answer:
Computer Engineering is the discipline embodying science and technology in the design, building, implementing, and maintenance of modern computer systems and computer-controlled equipment software, and hardware components.
Explanation:
Computing engineering is an engineering branch that incorporates several computer sciences and engineering industries that are necessary for the development of computer equipment and software. In general, computer engineers are educated not only in software engineering or electronic engineering but also in software design and software integration. Computer engineers participate in numerous computer software and hardware aspects from the conception of different microcontrollers, micro-producers, personal computers, and supercomputers to the design of circuits.
Computer engineers are usually involved in the writing of software and firmware for embedded microcontrollers, the design of VLSI chips, analog sensors, the construction of mixed-signal systems, and the design of operating systems. The robotic research process is also suitable for the use of digital systems to control and monitor electrical systems, such as drives, communications, and sensors. Computer engineers are also suitable.
In many universities, informatics students are allowed to choose areas of in-depth study in their junior and senior levels, as the full size of knowledge used in computer design and use is beyond the scope of a bachelor's degree. Other institutions may require students to complete one or two years of general engineering before declaring the focus on computer technology
kamusta Bagong user Ako dito
Answer:
kamusta Bagong user Ako dito = hello New user I'm here
In PKI, the CA periodically distributes a(n) _________ to all users that identifies all revoked certificates.
Answer:
" CRL (certificate revocation list)" is the appropriate answer.
Explanation:
A collection of such subscriber bases containing accreditation or certification status combined with the validation, revocation, or outdated certification within each final customer is known as CRL.Only certain subscribing workstations with a certain underlying cause authentication system should have been duplicated.which one of the following is not hardware
Answer:
There r no options
Explanation:
I think the application r not the hardware.
An EULA usually takes the form of an electronic notification that appears when installing software. The user then has a choice to accept or decline the terms of this agreement. True False
Answer:
True
Explanation:
An end user license agreement (EULA) is usually designed by a software developer to take the form of an electronic notification that would appear on the screen of the device of an end user when he or she is installing a software.
Furthermore, an end user has a choice to accept or decline the terms of this agreement.
Analizar los componentes de una computadora completa hoy en día comparada con el inicio de la Informática.
Answer:
Explanation:
Las computadoras que existian en el inicio de la informatica y las que existen ahora tenian los mismos componentes. Estos eran CPU, Placa Madre, RAM, HDD, y tarjeta grafica. Lo que si cambio fueron el velocidad y capacidad. Por ejemplo, en el inicio las Tarjetas de RAM venian como DDR a una velocidad maxima de 133 Mhz con una capacidad de entre 4mb y 8mb. Hoy en dia tenes RAM de DDR5 con una velocidad de 4400 Mhz y de 8gb. Mientras que avanzaba el tiempo los componentes de las computadoras aumentaban en velocidad y capacidad aunque el tamaño bajaba o aumentaba dependiendo del gusto del usario.
Why is it important to ensure that your software is up to date?
Explanation:
It is important to ensure that your software is up to date simply because these updates often provide critical patches to security issues. These patches are to terminate any bugs or exploits that may cause harm to your computer system, and even your personal data. Updating your software allows the program to remove old outdated features, while installing newer/better features. They will often improve the stability and preformance as well.
You manage the information systems for a large manufacturing firm. Supervisory control and data acquisition (SCADA) devices are used on the manufacturing floor to manage your organization's automated factory equipment. The SCADA devices use embedded smart technology, allowing them to be managed using a mobile device app over an internet connection. You are concerned about the security of these devices. What can you do to increase their security posture? (Select two.)
Answer: Install the latest firmware updates from the device manufacturer.
Verify that your network's existing security infrastructure is working properly
Explanation:
Since the person is concerned about the security of these devices, in order to increase their security posture, the latest firmware updates should be installed fom the device manufacturer.
The firmware is the software program or set of instructions which is programmed on a hardware device. Installing the latest update is necessary in order to prevent third party use or hacking. Also, it's vital to check the network's existing security infrastructure in order to check if it's working properly.
What are the three ways you can add recipients to your marketing emails? Add a list of contacts, add individual contacts, or save the email as a sales email. Add a list of contacts, add individual contacts, or save the email as a services email. Add a list of contacts, add individual contacts, or save the email for automation. Add individual contacts, save the email for auto
Answer:
Explanation:
The three ways of doing this are to add a list of contacts, add individual contacts, or save the email for automation. The list of contacts would be added as a single file containing a large collection of contacts which would all be imported. Adding individual contacts would be done one by one would need to be done manually. Lastly, we have saving the email for automation which would automatically add the email and the contact info asociated with that email to your marketing emails.
Answer:
add a list of contacts, add individual contacts, or save the email for automation
Explanation:
which shooting games is good for low end PC. CSGO or Valorant?
the best choice would be csgo
The DuPage Freight Shipping Company charges the following rates: Weight of Package Rate per Pound 2 pounds or less $1.10 Over 2 pounds, but not more than 6 pounds $2.20 Over 6 pounds, but not more than 10 pounds $3.70 Over 10 pounds $3.80 Design a program that does the following: asks the user to enter the weight of a package and displays the shipping charges. 1. Prompt the user for the weight of a package 2. Determines the rate per pound in a getRate module 3. Calculates and displays the total shipping charge in a getTotal module Hint - you may want to use a global variable for this! Please submit three things:
Answer:
The program in Python is as follows:
def getRate(weight):
if weight<=2.0:
rate = 1.10
elif weight>2 and weight<=6:
rate = 2.20
elif weight>6 and weight<=10:
rate = 3.70
else:
rate = 3.80
return rate
def getTotal(weight,rate):
total = weight * rate
print("Total: ",total)
weight = float(input("Weight: "))
rate = getRate(weight)
getTotal(weight,rate)
Explanation:
This defines the getRate function
def getRate(weight):
The following if conditions determine the corresponding rate based on the value of weight passed to the function
if weight<=2.0:
rate = 1.10
elif weight>2 and weight<=6:
rate = 2.20
elif weight>6 and weight<=10:
rate = 3.70
else:
rate = 3.80
This returns the rate back to the main method
return rate
The getTotal module begins here
def getTotal(weight,rate):
This calculates the total charges
total = weight * rate
This prints the calculated total
print("Total: ",total)
The main begins here
This gets input for weight
weight = float(input("Weight: "))
This gets the rate from the getRate function
rate = getRate(weight)
This passes values to the getTotal function
getTotal(weight,rate)
While in high school, you need to complete a specific number of ___ to be accepted into a four-year college
Answer:
credits
Explanation:
I'm still in highschool
Answer:
If these are your options:
A: electives
B: Advanced Placement courses
C: course requirements
D: dual enrollment courses
It's C, course requirements
Explanation: