Answer:
It is called Borders..can also be drawn around paragraphs and pages..
please note, my working hours may be different than yours. please don't feel obligated to respond outside of your normal business hours unless necessary.
A statement "please note, my working hours may be different than yours. please don't feel obligated to respond outside of your normal business hours unless necessary." this means that more benefit to change to flexible work.
What is flexible work?Individual behavior describes the behaviors, responses, reactions, and ways in which a person behaves when they are in a certain situation. It consists of a variety of reactions to both internal and external stimuli. Individual habits and actions are frequently linked, either because of time restraints, resource accessibility, social connections, or biological inclinations. For instance, drinkers are more likely to smoke than non-drinkers, and physically unfit people are also less likely to make an effort to prepare meals at home.
Learn more about flexible work: https://brainly.com/question/29316477
#SPJ4
The term for an operator that may not evaluate one of its subexpressions is
Answer:
short-circuit
Explanation:
How could this code be simplified
Answer:
D
Explanation:
by using for loop because its repeating alot and stuff yk
What are the disadvantages of batch operation system
The computer operators should be well known with batch systems.
Batch systems are hard to debug.
It is sometime costly.
The other jobs will have to wait for an unknown time if any job fails.
Explanation:
Answer:
Disadvantages of Batch Operating System:
The computer operators should be well known with batch systems.Batch systems are hard to debug.It is sometime costly.The other jobs will have to wait for an unknown time if any job fails.Which of these is not a way of avoiding email fraud and scam?
Answer:
The third one definitely (If you aren't sure where it goes click it) Ur in college right
Explanation:
Use a method from the JOptionPane class to request values from the user to initialize the instance variables of Election objects and assign these objects to the array. The array must be filled.
To use the JOptionPane class in Java to request values from the user and initialize instance variables of Election objects and assign them to an array, you can follow the steps given in the image:
What is the JOptionPane class
The code uses JOptionPane. showInputDialog to show a message box and get information from the user. IntegerparseInt changes text into a number.
After completing a process, the elections list will have Election items, and each item will have the information given by the user.
Learn more about JOptionPane class from
brainly.com/question/30974617
#SPJ1
Choose the correct vocabulary term from each drop-down menu
Education that focuses on skills that can be used in the workplace is
Creating curriculum around learning goals established by the training or learning department is
The continued pursuit of knowledge for either personal or professional reasons 16
Learning that focuses on goals established by the learner is
Answer:
The answer to this question is given below in the explanation section.
Explanation:
Education that focuses on skills that can be used in the workplace is work-based learning.
Creating curriculum around learning goals established by the training or learning department is formal learning.
The continued pursuit of knowledge for either personal or professional reasons is lifelong learning.
Learning that focuses on goals established by the learner is informal learning.
Answer:
work-based learning.
formal learning.
lifelong learning.
informal learning.
Explanation:
Choose all that Apply: Which of the following steps should be performed by the CIS for creating a part dispatch for systemboard through Tech Direct?
a) Enter the customer's contact and email address into the primary contact fields when requesting a systemboard through TechDirect
b) Logging fusion ticket to request DPK via DDL
c) Access the customer's DDL account to retrieve DPK and activate the os for the customer
d) Verify the customer email address
Answer:
The steps that should be performed by the CIS for creating a part dispatch for system board through TechDirect are:
a) Enter the customer's contact and email address into the primary contact fields when requesting a system board through TechDirect
b) Logging fusion ticket to request DPK via DDL
c) Access the customer's DDL account to retrieve DPK and activate the os for the customer
d) Verify the customer email address
Explanation:
The four steps given above must be performed in the CIS if you want to create a part dispatch for the system board through TechDirect. TechDirect is a support system that enables one to manage all Dell technologies from a single location. After creating the part dispatch, the customer's contact and email address are entered into the primary contact fields to enable the verification of the customer's email address through the TechDirect.
A collection of code makes up which of the following?
O input
O output
O a program
O a device
Answer:
C. a program
Explanation:
in computers a code is 101101 aka a chain of codes
Hope that helps :) dez-tiny
Match the features of integrated development environments (IDEs) and website builders to the appropriate location on the chart.
Answer:
website builder
complex coding techniques and advanced programming languages.
Write a program using for loop (use days of the week as a sequence) to ask the user to enter the number of miles ran for each day of the week.
How many miles for Mon?
How many miles for Tues?
.................................
Count and display the number of days the user
1) ran less than 5 miles.
2) Ran between 5 and 10 miles ==> inclusive
3) Ran over 10 miles
Answer:
Explanation: ll[
Which of the following vendors offers the largest variety of editions for its operating system?
Answer:
Microsoft Windows offers the largest variety of editions for its operating system.
Choosing ideas and developing them is done during which step of the writing process
Answer:
prewriting.
Explanation:
Decide on a topic to write about and Brainstorm ideas about the subject and how those ideas can be organized.
Fara is a bit frustrated with trying to write computer programs. Which of the following might be helpful? A. systems software B. typing practice C. new hardware D. presentation software
Answer:
D
Explanation:
Presentation software is defined as computer programs designed to allow the user to present information in an engaging way such as with text, pictures, sound and video. PowerPoint is an example of a presentation software.
in an email to a client Luis is requesting that they follow up with him by phone at their earliest convenience which feature would luis want to use to provide his contact info
Answer:
A signature Block is the best of all. In some email programs for example outlook or yahoo mail you can design you own signature line for all emails.
Hope this helps.
The signature block is the best place to put this information. In an email program (outlook), you can design your own signature line that you can have in all emails.
Create a query that lists the total outstanding balances for students on a payment plan and for those students that are not on a payment plan. Show in the query results only the sum of the balance due, grouped by PaymentPian. Name the summation column Balances. Run the query, resize all columns in the datasheet to their best fit, save the query as TotaiBalancesByPian, and then close it.
A query has been created that lists the total outstanding balances for students on a payment plan and for those students that are not on a payment plan.
In order to list the total outstanding balances for students on a payment plan and for those students that are not on a payment plan, a query must be created in the database management system. Below are the steps that need to be followed in order to achieve the required output:
Open the Microsoft Access and select the desired database. Go to the create tab and select the Query Design option.A new window named Show Table will appear.
From the window select the tables that need to be used in the query, here Student and PaymentPlan tables are selected.Select the desired fields from each table, here we need StudentID, PaymentPlan, and BalanceDue from the Student table and StudentID, PaymentPlan from PaymentPlan table.Drag and drop the desired fields to the Query Design grid.
Now comes the main part of the query that is grouping. Here we need to group the total outstanding balances of students who are on a payment plan and who are not on a payment plan. We will group the data by PaymentPlan field.
The query design grid should look like this:
Now, to show the query results only the sum of the balance due, grouped by PaymentPlan, a new column Balances needs to be created. In the field row, enter Balances:
Sum([BalanceDue]). It will calculate the sum of all balance dues and rename it as Balances. Save the query by the name TotalBalancesByPlan.Close the query design window. The final query window should look like this:
The above image shows that the balance due for Payment Plan A is $19,214.10, while for Payment Plan B it is $9,150.50.
Now, in order to resize all columns in the datasheet to their best fit, select the Home tab and go to the Formatting group. From here select the AutoFit Column Width option.
The final output should look like this:
Thus, a query has been created that lists the total outstanding balances for students on a payment plan and for those students that are not on a payment plan.
For more such questions on query, click on:
https://brainly.com/question/30622425
#SPJ8
How does computer hardware and software work together?
Answer:
Computer software controls computer hardware which in order for a computer to effectively manipulate data and produce useful output I think.
Explanation:
The total number of AC cycles completed in one second is the current’s A.timing B.phase
C.frequency
D. Alterations
The total number of AC cycles completed in one second is referred to as the current's frequency. Therefore, the correct answer is frequency. (option c)
Define AC current: Explain that AC (alternating current) is a type of electrical current in which the direction of the electric charge periodically changes, oscillating back and forth.
Understand cycles: Describe that a cycle represents one complete oscillation of the AC waveform, starting from zero, reaching a positive peak, returning to zero, and then reaching a negative peak.
Introduce frequency: Define frequency as the measurement of how often a cycle is completed in a given time period, specifically, the number of cycles completed in one second.
Unit of measurement: Explain that the unit of measurement for frequency is hertz (Hz), named after Heinrich Hertz, a German physicist. One hertz represents one cycle per second.
Relate frequency to AC current: Clarify that the total number of AC cycles completed in one second is directly related to the frequency of the AC current.
Importance of frequency: Discuss the significance of frequency in electrical engineering and power systems. Mention that it affects the behavior of electrical devices, the design of power transmission systems, and the synchronization of different AC sources.
Frequency measurement: Explain that specialized instruments like frequency meters or digital multimeters with frequency measurement capabilities are used to accurately measure the frequency of an AC current.
Emphasize the correct answer: Reiterate that the current's frequency represents the total number of AC cycles completed in one second and is the appropriate choice from the given options.
By understanding the relationship between AC cycles and frequency, we can recognize that the total number of AC cycles completed in one second is referred to as the current's frequency. This knowledge is crucial for various aspects of electrical engineering and power systems. Therefore, the correct answer is frequency. (option c)
For more such questions on AC cycles, click on:
https://brainly.com/question/15850980
#SPJ8
The mean of a sequence of n numbers is m. If we split the sequence into two sequences of lengths n1 and n2 and compute their means m1 and m2, which of the following is TRUE?
The mean of a sequence of n numbers is m. If we split the sequence into two sequences of lengths n1 and n2 and compute their means m1 and m2, which of the following is TRUE?
The mean of a sequence of numbers is the average.
The true statement is: \(\mathbf{mn = m_1n_1 + m_2n_2}\)
The given parameters are:
\(\mathbf{Mean=m}\)
\(\mathbf{Size=n}\)
The mean of a dataset is calculated as:
\(\mathbf{Mean = \frac{Sum}{Count}}\)
So, we have:
\(\mathbf{m = \frac{Sum}{n}}\)
Multiply both sides by m
\(\mathbf{Sum = mn}\)
When the sequence is split into two, we have:
\(\mathbf{\sum x_1 = m_1n_1}\)
\(\mathbf{\sum x_2 = m_2n_2}\)
Where:
\(\mathbf{Sum = \sum x_1 + \sum x_2}\)
So, we have:
\(\mathbf{mn = m_1n_1 + m_2n_2}\)
Hence, the true statement is: \(\mathbf{mn = m_1n_1 + m_2n_2}\)
Read more about mean and averages at:
https://brainly.com/question/25421763
special purpose computer
Answer:
Special-purpose computers are designed for one specific task or class of tasks and wouldn't be able to perform general computing tasks. For example, a router is a special-purpose computer designed to move data around a network, while a general-purpose computer can be used for this task, as well as many others.
anyone know?????? help me ASAP
Answer:
build personal blog
Explanation:
Saving a file requires a secure mechanism such that the server is directly connected and receiving the uploaded file from your computer.
all others also require https except building a personal blog
HELP HELP ME PLEASE I WILL GIVE 50 POINT IF YOU ARE THAT I LOVE I WILL GIVE 75 POINT what will you invent if you have a opportunity to invent something that will change the world or your nation.
Answer:
a device that can convert carbon dioxide in the atmosphere to a form of power source
Which output device would a teacher use to show
a movie to the class? Check all of the boxes that
apply.
braille embosser
3D printer
speakers
projector
DONE
Answer:
projector
Explanation:
The output device that would be used would be a projector. From the available options, this is the only option capable of showing a movie to the class. A projector "projects" (in other words sends an image) the movie that was inputted into the machine onto a screen. This allows a video image to be shown on the screen which the entire class can see. Speakers only output audio, 3D printers output physical objects, and a braille embosser only outputs braille onto paper.
Answer:
prejector and speakers
Explanation:
bob is sending a message to alice. he wants to ensure that nobody tampers with the message while it is in transit. what goal of cryptography is bob attempting to achieve?
He wants to make certain that the communication through message is not tampered with while in transit. The integrity of cryptography is bob attempting to achieve.
What do you mean by message?
A message is a distinct unit of communication intended for consumption by some recipient or set of recipients by the source. A message can be conveyed via courier, telegraphy, carrier pigeon, or electronic bus, among other methods. A broadcast's content can be a message. A conversation is formed through an interactive exchange of messages. A press release is an example of a communication, which can range from a brief report or statement issued by a government body to commercial publicity material.
To learn more about message
https://brainly.com/question/25660340
#SPJ13
how do you fill different data into different cells at a time in Excel
The way that you fill different data into different cells at a time in Excel are:
Click on one or a lot of cells that you want to make use of as the basis that is needed for filling additional cells. For a set such as 1, 2, 3, 4, 5..., make sure to type 1 and 2 into the 1st two cells. Then pull the fill handle .If required, select Auto Fill Options. and select the option you want.How do you make a group of cells auto-fill?The first thing to do is to place the mouse pointer over the cell's bottom right corner and hold it there until a black + symbol appears. Drag the + symbol over the cells you wish to fill in while clicking and holding down the left mouse button. Additionally, the AutoFill tool rightly fills up the series for you.
Note that Excel data entering can be automated and this can be done by: On the Data tab, select "Data Validation," then click "Data Validation." In the Allow box, select "List." Enter your list items in the Source box, separating them with commas. To add the list, click "OK." If you wish to copy the list along the column, use the Fill Handle.
Learn more about Excel from
https://brainly.com/question/25879801
#SPJ1
Please Help!
I need good Anime to watch!
Answer:
attack on titan
kakegurui
kuroko's basketball
haikyuu
One piece
Mha
fruits basket
naruto
the great pretender
tokyo ghoul
Darling in the Franxx
Toradora
death note
Explanation:
Answer:
Hunter x Hunter
The Promised Neverland
Magi
Gurren Lagann (The second season isnt that good though)
My Hero Academia
Bleach
One Piece
Fairy Tail
Demon Slayer
Naruto
Haikyuu
Toradora (This one is alright if you like romance anime)
Thats all I can think of right now
Explanation:
Lossy compression means that when you compress the file, you're going to lose some of the detail.
True
False
Question 2
InDesign is the industry standard for editing photos.
True
False
Question 3
Serif fonts are great for print media, while sans serif fonts are best for digital media.
True
False
Question 4
You should avoid using elements of photography such as repetition or symmetry in your photography.
True
False
Lossy compression means that when you compress the file, you're going to lose some of the detail is a true statement.
2. InDesign is the industry standard for editing photos is a true statement.
3. Serif fonts are great for print media, while sans serif fonts are best for digital media is a true statement.
4. You should avoid using elements of photography such as repetition or symmetry in your photography is a false statement.
What lossy compression means?The term lossy compression is known to be done to a data in a file and it is one where the data of the file is removed and is not saved to its original form after it has undergone decompression.
Note that data here tends to be permanently deleted, which is the reason this method is said to be known as an irreversible compression method.
Therefore, Lossy compression means that when you compress the file, you're going to lose some of the detail is a true statement.
Learn more about File compression from
https://brainly.com/question/9158961
#SPJ1
Write a program that asks a user for 5 numbers. Provide a menu of options of 5 things that can be done with these numbers
Use a for loop to continually iterate through a series (that is either a list, a tuple, a dictionary, a set, or a string). This performs less like the for keyword seen in other programming languages and more like an iterator method used in other object-oriented programming languages.
How to write a program that asks a user for 5 numbers.?input = a ()
initial = int (a)
second = int and b = input() (b)
Third = int(c), and fourth = input ()
four = integer (d)
If a > b, a > c, or a > d,
print ('the largest number' + a),
and then elif a b, a, b > c, or b > d:
print ("the largest number")
elif b a> b or d > b or d > C:
print ("The greatest number is")
elif d >= a, b, or c:
print ('the smallest numbet is'+ d)
else:
num = 0
while num< 100:
num = num + 5
print(str(num))
print(’Done looping!’)
The complete question is : Write a program that asks the user to type in 5 numbers , and that outputs the largest of these numbers and the smallest of these numbers. So for example if the user types in the numbers 2456 457 13 999 35 the output will be as follows : the largest number is 2456 the smallest number is 35 in python ?
To learn more about loop refer to:
https://brainly.com/question/19344465
#SPJ1
Do you think that Amy should have done anything differently? What would you have done in her situation?
The excerpt shows that Amy should have done anything differently because talking to a person who is entirely is of taking much risk in her life.
How to explain the excerptSharing or exposing any of her personal information to an unkown is risking her life all ways. So it should be avoided. The person whom she met online is still know where Amy is living.
So Amy should have done some other thing like encouraging herself to find friends at school or may be she can talk with her teacher or school counselor or any of her family members.
Learn more about excerpt on:
https://brainly.com/question/21400963
#SPJ1
Comments should Your answer: rephrase the code it explains in English be insightful and explain what the instruction's intention is only be included in code that is difficult to understand be used to define variables whose names are not easy to understand
Answer:
(b) be insightful and explain what the instruction's intention is.
Explanation:
Required
Which describes a comment in options (a) to (d)
Comments are not meant to replace the original code but to explain what the code is meant to do; so that even if the code gets to a non-programmer, the person will understand what the code is all about.
From (a) to (d), only option (b) fits the above description.