Answer:
Quality traits are important in many ways. A persons traits identifies them of how they treat you or how you might treat them. It is important to find good working people for the job. For example if one student is good at a specific task I might put them in that task or if another is good at stocking shelves or finding books I might put them in the library to help students find books. It is important as a supervisor to find people that listen and follow instructions not people that mess around and are unorganized. These qualities and traits are important to see the real potential of the employees. Finding the right people for the job will help the school and you as the supervisor to manage these employees. Making a application or employment sheet will help to find the right people making a sheet with some questions and have the potential employees fill it out to find their traits and skills.
Explanation:
Sorry I didn't have much background information on what you wanted me to write hope this works you can edit and change stuff though.
Also run this through Grammarly's plagiarism tester to see if it is plagiarism!
Click to review the online content. Then answer the question(s) below, using complete sentences. Scroll down to view additional
questions
Online Content Site 1
Why isn't a good idea to study in bed?
Answer:
yes.. it is not good.
Explanation:
because its can calm our mindy & sleep quickly.
Answer:
I think avoiding stress and something/ anything disturbing your health is an effective conflict. In my opinion avoiding stress and anything disturbing your health is bad because the more time you ignore it the worse it get's.
Explanation:
I got it right on Edg.
Proof:
Assume that x and y are boolean variables and have been properly initialized. !(x || y) || (x || y) The result of evaluating the expression above is best described as:
Answer:
The answer is "Always true "
Explanation:
Following are the program to this question:
#include <iostream>//header file
using namespace std;
int main()//main method
{
bool x=true;//defining bool variable x and assign value
bool y=false;//defining bool variable y and assign value
if(!(x || y) || (x || y))//use given condition with if block
{
cout<<"True";//print true message
}
else//defining else block
{
cout<<"false";//print false message
}
return 0;
}
In the above code two bool variable is declared, that hold ture and false, and used in the given expression with the condition statement, that checks the given value. In the code the logical gate OR gate that always print the true value.
(Java)Write a program that calculates and displays the conversion of an entered number of dollars into currency denominations—20s, 10s, 5s, and 1s. Example output: $452 converted is 22 $20s, 1 $10s, 0 $5s, and 2 $1s.
Answer:
Below!
Explanation:
This is the code I have. I am not sure what I am missing that it won't accept -
import java.util.Scanner;
class Dollars {
public static void main(String[] args) {
int numTwenties,numTens,numFives,numOnes,dollarAmount;
Scanner sc= new Scanner(System.in);
System.out.println("Please enter a dollar amount: ");
dollarAmount = sc.nextInt();
numTwenties = dollarAmount/20;
numTens = (dollarAmount - 20*numTwenties)/10;
numFives = (dollarAmount - (10*numTens + 20*numTwenties))/5;
numOnes = (dollarAmount - (10*numTens + 20*numTwenties + 5*numFives));
System.out.println(+ dollarAmount + " converted is" + numTwenties + " $20s, " + numTens + " $10s, " + numFives + " $5s, and " + numOnes + " $1s.");
}
}
This is what it is giving me -
Test CaseIncomplete
Dollars 598
Input598
OutputPlease enter a dollar amount: 598
598 converted is29 $20s, 1 $10s, 1 $5s, and 3 $1s.
Results
$598 converted is 29 $20s, 1 $10s, 1 $5s, and 3 $1s
Expected Output
$598 converted is 29 $20s, 1 $10s, 1 $5s, and 3 $1s
It's mainly the price measure with one currency against the other, even as rate changes, money through one country can get relatively weak or powerful in comparison with the other currencies, and the further program can be defined as follows:
Program Explanation:
Import package.Defining a class Conversion .Defining an integer variable "twenties, tens, fives, ones, amount, n".After defining a variable, a Scanner class object is declared that inputs value in it.In the next step, a conditional statement is declared that checks value and hold its calcuated value.At the last, a print method is declared that prints its value.Program:
import java.util.*;//import package
public class Conversion //defining a class Conversion
{
public static void main(String ar[])//defining a main method
{
int twenties, tens, fives, ones, amount, n;//defining an integer variable
Scanner obcdf= new Scanner(System.in);//creating Scanner class object to input value
System.out.println("Enter amount: ");//print message
amount = obcdf.nextInt(); //input integer value
n = amount; //holding innput value
if(amount > 20)//using if block that check amount value greater than 20
{
twenties = (int)(amount/20); //using twenties that divides amount value by 20 and hold its integer value
amount = amount % 20;// holding modules value in amount variable
}
else //defining else block
{
twenties = 0;//holding 0 in twenties variable
}
if(amount > 10)//using if that check amount value greater than 10
{
tens = (int)(amount/10);//using tens that divides amount value by 10 and hold its integer value
amount = amount % 10;// holding modules value in amount variable
}
else //defining else block
{
tens = 0;//holding 0 in tens variable
}
if(amount > 5)//using if that check amount value greater than 5
{
fives = (int)(amount/5);//using tens that divides amount value by 5 and hold its integer value
amount = amount % 5;// holding modules value in amount variable
}
else //defining else block
{
fives = 0;//holding 0 in fives variable
}
if(amount > 1)//using if that check amount value greater than 1
{
ones = (int) amount;//holding amount value in ones variable
}
else //defining else block
{
ones = 0;//holding 0 in ones variable
}
System.out.println("$"+n+" converted is "+twenties+" $20s, "+tens+" $10s, "+fives+" $5s, and "+ones+" $1s."); //print value
}
}
Output:
Please find the attached file.
Learn more:
brainly.com/question/4448370
A programmer has a need to round many numeric values to the nearest integer. Which of the following best explains the benefit of using a list as a data abstraction in this situation
Answer:
Keeping the numeric values in a list makes it easier to apply the same computation to every data element.
Explanation:
A list or array in programming is a data structure, that has the location for each item it holds indexed. It eliminates the need to constantly create a variable to compute items of the same data types.
The list can store items of the same data type and iterate over them to compute the same calculation on each of them.
Lists are values which are seperated by commas and populated within square brackets. They are mutable and values could be easily accessed, appended, deleted or replaced. Hence, the use of a list for data abstraction is beneficial in that the round function could be easily applied to all the values in the list.
Rounding the values in the list coukd be easily done using for loop which takes each value in the list one at a time, rounds them to the nearest integer and places them into another list.
Using the a python list comprehension thus:
Given a list of numeric Values :
my_list = [1.2, 1.4, 1.5, 1.7]
rounded_int = [round(x) for x in my_list]
Learn more : https://brainly.com/question/20533392
Linux implements _________ to determine how a user is to be authenticated and whether there are password policies associated with password databases.
Answer:
Pluggable authentication modules (PAM).
Explanation:
These are schemes that are seen to be used in API authentication. It is relyed on to provide high authentification protocool in any correct form it is seen to be in use. also its ability to grant access to each other within two people interface are reasons big user clients refer to it in most of their policies that deals with their working system passwords and their database passwords to most of their files. This is why the company in the context which is a big firm rely on it for its services.
Kerri is adding text and graphics to her presentation. She does this work in the _____. Normal (Slide) view Task pane Formatting toolbar Slide Sorter
Answer:
The answer to this question is given below in the explanation section.
Explanation:
The correct answer to this question is Normal View.
Kerri can add text and graphics to her presentation. She does this work easily in the Normal view of the slides. In normal view, you can edit your slide by slide and navigate with the thumbnail.
while other options are not correct because:
Task pan is used to show information about the current slide.
Formatting toolbar is used for formatting the contents in the slide
Slide sorter is a view that is used to see the thumbnail of all slides in your presentation to easily rearrange them.
A CD and a DVD are both secondary storage devices, explain to a friend the difference between both
Answer:
i dont have any friends to explain it to
Explanation:
how are web design & web development different from each other?
Answer:
Developers are people who build a website's core structure using coding languages, while designers are more visually creative and user-focused. Developers use their programming knowledge to breathe life into the designer’s creative vision.
You could think of developers as construction workers, and web designers as architects – both necessary, but different, skill sets.
I hope this helped :D
Explanation:
Most portable devices, and some computer monitors have a special steel bracket security slot built into the case, which can be used in conjunction with a:
Answer:
Instead of using a key or entering a code to open a door, a user can use an object, such as an ID badge, to identify themselves in order to gain access to a secure area. What term describes this type of object?
Explanation:
What are the most common forms of information?
Answer: web search
Explanation:
A student who might find digital learning challenging.
Digital learning exists mostly online, while traditional learning takes place in a classroom building.
Answer: it is "A"
|Likes meeting other students.|
Which scenarios are examples of students managing their time well? Check all that apply. A student studies while watching her favorite television shows. A student sets aside time to study every afternoon at his desk. O A student writes down some goals that she hopes to achieve in school. A student drafts a study schedule that includes breaks. A student uses her desk calendar to record the due dates for her homework assignments. O A student rushes through his homework while sending text messages to friends. 3). Intro
Answer:
b,c,d, and e
Explanation:
Hope this helps
Answer:
BCDE
Explanation:
EDG 2021
Which of these statements about tags is false?
Group of answer choices
Their font is center-aligned by default.
They serve as the label for a row or column.
They automatically display as the first row or column.
Their font is bold by default.
Answer:
LOL i don't even know
Explanation:
Select the correct answer
Which filter enhances the color contrast around the edges of an image?
A. Texture filters
B.Sharpen filters
C.Blur filters
D.Noise filters
Answer: C. Blur filters
Explanation:
The unsharp mask filters or blur filters can be used for professional color correction. This will adjust the contrast of the image. Edge details and may produce a darker and lighter line on all side of the edges. This helps in creating illusion or blur image giving a sharp contrast and sharper image.
So, the color answer C. Blur filters
Answer:
B, Sharpen Filters
Explanation:
i got it right lol
Write pseudocode for washing a car using at least five steps.
Answer:
Step 1: Prepare the Cleaner
Pour a capful of car wash cleaner into a bucket and fill it a little over halfway with tap water. Car wash soap is specially designed to clean a car's exterior surfaces without stripping off wax, and it is typically sold alongside wax and car-detailing products in stores. Toss the first sponge in the bucket to let it soak up water and cleaner.
Step 2: Use the Garden Hose First
Spray water all over the car, starting at the top and working down the body of the car.
Step 3: Wash the Roof
Wash the top of the car first by squishing most of the excess water out of the sponge, then begin washing. Rinse the top as soon as you finish to ensure that the cleaning product does not dry on your car's paint. Blot the excess water off with your chamois or a terry cloth towel.
Step 4: Wash the Car's Body
Wash the car's body in sections, one panel at a time. Spray each panel with the garden hose again before washing with the sponge and cleaner. Rinse immediately after washing.If the water is not drying too fast, complete one whole side of the car before drying. If the water is drying quickly, dry each panel as soon as you finish washing.
Step 5: Wash the Wheel and Tires
Spray the wheel and tire cleaner on the wheels and tires.Using the second sponge, a brush or a rag, rub the cleaner into the tires to remove any remaining road dirt.
Step 6: Drying Your Car
Check your product's label to see if it needs to be washed off with water or buffed with a clean rag to complete the project.
Can someone help me get spotify premium
Answer:
Yes just go to spotify and pay for spotify premium.
Explanation:
Answer:
Buy it, go to the app store or google play and it will surely pop up like a sign saying premium.
Explanation:This is so hard :/
Which tab in MS Word would you select to insert a shape into a document? Question 6 options: Insert Review View File
Answer:
Insert
Explanation:
Under the insert tab, shapes will be an option to put in under the illustrations category.
Answer:
um insert?
Explanation:
im assuming its insert bc you said "to insert a shape into a document" so yh
i hope this helped?
what does good time management mean
Answer:
When you are consistent with your work and not wasting time
Explanation:
BRAINLIEST!!! HELP!!! 20 PNTS!!
Which is the correct way to add a border color?
A. border-color(red);
B. border-color: red;
C. red: border-color;
D. border-color = red;
Answer:
The answer you are looking for is "B.) border-color: red"
HTML and CSS coding is fairly simple, but to assign a border color to a certain tag, you would write
Tag Name (without <>'s)
{
border-color: red
}
Remember that your border color will affect all of the tags mentioned in this command.
What are some legal issues that can arise from the use of all social media?
Answer:
CopyrightDefamationCyberbullyingExplanation:
The first issue, that I would like to explain is Copyright. If you are imposing as a company on Social Media with a real name that is Copyrighted, the company will file a DMCA takedown notice which is the Digital Millennium Copyright Act
. Which can result in your Social Media being taken down, or by getting a fine, sued or even jailtime.
The second issue is Defamation, what Defamation is basically spreading false information about a company / business in real or online that hurts a companies reputation. If you commit this crime online you can face a lawsuit or even jailtime for one year.
Thirdly, cyberbullying. This is illegal in most states in the US. Cyberbullying is a serious matter and depending on your states laws can be charged with criminal harassment.
Sources:
Quora: (Website)
Miclaw: (Website)
Statista: (Website)
what is wrong with this picture?????
“you got a tight little-“
uhm y’know everything is wrong with it terrifying really is uhm but yeah.
oh god that leg tho
help plz (will give brainliest)
Answer:
The answer to this question is given below in the explanation section.
Explanation:
This is the python program in the question that is:
def sum(n1,n2):
n=n1+n2
return n
The question is: write a function CALL that displays the return value on the screen.
So, the correct program is written below:
*********************************************************************
def sum(n1,n2):# it is function that define sum
n=n1+n2 # variable n that store the result of n1 and n2
return n # return the result
print(sum(3,5))# call the sum function with parameter 3 and 5 , it will print 8
print(sum(4,101))
# call the sum function with parameter 4 and 101 it will print 105
********************************************************************************
you can also store the sum result into another variable, because this function return the sum. So, you can store that return value into another vairable and using the print function, to print the value of this variable such as:
*****************************************************************************
def sum(n1,n2):# it is function that define sum
n=n1+n2 # variable n that store the result of n1 and n2
return n # return the result
result= sum(6,9) # store the sum result into another variable i.e result
print(result)# print the result variable value
*****************************************************************************
Which strategies for effective presentations is Ian using in his opening? Check all that apply.
using a hook in his opening
detailing the speech’s objectives
communicating all the major details of the speech
engaging with his audience by asking them questions
letting his audience know what to expect
Answer:
A. using a hook in his opening
B. detailing the speech’s objectives
E. letting his audience know what to expect
Explanation:
Opening his speech using a quotation is a strategy of using a narrative hook, or simply hook, by Ian. Giving a grand and enticing opening is what makes an audience to pay attention and listen to what the speaker has to say in his speech. So, first strategy used by Ian is using a hook in his opening.
Another strategy used by Ian is giving objective details of his speech. By outlining what he will be covering in his speech, Ian is letting his audience know what to expect from the speaker and his speech, and also gave details of his speech.
So, option A, B, and E are correct.
Answer:
A, B , E !
Explanation:
What is the first thing animators need to determine when beginning a project?
a Editing locations
b Length of the film or project
c Setting
d Characters
Answer:c
Explanation:
Kali, a Python programmer, is using the turtle module to write the word “hello.” Which code should she use to indicate the location to begin writing the word?
Answer:
c
Explanation:
Read the following scenario. How might Sarah correct successfully complete her task?
To permanently remove a file from her computer, Sarah doubled-clicked on the My Computer icon and searched for her
file under the “Uninstall or change a program" menu option. A
Answer:
Explanation:
A: To permanently remove a file from her computer, Sarah doubled-clicked on the My Computer icon and searched for her file under the “Uninstall or change a program” menu option.
or
b: empty the recycle bin : You can permanently delete a program file installed in the computer by following the procedure in option A. The option above will take you to the control panel and you'll be able to select the program you'd want to permanently remove. If you had initially deleted a file like a picture or a document or anything else that you necessarily do not need, it will go to recycle bin. You can head over there and select the Empty the Recycle Bin option to permanently delete the file.
Noodletools is one of the Online databases available at the BLA library
website. I can print a copy and/or export a copy of my citations from
Noodletools.
True
False
Answer: true
Explanation:
Which is the most recent version of Microsoft Windows?
Windows 10
Windows NT
Windows Service Pack 2
Windows Longhorn
Answer:
Windows 10
Explanation:
Answer:
Windows 10
Explanation:
Windows 10 was released in 2015 while other are old
What is a frame injection attack in a wireless network?
A. A hacker inserts a forged frame during data transmission.
B. A hacker creates a botnet to flood a particular website.
C. A hacker sniffs data packets from a data transmission.
D. A hacker deletes frames during a data transmission.
The answer is A.
Answer:
A.Un hacker introduce un cadru fals în timpul transmiterii datelor.
Explanation:
Fill in the blanks : To store 3 character a computer occupies...................bytes memory space
Answer:
Umm was there supposed to be a picture????
Explanation:
Hope you have a wonderful Christmas Eve time with your family!!❄️
Eight bits are called a byte. One byte character sets can contain 256 characters. The current standard, though, is Unicode, which uses two bytes to represent all characters in all writing systems in the world in a single set.
What is memory space?Memory refers to the location of short-term data, while storage refers to the location of data stored on a long-term basis. Memory is the power of the brain to recall experiences or information.
Memory is most often referred to as the primary storage on a computer, such as RAM. Memory is also where information is processed. It enables users to access data that is stored for a short time.
Learn more about Memory here,
https://brainly.com/question/23423029
#SPJ2