Answer:
first are these options:if yes we should go with B
chemical change is one when no new substance is kind of formed.it is one which is not reversible
Which software helps you upload content for live streaming
OA OnlineStream
OB. Firewire
OC. PPLive
OD. Blogger
Answer:
a online stream i ting please mark brainilest
Explanation:
Which of the following would have the largest text on a web page?
Answer:
style=text-align: right
Explanation:
text-align is a CSS property having 5 types of values. Each of values define below.
left - Aligns content to left.
right - Aligns content to right.
center - Centers the content.
justify - Depends on the width of the content, it will align itself to both left and right
inherit - It specifies the the value of text-align should be taken from parent element.
Explanation:
lol
Discuss any five factors that hinder the application of computer application in business organization
Answer:
Many factors can cause inderdce to the application of computer application in any business organization
Explanation:
Various factors affect and hinder the use of computers in the business scenario such as Time and cost, that is business think that new and different computer application is a waste of time and money. lack of training of employees, most of the emptied are not properly trained and lack professionalism. Old and primitive software that cannot be replaced, due to the old tools and methodologies of the company the business may not feel the need to change. Risks of hacking and data leak, as new software, can contain hidden costs which may destroy or leak information or may be more vulnerable to risks. Low financial support, such as new startup or a low-paying corporation.If we increase the height of the pendulum, we will increase the potential energy in the system. What effect would this have on kinetic energy?
Kinetic energy will decrease by the same amount.
Kinetic energy will increase by the same amount.
Kinetic energy will not change.
Kinetic energy will increase by half the potential energy.
Answer:
yo I need points so I'm answering this sorry
Answer:
your kinetic energy will increase by the same amount
Explanation:
think of a yoyo or any weighted object on the end of a string imagine swinging it in a circle and putting your finger in it so it wraps around your finger the object spins faster as the string shortens
I hope this helped
How can HTML be used to express personal value?
Hypertext Markup language could be described as a computer language which is used to texts and documents used on web pages. With these capability, it offers a platform to make an impression.
Websites are avenues express ideas, views and motives. It serves as a platform to make one's voice heard. It also serves as a marketing platform to make sales and enhance business growth.
Therefore, Hypertext Markup language, markdowns and other computer languages are means of expressing personal values and development.
Learn more : https://brainly.com/question/22645163
Consider the following code:
x = "apple"
y = x
z = "banana"
print(x + " " + y + "\n" + 2)
Answer:
apple apple
banana
Explanation:
Given - Consider the following code:
x = "apple"
y = x
z = "banana"
To find - print(x + " " + y + "\n" + z)
It will print -
apple apple
banana
First will apple followed by '' '' that is space then y which is equal to x that is apple then followed by ''\n'' new line then banana.
So, The answer would be
apple apple
banana
Notation used -
'' '' represents space between two values
''\n'' represents new line
you must regularly do this on your computer to prevent a virus from infecting it
Answer; Install Anti-Virus/Malware Software. ...
Keep Your Anti-Virus Software Up to Date. ...
Run Regularly Scheduled Scans with Your Anti-Virus Software. ...
Keep Your Operating System Current. ...
Secure Your Network. ...
Think Before You Click.
Explanation:
i took the test
Answer:
Clean out unneeded folders, scan your pc with an anti virus, use a vpn, and download from trusted websites
Explanation:
while
norma
mean
cinta
to the user
a.) Define the term microcomputers.
Explanation:
Microcomputers are computers designed around a microprocessor, smaller than a minicomputers or a mainframes.
Hope it will help :)❤
define file in context of computer programming
In two to three sentences, describe some techniques you could use to save time when working with a spreadsheet.
Answer: Everything is neatly organized on a spreadsheet so that you can access information faster. You can use features like shortcuts and auto-fill for you to save time.
Explanation:
Given the following class code: public class RecurseSample { public static void main(String[] args) { System.out.println(recurse(3)); } public static int recurse(int n) { int total = 0; if (n == 0) { return 0; } else { total = 3 + recurse(n - 1); } return total; } } What values will be printed when this code is executed?
Answer:
The output of the given code is "9".
Explanation:
In this question, a class "RecurseSample" inside the class a "recurse" method is declared that holds that holds an integer variable as the parameter, and inside the method a total variable is declared and uses a conditional statement to check the n variable value that is equal to 0 if it is true it will return 0. In the else block it call the method and add value in the total variable, and returns its value. In the main method, the print method is used that prints the above method values.
What is the pencil tool in photoshop
Answer:
I think its to draw on the photo.
Explanation:
Answer:
draw
Explanation:
it opens the drawing menu
Distinguish between bit and byte?
By its simplest definition, a bit is just a smaller unit of information than a byte. ... There are eight bits in one byte of information. Alternately, and more commonly in modern connotations, bits (and their successively larger relatives, such as kilobits, megabits and gigabits) are used to measure rates of data transfer.
write 3 things that can't be done without technology. write your opinion?
Answer: Call a theater to get movie times, Use a phone book to find a company to do work around your house, and Park your used car on the street with a sign that says it’s for sale.
Explanation: my opinion is that it's fine to do each of those things without technology. Because technology is supposed to help the limited capacity of the human brain and improve things that make every day life quicker, easier, leaves more time to do something else.
Answer:
1) Filming, depending on the camera it is still technology that everyone uses on a daily bases with no hesitation for use.
2) Vehicles, I'm not sure if they are a type of technology but for this case lets just say they are. With vehicles we can get to places much faster then walking or taking a carriage.
3)Records, in this case music. Without records or anything of the sort we wouldn't exactly be able to listen to our favorite music at all times.
What is output by the code below?
print("Comp Sci")
print("Rocks")
Answer:
If this is python the output will be:
Comp Sci
Rocks
Explanation:
When you print something it will output that line. However, when you print something in python it automatically skips a line. For instance you told print Comp Sci. And then you asked python to print Rocks. Python will output those two things on two separate lines. Thus proving the answer is:
Comp Sci
Rocks
hope this helps!
Is brainly allowed because you don't Really learn from this..?
Explanation:
I don't know it's some time good and some times bad
Answer:
i bet ur like that one kid who tells the teacher that she forgot to collect the homework even tho u aint even do it
True or False
Explanation:
Which step comes last?
Gather data from the user.
Process the data.
Check for accuracy.
Output the result.
Answer: Process the data
Explanation: i took the test
Answer:
The answer is Check for accuracy
Explanation:
Which of the following statements is valid?SELECT InvoiceNumber, VendorNameFROM Invoices JOIN Vendors ON Invoices.VendorID = Vendors.VendorIDWHERE InvoiceTotal = MAX(InvoiceTotal)SELECT InvoiceNumber, VendorNameFROM Invoices JOIN Vendors ON Invoices.VendorID = Vendors.VendorIDWHERE InvoiceTotal = (SELECT MAX(InvoiceTotal))SELECT InvoiceNumber, VendorNameFROM Invoices JOIN Vendors ON Invoices.VendorID = Vendors.VendorIDWHERE InvoiceTotal IN (SELECT MAX(InvoiceTotal) FROM Invoices)All of the above
Correct Answer:
c.
SELECT InvoiceNumber, VendorName
FROM Invoices JOIN Vendors ON Invoices.VendorID = Vendors.VendorID
WHERE InvoiceTotal IN (SELECT MAX(InvoiceTotal) FROM Invoices)
Explanation:
All options only differ on the WHERE clause:
a: WHERE InvoiceTotal = MAX(InvoiceTotal)
Fails because aggregate functions (like MAX, COUNT, etc) have to be used on the SELECT clause.
b: WHERE InvoiceTotal = (SELECT MAX(InvoiceTotal))
Fails because the SELECT clause is incomplete.
c: WHERE InvoiceTotal IN (SELECT MAX(InvoiceTotal) FROM Invoices)
This one is correct, and returns the InvoiceNumber and VendorName register with the largest value on the InvoiceTotal field.
The concept of a logo with a constantly changing persona is contrary to the widely held belief that trademarks and visual identifiers should be absolutely fixed and used in a consistent manner. The _____________ logo changed the face, the idea, and the speed of graphic design; it played a major role in redefining visual identity in the electronic age. This logo anticipated the kinetic world of motion graphics soon to explode as cable television, video games, and computer graphics expanded the variety and range of kinetic graphic messages.
Answer:
Music Television (MTV).
Explanation:
The concept of a logo with a constantly changing persona is contrary to the widely held belief that trademarks and visual identifiers should be absolutely fixed and used in a consistent manner. The Music Television (MTV) logo changed the face, the idea, and the speed of graphic design; it played a major role in redefining visual identity in the electronic age. This logo anticipated the kinetic world of motion graphics soon to explode as cable television, video games, and computer graphics expanded the variety and range of kinetic graphic messages.
Music Television (MTV) is a 24-hour music cable channel that had its first live transmission in 1981.
How do you access the
internet in your school and at home?
In the Business world people are often measured by their???
A- soft skills
B- hobbies
C- iq
D- technical skills
Answer:
D
Explanation:
You need skills to succeed!!
3.Choose the correct container for sugar
A:bag of sugar
B:Can of sugar
Answer:
bag of sugarrrrrrrrrrr
Answer:
The answer is A. bag of sugar
You are driving on a highway in slippery road conditions, and your vehicle starts to skid toward
the right shoulder. You should
A: Keep your front wheels pointed straight ahead while you skid sideways off the road, and then
brake gently to a stop.
B: Take your foot off the gas pedal and steer your vehicle in the direction of the skid, even if it
means you will drive off the road.
C: Keep steering toward your lane on the road, even if you are skidding off the road sideways or
backwards.
When driving on a highway in slippery road conditions, and the vehicle starts to skid towards the right shoulder, then one should remove one's foot from the gas pedal and steer the vehicle in the direction of the skid even if it means driving off the road.
Safety in driving means following certain rules and patterns of driving to ensure the safety of everyone on the road. Road safety involves numerous dos and don'ts that a driver must follow while driving even in cases of an accident.
While driving in normal conditions, rules such as safe driving, no drinking, etc. are important to be remembered. But in cases of weather change, be it snowy, rainy, or stormy, there are extra precautions that one can take to ensure safety on the road. In cases of skidding, it is important to remember that it is more important to follow the direction of the skid rather than trying to move away. This also includes stopping any attempts to brake because when we skid, there is not enough friction between the road's surface and the tire of the vehicle. The safest way to safely navigate a vehicle on a slippery road is to steer the wheel in the direction of the vehicle.Therefore, the most important thing to remember is that when one skid while driving, it is best to go in the direction of the skid rather than try to avoid and drive away from it.
Learn more about driving wile skidding here:
brainly.com/question/4485351
I need help ASAP please
Answer:
The best way is 2 and the worst is 1
Explanation:
Answer:
3
Explanation:
because I think its the best way to resolve things,and there won't be any arguments.
A spreadsheet will complete a variety of mathematical formulas for the user.
True or false
Answer: True
Explanation:
A spreadsheet will complete any formula as long as its entered by the user
Answer:
True
Explanation:
A cell is the intersection of a row and a column, identified by a letter and number.
True or false
Answer: True
hello how are you
Answer: True hope it helps
Help!!!!!!
please
Who will give the answer I'll mark him/her as brainlist..
A video streaming website uses 32-bit integers to count the number of times each video is played. in anticipation of some videos being played more times than can be represented with 32 bits, the website is planning to change to 64-bit integers for the counter. which of the following best describes the result of using 64-bit integers instead of 32-bit integers? a. 2 times as many values can be represented. 32 times as many values can be represented. 2^32 times as many values can be represented. 32^2 times as many values can be represented. I know the answer is 2^32 but can someone explain it to me?
Answer:
2³² times as many values that can be represented
Explanation:
A 64 bit register can hold 2⁶⁴ different values, while a 32 bit register can hold 2³² different addresses
Therefore, a 64 bit can represent 2⁶⁴ ÷ 2³² = 2³² times as many values as can be represented by 32-bit
Therefore, the 64 bit can represent 2³² times as many values that can be represented by a 32 bit integer
Design a TestScores class that has fields to hold three test scores. The class should have a constructor, accessor and mutator methods for the test score fields, and a method that returns the average of the test scores. Demonstrate the class by writing a separate program that creates an instance of the class. The program should ask the user to enter three test scores, which are stored in the TestScores object. Then the program should display the average of the scores, as reported by the TestScores object.
Answer:
Answered below
Explanation:
class TestScores {
double test1;
double test2;
double test 3;
public TestScores (double test1, double test2, double teat3){
this.test1= test1;
this.test2 = test2;
this.test3 = teat3;}
//mutator
public setTest1(double test1){
this.test1 = test1;
}
//accessor
public double getTest1(){
return test 1;
}
//Write same accessors and mutators for test2 and test3
public double getTestAverage(){
double sum = test1+test2+test3;
return sum / 3;
}
}
class TestRun{
public static void main (String [] args){
TestScores scores = new TestScores(50.5, 40.0, 80.7)
int average = scores.getTestAverage();
System.out.print(average);
}
What is a conflict?
Contentment
Disagreement
Harmony
Peace-keeping
Answer:
conflict is a Disagreement