Answer:
This is a characteristic of a reputable author
please someone help in this question
Answer:
i'm pretty sure its a.
Explanation:
good luck :)
Complete the Statement below :)
The keys to successful outsourcing are accountability, reporting, and [BLANK]
Answer:
The keys to successful outsourcing are accountability, reporting, and planning.
Explanation:
You need to plan in order to successfully outsource a market. I hope this helps, I am sorry if I am wrong.
Why do the spelling and grammar checkers in Word miss some errors?
Answer must include 3-5 sentences
Answer:
Word dose not always catch misspellings why? Its because its a computer program. the program has to run through algorithms (millions a second) and that makes a large margin for error. it could also be the fact that the misspelling is very uncommon so it dose not recognize it.
Explanation:
PLEASE HELP ASAP!!!!!!!
Is this statement true or false?
You can apply only one of these at a time: underline, bold, or italics.
true
false
Answer:
i am pretty sure that is false
Explanation:
Which data type is 1.2e3?
string
single
int
float
Just basic Python coding BTW :L
Answer:
Float, Floating point numbers go up to 3.402823466 E + 38
Explanation:
Janelle wants to research information about a local politician's recent public appearances. Which tool should she use for this?
A printed newspaper with a local news section.
A digital library that has a section on politics.
A physical library where the politician has appeared.
Search engines filtered to only show news sites.
Answer:
Search engines filtered to only show news sites.
Explanation:
A printed newspaper could have come from any time
A digital library barely gets updated
I'm pretty sure I saw those same books 3 years ago
Yeah you get the jig
What is the main difference between a search engine and a web browser?
A. Your computer only comes installed with a web browser.
B. You use a search engine to find your web browser.
C. You need to use a web browser to get to the search engine.
D. Web browsers are databases and search engines are indexes.
Answer:
c
Explanation:
You need to use a web browser to get to the search engine. The correct option is C.
What is web browser?A web browser is a piece of software that allows you to access and view web pages on the Internet.
A web browser is a software application that is used to access and display websites on the internet, whereas a search engine is a website or programme that allows users to search for information on the internet by typing in keywords or phrases.
To put it another way, a web browser allows users to view and navigate websites, whereas a search engine assists users in finding specific information within those websites or across the internet.
Although a web browser is commonly used to access a search engine, it is not the only method.
Thus, the correct option is C.
For more details regarding web browser, visit:
https://brainly.com/question/9776568
#SPJ7
HELP ASAP PLEASE!
What is the output?
if (x == 1):
print ("ONE")
else:
print ("TWO")
Answer:
50
Explanation:
When entering a function or formula in a cell, which is the first character
you must type? *
1 poil
the equals sign (=)
the plus sign (+)
a comma (1)
the letter f
Answer:
B
Explanation:
(Java)Convert the QuartsToGallons program to an interactive application. Instead of assigning a value to the number of quarts, accept the value from the user as input.
class QuartsToGallonsInteractive
{
public static void main(String[] args)
{
// Modify the code below
final int QUARTS_IN_GALLON=4;
int quartsNeeded=18;
int gallonsNeeded; int extraQuartsNeeded; gallonsNeeded=quartsNeeded/QUARTS_IN_GALLON; extraQuartsNeeded=quartsNeeded%QUARTS_IN_GALLON;
System.out.println("A job that needs " + quartsNeeded + " quarts requires " + gallonsNeeded + " gallons plus " + extraQuartsNeeded + " quarts");
}
}
import java.util.Scanner;
public class QuartsToGallonsInteractive
{
public static void main(String[] args)
{
Scanner scan = new Scanner(System.in);
final int QUARTS_IN_GALLON=4;
int quartsNeeded=0;
System.out.println("How many quarts do you need?");
quartsNeeded = scan.nextInt();
int gallonsNeeded, extraQuartsNeeded;
gallonsNeeded=quartsNeeded/QUARTS_IN_GALLON;
extraQuartsNeeded=quartsNeeded%QUARTS_IN_GALLON;
System.out.println("A job that needs " + quartsNeeded + " quarts requires " + gallonsNeeded + " gallons plus " + extraQuartsNeeded + " quarts");
}
}
I hope this helps!
To modify a program is to rewrite the program in another way.
In order to make the program an interactive program, we have to remove the following program statement:
final int QUARTS_IN_GALLON=4;
The above program statement assigns 4 to the variable QUARTS_IN_GALLON.
This means that:
Each time the program is run, the value of QUARTS_IN_GALLON is always 4.
Next, we replace the statement with:
Scanner input = new Scanner(System.in)
int QUARTS_IN_GALLON;
QUARTS_IN_GALLON = input.nextInt();
So, the complete modified program is:
class QuartsToGallonsInteractive{
public static void main(String[] args){
Scanner input = new Scanner(System.in)
int QUARTS_IN_GALLON;
QUARTS_IN_GALLON = input.nextInt();
int quartsNeeded=18;
int gallonsNeeded; int extraQuartsNeeded; gallonsNeeded=quartsNeeded/QUARTS_IN_GALLON; extraQuartsNeeded=quartsNeeded%QUARTS_IN_GALLON;
System.out.println("A job that needs " + quartsNeeded + " quarts requires " + gallonsNeeded + " gallons plus " + extraQuartsNeeded + " quarts");
}
}
Read more about interactive program at
https://brainly.com/question/15683939
Before her shift as a cashier at the grocery store, Carla pulls her hair back into a ponytail and makes sure her fingernails are neatly trimmed. What habit does Carla demonstrate with these preparations?
motivation
punctuality
personal hygiene and grooming
interpersonal skills
Answer:
C.) Personal Hygiene and Grooming
Explanation:
true or false a weighted inventory system is often tied into player advancement
Answer:tayfana
Explanation:true
who elso does their online school in their bed cause i do
Answer:
yeah same
Explanation:
I do
it just feels right
Choose the word that matches each definition. : processed facts, how the output is used for making decisions : action performed by CPU to convert input into output : raw facts, input
Input devices accept data in a form that the computer can use; they then send the data to the processing unit. The processor, more formally known as the central processing unit (CPU), has the electronic circuitry that manipulates input data into the information people want.
I hope this helps you:)
The processing of the output units is explained below.
What is a processing of output?The input device is used to give information to the computer. And these pieces of information are set to the CPU (Central Processing Unit) which analyses the information and send this to the storage devices.
After some time, from the storage, the desired information is sent to the output unit through the CPU.
More about the processing of the output link is given below.
https://brainly.com/question/25265909
#SPJ2
how are images encoded?
( don’t copy and paste please)
Answer:
Images are encoded using binary arrays. Where each Pixel is, an array of RGBA, Red, Green, Blue and Alpha is used to represent that pixels color. Now put that on a screen of 1920x1080, you have to do that 2,073,600 times to get a full image, of which all values are filled.
Explanation:
Micheal is the project manager in a company. He wants his organization to use technology for higher revenue and productivity. What should Micheals company do?
Answer:
For higher revenue, the mamagement of income, discounts and all financial matters whereby the use of technology can help by installing a
BUSINESS APPLICATION
Jim lost his job due to the replacement of robots in a manufacturing factory. As an ethical practice, what should the manufacturing factory do?
As an ethical practice, the manufacturing factory should provide alternative ____
to Jim.
please elp i will give you brainelst answer the question and answer please!!!!!!!!!!!!!!!!
I GIVE YOU BRAINELST 5 STARS AND HEART!!!!
Answer:
I'd so like one of the Presidents.
Explanation:
research some facts. make sure to use your resources. Put some facts on who their vice president was a stuff
please help in this question
Answer:
A loop statement is used to execute one of more statement depending on whether.
Blair is the director of information systems at a marketing firm. She creates a set of guidelines that dictate everything an employee must do on his or her computer before leaving for the evening. This situation relates to which of the following components of information system security?
A. Software
B. Data
C. People
D. Procedures
Answer:
data
Explanation:
Because i said so
Plz I’ll mark Brainliest
When programming, why should you frequently save your work?
O
to check for errors
O so your work won't get lost if you have a computer problem
O to distinguish your
project from other projects
O to keep your categories separated logically
I’m leaning toward B.
Answer:
It's B cuz if somehow the power went off your work won't be saved. So it's best to save your work frequently.
You listened to a song on your computer. Explain in 3-5 sentences if you used hardware or software.
Answer:
The answer to this question is given below in the explanation section.
Explanation:
When you have listened to music on your computer. You used both computer hardware and software. You used a hard drive as a hardware device that stored your song. And, software such as s media player that you used to play the song.
I hope this answer helps you.
To supply the multiple audio formats, which element is repeated inside the element?
A.
B.
C.
D.
Answer:
No answers so you can't expect someone to know the answer.
Explanation:
Because it doesn't make sense.
What is the primary function of NCEES? A. administering engineering examinations B. creating and amending ethical standards for engineers C. accrediting educational programs in the United States D. certifying engineering technologists and engineering technicians
RIGHT ANSWER ONLY
Answer:
NCEES is a national nonprofit organization dedicated to advancing professional licensure for engineers and surveyors. Learn more.
Explanation:
Answer:
A.
administering engineering examinations
Explanation:
SOMEONE PLEASE HELP ME OUT !!!!!!
Answer:
not completly sure but i believe its the one that says inform the coach of where the goalies weak area...
Explanation:
Track Ball
which past of the computer is responsible
for processing informatfón and making calculation
Answer:
central processing unit
How long do batteries on your mobile computer last before they can no longer hold a charge?
Advancements in technology have made the global marketplace more accessible. True O False
Answer:
I'd say true
Explanation:
Because techonolgical advancements have made the marketplace more reliable and more powerful than ever before. Hoep it helps
Answer:
true
Explanation:
this is because traders can show case their product through the internet.
there is easy acess of buying of stuffs at ones comfort zone .
transition of money is quicker
What is the power of 3 shch that it's power is 1/3 ?
Answer:
3/1-1
Explanation:
var1 = 1
var2 = 2
var3 = "3"
print(var1 + var2 + var3)
Explanation:
omg it's Python, I don't like it
I would say the answer is 33 or 6