Answer:
Write a program that declares a minutes variable to represent minutes worked on a job,
and assign a value to it. Display the value in hours and minutes. For example, 197 minutes becomes 3 hours and 17 minutes.
Explanation:
Write a program that declares a minutes variable to represent minutes worked on a job,
and assign a value to it. Display the value in hours and minutes. For example, 197 minutes becomes 3 hours and 17 minutes.
Answer: the answer is Jesus
Explanation:Jesus is always the answer
This is your code. >>> a = [5, 10, 15] >>> b = [2, 4, 6] >>> c = [11, 33, 55] >>> d = [a, b, c] d[0][2] is .
The value of d[2][0] value of your code is 11.
What is coding?Coding, also known as computer programming, is the method by which we communicate with computers.
Code tells a computer what to do, and writing code is similar to writing a set of instructions. You can tell computers what to do or how to behave much more quickly if you learn to write code.
A variable called an is declared, and it contains an array of the numbers 5, 10, and 15.
Variable b is a collection of the numbers 2, 4, and 6.
Variable c is also made up of the numbers 11, 33, and 55.
d[2][0] simply means that we should take the d variable, find the index 2 (which is c), and get the index 0 of c. The result should be 11 because index zero of variable c is 11.
Thus, the answer of d[2][0] is 11.
For more details regarding coding, visit:
https://brainly.com/question/17204194
#SPJ1
CodeHS 2.9.5 Style Your Class List answer
In this exercise we have to use the knowledge of computational language in python to write the code that Style Your Class List answer
Writting the code:ipenup()
backward(100)
for i in range(4):
pensize(5)
pendown()
left(60)
color("green")
forward(50)
right(120)
color("blue")
forward(50)
color("red")
right(120)
forward(50)
penup()
left(180)
forward(50)
See more about python at brainly.com/question/22841107
#SPJ1
You want to save a file to your desktop so no one will be able to you to make changes what do you use copy or move
Answer:
Copy
Explanation:
Mary and Joanne would like to start their own jewelry business. They do not want to file a bunch of papers, but also do not want to be personally liable for debts incurred by the company. Which form of ownership should they pursue?\
A-Partnership
B-Sole proprietorship
C-Limited Partnership
(helping my friend do his work cos hes sick)
In the United States, an LLC is a type of organizational structure where the owners are not held personally responsible for the debts or obligations of the business. Limited liability companies are hybrid legal entities with traits shared by corporations, partnerships, and sole proprietorship.
What personally liable for debts incurred by the company?A business where some people hold the bulk of the company's shares is known as a closely held corporation. Shares cannot be purchased by the public because they are not openly traded on an exchange. The majority shareholders have a large impact on and control over the company.
Therefore, The simplest and most straightforward type of business ownership is a sole proprietorship. One individual is the owner of it. The distinction between the individual and the company does not exist. Profits and losses from the company are shared by the owner.
Learn more about personally liable here:
https://brainly.com/question/14682274
#SPJ1
What type of software allows users to perform general purpose tasks, like web browsing, typing documents, or gaming?
application software
utility software
system software
antivirus software
What Is Used To Identify Spelling errors in the document?
Answer: Spell check
Explanation: Spell check identifies and corrects misspelled words. It also allows you to search a document yourself for words you've misspelled.
Which of the following networking device can be used to implement access lists, dynamic routing protocols, and Network Address Translation (NAT)?
The networking device that can be used to implement access lists, dynamic routing protocols, and Network Address Translation (NAT) is a router. The correct option is a.
What is a router?On computer networks, a router receives and sends data. Routers are frequently mixed up with network hubs, modems, and network switches.
Routers, on the other hand, can combine the functions of these components and connect with these devices to improve Internet access or assist in the creation of business networks.
Wired routers, wireless routers, core routers, edge routers, and VPN routers are all types of routers.
A router can implement access lists and dynamic routing protocols.
Thus, the correct option is a.
For more details regarding a router, visit:
https://brainly.com/question/15851772
#SPJ1
Your question seems incomplete, the missing options are:
a. Router
b. Layer 2 Switch
c. Hub
d. Layer 3 Switch
You replace an internal drive that is only used to backup data on a computer. Before you
install the case cover, you power on the computer and observe the disk drive lights are not
blinking. You suspect it may not be receiving power, but cannot find the power supply tester.
How can you quickly verify whether power is being supplied to the disk drive?
The way to quickly verify whether power is being supplied to the disk drive is through the use of a multimeter.
How do you check your power supply?There are different ways to know if power is entering your system. A person can be able to check the power supply on their computer by removing the side panel that pertains to its case.
Note that when a person bought any kind of rebuilt computer, you are able to likely check the power supply with the use of the computer's manual or by asking or contacting the manufacturer.
Therefore, based on the above, The way to quickly verify whether power is being supplied to the disk drive is through the use of a multimeter.
Learn more about multimeter from
https://brainly.com/question/5135212
#SPJ1
I will earn at least a 3.0 gpa in all of my courses this semester is an example of all the criteria of a smart goal?
Based on the given scenario, it can be clearly seen that it fulfils all criteria for a SMART goal.
What is a SMART goal?This is an acronym that means Smart, Measurable, Attainable, Realistic and Time-Bound.
With this in mind, we can see that
S = Specific
There is a specific criteria (3.0 GPA) that this person is trying to meet
M = Measurable
This goal is measurable, and can be measured by looking at grade point averages.
A = Attainable
Yes, 3.0 is a B average, which is attainable if you work hard!
R = Realistic
Yes, most grade-based goals are realistic as long as they are not aiming for 100%!
T = Time-Bound
This goal is time bound to one semester
Therefore, we can state that it fulfilled all criteria for a SMART goal
Read more about SMART goals here:
https://brainly.com/question/8986181
#SPJ1
I need the user to type 17 OR 18 and if they type a different number the computer should say error else it should say thanks
if Age !="17" or "18" :
print("Error please try again")
elif Age == "17" or "18":
print("thanks")
The output for the first condition would be thanks while the one when age is not 17 or 18 would be error please try again.
What is the else if (elif statement)?This is the statement that is used in programming which tells the computer to fulfill another condition if the first condition that it was given is unmet.
Here the first condition is to type 17 or 18 as age.
This would be
If Age == "17" or "18"
print ("thanks")
The output would be thanks if the age falls under the condition of 17 or 18.
Next we are to get what happens if age is not 17 or 18
elif age != "17" or "18"
print("Error please try again")
The output that we would have here if the first condition is unfulfilled would be error try again.
Read more on elif codes here: https://brainly.com/question/15091482
#SPJ1
What web frameworks is the best
Based on my own experience, the web frameworks that is known to be the best are:
Express.Django.Rails.Laravel.What is meant by a web framework?A web development framework is known to be a composition or a group of resources as well as tools that are known to be used by software developers to be able to build as well as manage web applications, web services and also the creation of websites.
Therefore, based on their quality, one can say that the above mention are the best.
Hence, Based on my own experience, the web frameworks that is known to be the best are:
Express.Django.Rails.Laravel.Learn more about web frameworks from
https://brainly.com/question/16792873
#SPJ1
Write a class encapsulating the concept of an investment, assuming
that the investment has the following attributes: the name of the
investor, the amount of the investment, and the static interest rate at
which the investment will be compounded. Include a default
constructor, an overloaded constructor, the accessors and mutators,
and methods, toString() and equals(). Also include a method returning
the future value of the investment depending on how many years
(parameter to this method) we hold it before selling it, which can be
calculated using the formula:
Future value = investment(1 + interest rate )year
We will assume that the interest rate is compounded annually. Write a
client class to test all the methods in your class and print out the tuture
value of and investment for 5, 10, and 20 years.
A class encapsulating the concept of an investment, assuming that the investment has the following attributes is given below:
The Programimport java.util.Scanner;
/**
This program compares CD /Investment plans input by the year
broken down by the requirements below:
This program creates a table of compound interest investment growth over time
Broken down by: a) year b) balance at end of year
Finance formula of A= P(1+ r/n)^n*t is used:
A = Future Value | P = Initial Investment
r = annual interest rate |n = times interest is compounded/year
t = years invested
*/
public class InvestmentTableFirstTest
{
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
String bestBankName = "";
double bestGrowth = 0;
boolean done = false;
while(!done)
{
System.out.print("Plan name (one word, Q to quit): ");
String bankName = in.next();
if (bankName.equals("Q"))
{
done = true;
}
else
{
System.out.print("Please enter your principal investment: ");
final double PRINCIPAL_INVESTMENT = in.nextDouble();
System.out.print("Please enter the annual interest rate: ");
double iRate = in.nextDouble();
System.out.print("Please enter number of times interest is compounded per year: ");
final double INCREMENT = in.nextDouble();
System.out.print("Enter number of years: ");
int nyears = in.nextInt();
iRate = iRate/100; System.out.println("iRate:" + iRate);
//Print the table of balances for each year
for (int year = 1; year <= nyears; year++)
{
double MULTIPLIER = INCREMENT * year;
System.out.println("Multiplier: " + MULTIPLIER); // I've included this print statement to show that the multiplier changes with each passing year
double interest = 1 + (iRate/INCREMENT);
double balance = PRINCIPAL_INVESTMENT;
double growth = balance * Math.pow(interest, MULTIPLIER);
growth = growth - PRINCIPAL_INVESTMENT;
balance = balance + growth;
System.out.printf("Year: %2d Interest Earned: $%.2f\t Ending Balance: $%.2f\n", year, growth, balance);
if (bestBankName.equals("") || bestGrowth > growth) // || bestBankName > growth
{
bestBankName = bankName; // bestBankName = bankName
bestGrowth = growth; // mostGrow = growth
}
System.out.println("Earning with this option: " + growth);
}
}
}
System.out.println("Best Growth: " + bestBankName);
System.out.println("Amount Earned: " + bestGrowth);
}
}
Read more about programming here:
https://brainly.com/question/23275071
#SPJ1
what does a microchip do. what is it used for and when was it made?
A microchip is used in almost every electronic gadget we use today, including cellphones, game consoles, automobiles, as well as in medical equipment, and they all uses microchips.
What exactly is a microchip and how does it work?A microchip is a discrete piece of packaged computer circuitry, also known as an integrated circuit, that is produced on a very small scale from a material like silicon. Program logic (logic or microprocessor chips) and computer memory are produced using microchips (memory or RAM chips).
Therefore, based on the above, A microchip is used in almost every electronic gadget we use today, including cellphones, game consoles, automobiles, as well as in medical equipment, and they all uses microchips.
Learn more about microchip from
https://brainly.com/question/28469339
#SPJ1
A database management system (DBMS) is important to modern organizations because:
Answer: It is important for both the generation and maintenance of data, take apple, for example, they use a DBMS to manage any incoming data, organize it, and that DBMS also allows the data to be modified or extracted by other users of the DBMS.
Explanation:
Is it true or false? Just have been stuck on this for a bit about CNC milling.
Information illegally or do damage is known as in IT
A person who used his or her expertise to gain access to other people's computers to get information illegally or do damage is a Hacker.
Who is a Hacker?A hacker is someone who utilized their knowledge to break into someone else's computers in order to steal information or do harm.
Although the phrase initially referred to a shrewd or knowledgeable coder, it is today more frequently used to describe someone who can access other computers without authorization.
Hacking. In computer science, the term hack implies to use a computer or other technological equipment or system to be able to get an into an unauthorized system to data owned by another person or organization.
Therefore, based on the above, A person who used his or her expertise to gain access to other people's computers to get information illegally or do damage is a Hacker.
Learn more about Hacker from
https://brainly.com/question/23294592
#SPJ1
A person who used his or her expertise to gain access to other people's computers to get information illegally or do damage is a
In 1645, a German Jesuit priest invented an image projection device, which he
called a:
O phantasmagoria.
O zoopraxiscope.
Othermoscope.
O magic lantern.
In 1645, a German Jesuit priest invented an image projection device, which he called magic lantern.
What was the Magic Lantern?This is known to be the very fist initial attempt to be able to project drawings that were known to be in motion.
It was said to be one of the initial kinds of the modern slide projector, that was said to have projected an image that has been depicted on a glass plate.
Therefore, In 1645, a German Jesuit priest invented an image projection device, which he called magic lantern.
Learn more about magic lantern from
https://brainly.com/question/13280070
#SPJ1
Answer: magic lantern
Explanation:
Which statement best describes a characteristic of a relational database?
A relational database is a type of database that stores and provides access to data points that are related to one another. Relational databases are based on the relational model, an intuitive, straightforward way of representing data in tables. In a relational database, each row in the table is a record with a unique ID called the key. The columns of the table hold attributes of the data, and each record usually has a value for each attribute, making it easy to establish relationships among data points.
The relational database is basically used as the set of the table in which the data can be easily accessible without any re-organizing of the table in the database. In the structured query language (SQL), the relational database is used as the standard users and API ( Application programming interface). The relational database is basically needed to store the information or data in the form of tables. Due to the relational database, we can easily compare the data or information because the data are arranged in the form of columns
Database tables
In a relational database, all data is held in tables, which are made up of rows and columns. Each table has one or more columns, and each column is assigned a specific datatype, such as an integer number, a sequence of characters (for text), or a date. Each row in the table has a value for each column.
A typical fragment of a table containing employee information may look as follows:
emp_ID emp_lname emp_fname emp_phone
10057 Huong Zhang 1096
10693 Donaldson Anne 7821
The tables of a relational database have some important characteristics:
1. There is no significance to the order of the columns or rows.
2. Each row contains one and only one value for each column.
3. Each value for a given column has the same type.
Learn more about Relational Database: brainly.com/question/13262352
#SPJ1
In MakeCode Arcade, the space where you drag code blocks to build your
program is called the.
A. Workspace
In +MakeCode Arcade, the space where you drag code blocks to build your program is called the workspace. The correct option is C.
What is MakeCode Arcade?Microsoft MakeCode Arcade is a beginner-friendly web-based code editor for creating retro arcade games for the web and dedicated hardware.
As is customary with MakeCode, you can build your program in your browser using blocks or JavaScript.
JavaScript and the Static TypeScript language are used in the Microsoft MakeCode programming environment.
The workspace is the area in MakeCode Arcade where you drag code blocks to build your program.
Thus, the correct option is C.
For more details regarding MakeCode Arcade, visit:
https://brainly.com/question/28144559
#SPJ1
Your question seems incomplete, the missing options are:
A. Game simulator
B. Image editor
C. Workspace
D. Toolbox
factors that determine the speed of your computer
Answer:
NUMBER OF CORES (PROCESSORS) The CPU is where you'll find the processing units, each one known as a core, MULTIPLE APPLICATIONS AFFECTING COMPUTER SPEED, GRAPHIC CARD TYPE.
Explanation:
The Check Spelling command is found under the ________ menu.
Question 1 options:
1)
View
2)
Edit
3)
Layer
4)
File
Answer: 2
Explanation:
Write a while loop that divides userNumber by 9, assigns userNumber with the quotient, and outputs the updated userNumber, followed by a newline. The loop iterates until userNumber is less than or equal to 0.
The loop that divides user number by 9 is assign and the loop is said to be java while loop.
What is java loop?
Java loop is a statement which has controlled by a flow statement that allows code which has to be executed continuosly which has been based on a condition which is boolean. The while loop is said to be repeating according to statement.
Java loop comes in use when we required a continuosly execute statements in blocks. The while loop is said to be repeating according to statement. In case when Iterations statement has not been fixed , in such case while loop is recommended to use.
Therefore, The loop that divides user number by 9 is assign and the loop is said to be java while loop.
Learn more about java loop here:
https://brainly.com/question/14577420
#SPJ1
Emily has copied some text from one of her documents. She would like to insert it in a new word-processing document. What command should Emily use?
Save As
Save
Cut
Paste
What other new jobs could be created to help address the reality of climate change?
The new jobs that could be created to help address the reality of climate change are:
Environmental Engineer. Clean Car Engineer.Environmental Scientist. Conservation Scientist.What exactly is climate change?The term climate change is known to be a Long-term changes in temperature and weather patterns are referred to as climate change. These changes could be caused by natural processes, such oscillations in the solar cycle.
Note that human activities are known to be primarily the combustion of fossil fuels like coal, oil, and others are those that have been the primary cause of climate change.
Therefore, The new jobs that could be created to help address the reality of climate change are:
Environmental Engineer. Clean Car Engineer.Environmental Scientist. Conservation Scientist.Learn more about climate change from
https://brainly.com/question/1789619
#SPJ1
A(n)______protects your device against unauthorized access.
A. Virtual machine
B. User account
C. Personalization app
D. Administrative tool
A User account protects your device against unauthorized access.
What is user account and its example?A user account is known to be a kind of online account that gives one room or does not allow a user to be linked to a network, another computer, or any other thing.
Note that any network that has multiple users requires one to have user accounts and as such, A User account protects your device against unauthorized access.
Learn more about User account from
https://brainly.com/question/26181559
#SPJ1
Evaluate when to use Object-oriented design
methodology
The time to use Object-oriented design methodology is when a person wants to fill the space between problem and solution.
Check more about Object-oriented design methodology below:
What is object oriented design used for?The term Object-oriented design (OOD) is known to be a kind of an act or method that involves the use of an object-oriented methodology to design a computing system or any form of application.
Note that this technique is known to be one that entails the act of the implementation of a software solution which is said to be as a result of an idea or the concepts of objects, since OOD serves as an aspect of the object-oriented programming (OOP) act or lifecycle.
Therefore, based on the above, one can say that The time to use Object-oriented design methodology is when a person wants to fill the space between problem and solution.
Learn more about Object-oriented design from
https://brainly.com/question/13383471
#SPJ1
odify the guessing-game program so that the user thinks of a number that the computer must guess.
The computer must make no more than the minimum number of guesses, and it must prevent the user from cheating by entering misleading hints.
Use I'm out of guesses, and you cheated and Hooray, I've got it in X tries as your final output.
The guessing-game program that the user thinks of a number that the computer must guess is illustrated below.
How to illustrate the program?The appropriate program for the guessing game will be:
import random
import math
smaller = int(input("Enter the smaller number: "))
larger = int(input("Enter the larger number: "))
count = 0
print()
while True:
count += 1
myNumber = (smaller + larger) // 2
print('%d %d' % (smaller, larger))
print('Your number is %d' % myNumber)
choice = input('Enter =, <, or >: ')
if choice == '=':
print("Hooray, I've got it in %d tries" % count)
break
elif smaller == larger:
print("I'm out of guesses, and you cheated")
break
elif choice == '<':
larger = myNumber - 1
else:
smaller = myNumber + 1
Learn more about programs on:
https://brainly.com/question/16397886
#SPJ1
If a review of a system reveals an increased sensitivity or criticality associated with information aggregates, then the system security objectives:
If a review of a system reveals an increased sensitivity or criticality associated with information aggregates, then the system security objectives option c: should be increased.
What is system security objectives?Information security is one that has three primary goals, namely
ConfidentialityIntegrity, Availability.It is nearly often mentioned in relation to the security of computer networks and systems.
System security refers to the measures that a company takes to protect its networks and resources from disruption, interference, as well as malicious intrusion.
Therefore, If a review of a system reveals an increased sensitivity or criticality associated with information aggregates, then the system security objectives option c: should be increased.
Learn more about system security from
https://brainly.com/question/14638168
#SPJ1
If a review of a system reveals an increased sensitivity or criticality associated with information aggregates, then the system security objectives:
Should remain the same
Should be lowered
Should be increased
Should be reevaluated
What type of computer program takes a high-level language and turns it into assembly code?
Answer: Compilers
Explanation:
Question 1
Not yet answered
Points out of 2.0
Not flaggedFlag question
Question text
Configuration management is a process for controlling changes in system requirements during software development.
Select one:
a.
True
b.
False
Question 2
Not yet answered
Points out of 2.0
Not flaggedFlag question
Question text
______________ is the overall time between a request for system activity and the delivery of the response.
Select one:
a.
Through-put speed
b.
Turnaround time
c.
Response time
Question 3
Not yet answered
Points out of 2.0
Not flaggedFlag question
Question text
When an information systems project gets implemented, it moves into the "maintenance" stage - any requested changes will be considered maintenance activities. There are 4 basic types of maintenance. Please match each with its correct term.
________ maintenance is performed to fix errors
Answer 1
Choose...
___________ maintenance adds new capability and enhancements
Answer 2
Choose...
_________ maintenance improves efficiency
Answer 3
Choose...
_________ maintenance reduces the possibility of future system failure.
Answer 4
Choose...
Question 4
Not yet answered
Points out of 2.0
Not flaggedFlag question
Question text
System security encompasses confidentiality, integrity, and availability.
Select one:
a.
True
b.
False
Question 5
Not yet answered
Points out of 2.0
Not flaggedFlag question
Question text
In the testing process, a new computer program reads in a file and attempts to perform arithmetic calculations on a name field. What is the most likely result?
Select one:
a.
The program will encounter a logic error.
b.
The program will encounter a syntax error.
c.
The program will encounter a run-time error.
Question 6
Not yet answered
Points out of 2.0
Not flaggedFlag question
Question text
The testing process takes place in the closing phase of the project management life cycle. (T/F)
Select one:
True
False
Question 7
Not yet answered
Points out of 2.0
Not flaggedFlag question
Question text
Corrective maintenance efforts are _________ when a project is first implemented
Select one:
a.
Low
b.
Medium
c.
High
Question 8
Not yet answered
Points out of 2.0
Not flaggedFlag question
Question text
Which of the following statements is true about logic errors?
Select one:
a.
Logic errors do not keep the program from running.
b.
With a logic error, program syntax is correct but the program doesn't return the expected results.
c.
Logic errors keep programs from running correctly.
d.
All of the above
Question 9
Not yet answered
Points out of 2.0
Not flaggedFlag question
Question text
Hailey tried to compile her source code, but it failed to compile. The most likely reason is:
Select one:
a.
It had a logic error in it.
b.
It encountered a run-time error.
c.
The code had a syntax error(s).
Question 10
Not yet answered
Points out of 2.0
Not flaggedFlag question
Question text
Mike created a new program that isn't returning the results he expects. Although the program compiles fine and runs fine (without ending in error), it isn't processing correctly. Mike should:
Select one:
a.
Look for logic errors in the code.
b.
Eliminate any syntax errors and try again.
c.
Run a systems test for the users to see if they can help.
d.
All of the above
Question 11
Not yet answered
Points out of 2.0
Not flaggedFlag question
Question text
Adaptive maintenance adds _____________ to an operational system and makes the system easier to use.
Select one:
a.
New feature(s) or capability.
b.
Changes to make the system more efficient.
c.
Changes to fix syntactical errors.
Question 12
Not yet answered
Points out of 2.0
Not flaggedFlag question
Question text
After implementation, when an administrator monitors a new system for signs of trouble, logging all system failures, diagnosing the problem, and applying corrective action, s/he is carrying out:
Select one:
a.
Fault management
b.
Post-implementation control
c.
Production monitoring
Question 13
Not yet answered
Points out of 2.0
Not flaggedFlag question
Question text
When we monitor current activity and performance levels, anticipate future activity, and forecast the resources needed to provide desired levels of service, we are engaging in:
Select one:
a.
Stress testing
b.
Capacity planning
c.
Establishing a system baseline
Question 14
Not yet answered
Points out of 2.0
Not flaggedFlag question
Question text
When a new version of a system is installed, the prior release is archived or stored. Companies implement _____________ in order to track system releases, or versions. In this way, it is possible to return to an earlier revision of the system code.
Select one:
a.
Release management
b.
Version control
c.
Version tracking
Question 15
Not yet answered
Points out of 2.0
Not flaggedFlag question
Question text
For the most part, testing is a perfunctory act that satisfies the project sponsor, but can be avoided much of the time.
Select one:
a.
True
b.
False
Answer:
true and false
Explanation: