Answer:
The Microsoft Office System can help the healthcare industry to function more efficiently and cost-effectively, according to Hashem, because the ever-increasing volume of healthcare information will be available anytime, anyplace and will be easier to manage and act on.
The Microsoft Windows features can help medical personnel's to be able to access EMR systems, work with a lot of devices and link with intensive care unit, etc.
What does Microsoft Windows features offers?The use of Microsoft Windows features is one that can help with a lot of h features that one can be able to use to optimizes apps in any desktop modes.
Conclusively, the use of these features by medical field can be effective as it will hep one to be able to access EMR systems with ease, work with with a lot of devices and link up with other providers to know if they are in for intensive care unit, home visit, etc.
Learn more about Microsoft Windows from
https://brainly.com/question/1594289
#SPJ2
For the Python program below, will there be any output, and will the program terminate?
while True: while 1 > 0: break print("Got it!") break
a. Yes and no
b. No and no
c. Yes and yes
d. No and yes
e. Run-time error
What data types should the following data be, Number or String?
The today's high temperature
Number
String
It should be number because people usually messure temprature in interger form. So it would be more effeicient to use number.
(1) Prompt the user for an automobile service. Output the user's input. (1 pt) Ex: Enter desired auto service: Oil change You entered: Oil change (2) Output the price of the requested service. (4 pts) Ex: Enter desired auto service: Oil change You entered: Oil change Cost of oil change: $35 The program should support the following services (all integers): Oil change -- $35 Tire rotation -- $19 Car wash -- $7 If the user enters a service that is not l
Answer:
In Python:
#1
service = input("Enter desired auto service: ")
print("You entered: "+service)
#2
if service.lower() == "oil change":
print("Cost of oil change: $35")
elif service.lower() == "car wash":
print("Cost of car wash: $7")
elif service.lower() == "tire rotation":
print("Cost of tire rotation: $19")
else:
print("Invalid Service")
Explanation:
First, we prompt the user for the auto service
service = input("Enter desired auto service: ")
Next, we print the service entered
print("You entered: "+service)
Next, we check if the service entered is available (irrespective of the sentence case used for input). If yes, the cost of the service is printed.
This is achieved using the following if conditions
For Oil Change
if service.lower() == "oil change":
print("Cost of oil change: $35")
For Car wash
elif service.lower() == "car wash":
print("Cost of car wash: $7")
For Tire rotation
elif service.lower() == "tire rotation":
print("Cost of tire rotation: $19")
Any service different from the above three, is invalid
else:
print("Invalid Service")
A loss of __________ is the unauthorized disclosure of information.
a) authenticity
b) integrity
c) confidentiality
d) reliability
Answer:
I believe its confidentiality
Explanation:
confidentiality means the state of being kept secret or private
A loss of confidentiality is the unauthorized disclosure of information. The correct option is c).
What is confidentiality?Confidentiality is a set of rules or a promise that limits access to specific information. There aren't enough boundaries in confidential information. One shouldn't give your information to random people, but you also shouldn't give it to people close to you because not everyone is trustworthy.
One should only give out one's information when it is absolutely necessary, which is if you are. Unless there is a compelling reason not to, request consent to share information.
Unless it is going to hurt you or another person, a counselor will keep all of the information you give them confidential. When a detective keeps all crime-related clues and information confidential and hidden from civilians.
Therefore, the correct option is c) confidentiality.
To learn more about confidentiality, refer to the link:
https://brainly.com/question/15144094
#SPJ5
Guys I’m honestly so screwed and i Don’t have any time left True and false
Answer:
true
false
false
false
true
true
true
Explanation:
I did this off my knowledge I hope its right.
Amed is utilizing a feature that will use two tables. The first table contains a primary key matched to a foreign key in the second table. The query results will include all entries from the first table. Which feature is he using?
left outer join
right outer join
self join
inner join
Answer:
left outer join
Explanation:
what does MAR stand for?
Order the steps to use a logical argument as a rule type.
(Click New Rule.)
(Use a formula to determine)
(Click Conditional Formatting)
(Click the Home tab, then click )
(the Styles group)
Answer:
Click home tab, click conditional formatting, click new rule, use formula to determine
Answer:
1. Home Tab
2. Conditional Formatting
3. New Rule
4. Formula
Explanation:
Just did it on Edge 2021
Plz click the Thanks button!
<Jayla>
describe source code escrow
Answer:
Source code escrow is the deposit of the source code of software with a third-party escrow agent.
Describe how smartphones communicate. List and describe four popular types of messages you can send with smartphones. Write one well-written paragraph and answer the above question to earn 10 points.
The way that smartphones communicate is that people connect with each other and with businesses has been changed by mobile messaging. However, users and businesses can choose from a variety of mobile messaging types.
The Kinds Of Mobile Messaging are:
SMS & MMS MessagingPush Notifications.In-App Messages.RCS.What is the messaging about?Brief Message Service (SMS): One of the most popular types of mobile communications is SMS. A basic text message sent via a cellular signal is known as an SMS, or short messaging service.
SMS is completely text-based and has a character restriction of 160. Users in the United States who don't have an unlimited messaging package pay cents per message.
Therefore, in Notifications through Push: It's possible that you mistakenly believe that the thing that's flashing on your cell phone's screen is a text message. Similar to SMS messages, push notifications are pop-up windows that appear while you're using your phone or on the lock screen rather than in your inbox with other texts.
Learn more about Mobile Messaging from
https://brainly.com/question/27534262
#SPJ1
2. Which is not part of the Sans Institutes Audit process?
Help to translate the business needs into technical or operational needs.
O Deler a report.
O Define the audit scope and limitations.
O Feedback based on the
Answer:
Help to translate the business needs into technical or operational needs. This is not a part.
Explanation:
Capital budgeting simply refers to the process that is used by a business in order to determine the fixed asset purchases that is proposed which it should accept, or not. It's typically done in order to select the investment that's most profitable for a company.
Some of the capital budgeting processes include:
Identification and analysis of potential capital investments.
Application of capital rationing
Performing post-audits
It should be noted that developing short-term operating strategies is not part of the capital budgeting process.
Learn more about investments on:
https://brainly.com/question/15105766
#SPJ2
What is a software? 2 sentences please, I'll mark u as brailiest
Answer:
Computer software, or simply software, is a collection of data or computer instructions that tell the computer how to work. This is in contrast to physical hardware, from which the system is built and actually performs the work.
Explanation:
7.4.8: Keeping Count
Code hs
Will give brainliest for correct answer
Using the knowledge of computational language in python we found that this code can be written as:
The code can be found in the attached image.
The python code can be writtendef count_occurrences(e, d):
counter = 0
for checker in e:
if (checker == d):
counter= counter + 1
return counter
print (count_occurrences("elephant", "e"))
This is the python code for a specific character count, and the count can vary.
See more about python at brainly.com/question/18502436
#SPJ1
which tool helps a project manager identify the task that have been completed and the ones that are still outstanding
A.heyspace
B.kezmo
C.timeline
D.milestone
Answer:
timeline please make me branliest
The tool that helps a project manager identify the task that have been completed and the ones that are still outstanding is timeline.
What is a timeline?This is known to be a table that state out the key events for successive years and one that occurs in a specific historical period.
The tool that helps a project manager identify the task that have been completed and the ones that are still outstanding is timeline.
Learn more about timeline from
https://brainly.com/question/24508428
#SPJ2
Codehs 9.4.6 word counts
The amount of words in a document or passage of text is referred to as the word count.
Why is word count important?When a manuscript must keep inside a specified amount of words, word counting may be required. This may be especially true in education, judicial procedures, media, and advertising.
The word count is significant since it allows you to choose your readers. For example, if you create a novel that is 100,000 words long, there will inevitably be some readers who will find it unsuitable (due to the word length).
Learn more about word count:
https://brainly.com/question/31310672
#SPJ1
Select the correct answer.
Alan wants to retouch some of his photographs before he sends them to a client. What will the Liquify filters help him achieve?
A. changes in color tones
B. addition of lighting effects
C. distortions of organic forms
D. copying of elements in an image
E. increased or decreased contrast
λ
Answer:
Explanation:
D
Distortions of organic form liquify filters is the thing which will help Alan in achieving it. Thus, the correct option is C.
What are liquify filters?The Liquify filter are the options which lets us push, pull, rotate, reflect, pucker, and bloat any area of an image on the adobe photoshop. The distortions which we create through this can be subtle or drastic, this makes the Liquify command a powerful tool for the purpose of retouching images as well as creating artistic effects on it.
Distortion filters are generally used to change the shape of layers, twisting, and pulling them in different directions in a document. There are 27 different distortion filters available which include Black hole. Black hole distorts an image by causing part of it to disappear from it into the specified center point o the image, bowing the top, bottom, and sides towards inward.
Therefore, the correct option is C.
Learn more about Liquify filters here:
https://brainly.com/question/8721538
#SPJ2
A ________ keeps your computer safe by determining who is trying to access it. gateway hub firewall switch
Answer:
firewall
Explanation:
a fire wall keeps unwanted hackers and viruses out of a computers system
What will be printed on the screen? IF 5 > = 10 THEN PRINT “ Hello Joe” END IF
Answer:
Nothing if that's all the question is.
if all else is constant, which of the following results in an increase in the probability of a type ii ii error?
The likelihood of just a type two error will decline as size of the sample is raised.
What exactly are software bugs?Defects are issues or flaws in the open-source software might cause unusual behavior. Even degreed engineers are capable of making those blunders. Debugging is the process of resolving flaws, sometimes referred to as faults or glitches in programming.
What are an example and an error?The discrepancy seen between measured versus actual values might be used to define an error. For instance, if both operators are using the same measuring tool. It's not required for two operators to provide outcomes that are identical.
To know more about Error visit:
https://brainly.com/question/29499800
#SPJ1
What is your biggest concern when it comes to purchasing a used phone or laptop?
Answer:
quality
Explanation:
if i know about the phone or laptop quality and quantity then i can know which is important if i buy.
i can give you example by laptop. For example i want to get buy laptop. i should know about the quantity and quality. then if i choose quantity i can buy so many laptops if they are more than 3 laptops and i get it in low price. then i take it and i try to open the laptops for some other thing to do but they cant opened so it means it has lowest quality.
and if i choose the quality. may be i can't buy more than 1 laptops but the qulaity of the laptops is high so when i open the laptop it opened
Notequality is the superiority or the quality level of a things.
quantity is the abundance or the quantity level of a thing
Multiple Choice: We have been assigned the task of developing a software testing tool (tester) that can assess reachability of statements in a program. Namely, given a program and a statement x in the program (line in the code), the tester should produce a sequence of inputs that demonstrates that the program can reach statement x, or declare that statement x is not reachable under any input sequence. What should we respond to the manager who assigned this task
Answer:
A. There is no algorithm to decide whether this can be done or not.
Explanation:
We should respond to the manager who assigned this task that there is no algorithm to decide whether this can be done or not. This is because there are many unknowns with the program that is provided. There are various programming languages and each one has its own structure and requirements in order to test them. Also, each function is created differently with different inputs that are necessary and different algorithms used. It is impossible to design a single algorithm that works to test every single provided program. That is why testers have to create custom test cases for each function.
Do you think the divide will fade in time. Write your opinion.
Hello. Your question is incomplete and without context, which makes it impossible for it to be satisfactory and satisfactory. However, I will try to help you in the best possible way.
For you to have an opinion on whether the division may disappear over time, you must analyze the composition of that division and how it was created, based on this analysis, you can reflect on whether the composition of the division in the environment in which it is located is likely to be temporary, or if it is impossible to determine the period of time for which it will remain active.
headings are important for visual impact and readability. which of the following sentences about headings are true? check all that apply. documents may contain main headings, subheadings, and category headings. headings interfere with the flow of a document. headings should always be in boldface.
The sentences that are true about the heading are documents may contain main headings, subheadings, and category headings. The correct option is a.
What are headings?A heading is a word, phrase, or sentence that appears at the start of a written section and describes its subject. A title and a header have many similarities.
A heading is comparable to a caption, which is a line that describes a picture in brief. Headings assist writers in organizing material and aid readers in understanding it. A document's headings make it easier to read and skim by giving brief summaries or reviews.
Therefore, the correct option is a. document may contain main headings, subheadings, and category headings.
To learn more about headings, refer to the link:
https://brainly.com/question/28617426
#SPJ1
Hiya people. I am a game developer and I need an idea for a new game. If you have any ideas, pls feel free to tell me. Best idea gets brainliest.
Answer:
A better RPG game all the one that are existing are the same dull thing
Explanation:
Answer:
There are many ideas you can get for games but now-a-days action games are getting more fame than others such as fortnite, freefire, pubg etc. I prefer you to make a game that is relatated to action or adventure. You can make it related to zombie hunting, or online fighting games, or some adventurous games like tomb raider.
where can i learning cybersecurity for free
Answer:
You can learn cybersecurity for free on Coursera. They offer 90 cybersecurity courses from top universities and companies to help you start or advance your career skills in cybersecurity. You can learn online for free today!
Explanation:
various types of mouse pointer
Answer:
Text Pointer
Busy Pointer
Link Pointer
Precision Pointer
Standard Pointer
Help Pointer
Background Busy Pointer
7. A puzzle game featuring falling bricks which need to be3 organized on the screen describes which of the following very popular games from the 80s?
a) Tricks
b) Tetris
c) Sonics
d) Bricks
Answer:
Tetris
Explanation:
Which of the following tells a program when to perform certain actions?
A function
A party
An event
A conditional statement
The one that tells a program when to perform certain actions is the conditional statement
for better understanding, let us explain what a conditional statement means
A conditional statement in computing is simply known as a type of a statement that decides its decision made based on an expression with the use of blocks of code to execute it. A condition is often referred to as a logical or comparison term in a conditional statement that controls the execution. The condition is either true or false, yes or no, when etc.It is a conditional because there is a when to do it and if not done by that time, it won't workfrom the above, we can therefore say that the answer The one that tells a program when to perform certain actions is the conditional statement is correct
learn more about conditional statement in computing from
https://brainly.com/question/18746429
Answer:
An event (C)
Explanation:
I took the test and the expert verified answer is wrong.
you dont believe me. its true
State three (3) benefits of using the internet
Answer:
Entertainment for everybody Social network Inexhaustible Educationall foreign language results should be rated as fails to meet. True or false?
All foreign language results should be rated as fails to meet. This statement is true. Thus, option (a) is correct.
What is languages?
The term language refers to the spoken and written. The language is the structure of the communication. The language are the easily readability and understandability. The language are the component are the vocabulary. The language is the important phenomenon of the culture.
According to the languages are to explain the all the foreign languages are to learn in the study in the learning habits. But there is not the easy to learn. There are the must easy to the interest of to learn foreign languages.
As a result, the foreign language results should be rated as fails to meet. This statement is true. Therefore, option (a) is correct.
Learn more about on language, here:
https://brainly.com/question/20921887
#SPJ1