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.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!!
When you insert a copy of Excel data into a Word document the data is __________ in the Word document
Answer:
I don't know if I get a chance to get through
According to the narrator of "EPIC 2015," what is the nature of the news in 2015? A. It is fed to a monitor in people's homes and must always be on O B. It is completely truth based and provided by the very best journalists C. It is created by apathetic journalists who only want to be paid. O D. It is computer-generated content tailored to a person's interests.
D - it is computer generated content tailored to a person's interests.
Explanation:
D
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:
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
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 :)❤
I need help please and thank you
Answer:
Explanation: For "BEST way to handle the situation," try Option 1, because it would possibly help them or make the Technical Support Representative do less work.
For "WORST way to handle the situation," Option 4 would be the best because you're basically just hanging up on the person.
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
x = 0
while x < 4:
print(x)
x += 1
Make it a for loop
Answer: Here you go :)
Explanation:
x = 0
for n in range(4):
print(x)
who wants to trade ro^lox accounts
A cola container is in the shape of a right cylinder. The radius of the base is 4 centimeters, and the height is 12 centimeters. What is the volume of the container? A. B. C. D.
Answer:
Volume of cylinder = 603.42 cm² (Approx.)
Explanation:
Given:
Radius r = 4 cm
Height = 12 cm
Find:
Volume of cylinder
Computation:
Volume of cylinder = πr²h
Volume of cylinder = (22/7)(4)²(12)
Volume of cylinder = 603.42 cm² (Approx.)
Answer:
It is B, also know as 192π cm3
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.
Having sound enhances your App, do you agree with this? Explain.
Answer:
Yes, it does.
Explanation:
I mean, having some sort of audio feedback is obviously useful for a user.
(If it's a media-content-viewer, of course you need sound)
We should discuss some cases here:
1. In case it's a game, sound enhances the experience of the virtual world, by creating what is called an "ambience", or the acoustical surroundings of the environment since you can perceive stuff without the need to look at it.
2. Other apps: It makes the app seem more friendly and comfortable to use, especially if partnered with an animation
how can you send and share a message information through a phone
Answer:
Through text message
Explanation:
Go to messages and select the text you want to share and save it to your clipboard then go to the person you want to send it to then hit the clipboard button and your text will be there.
Through text messages
Go to messages and select the text you want to share and save it to your clipboard then go to the person you want to send it to then hit the clipboard button and your text will be there!
Can someone tell me how to hit on a link on Brainly to see the answer
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);
}
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:
Using cell references enter a formula in B6 to calculate monthly payments for the loan described in this worksheet Omit the optional arguement use a negative value for pv
Answer:
= PMT(B4/B2, B2 * B3, B1)
Explanation:
The syntax to use is:
= PMT(Rate,NPER, PV)
To answer this question, the following assumptions will be made.
B1 = Present Value i.e. PV
B2 = Number of Payment Period i.e n
B3 = Duration (in years)
B4 = Rate
So, the formula to enter in B6 is:
= PMT(B4/B2, B2 * B3, B1)
The above formula will return the monthly payment in cell B6
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:
How do you access the
internet in your school and at home?
Which of the following statements represents a scientific bias?
Clean all containers to remove residue from the previous steps.
Use data from the previous steps because they show better results.
Make sure to follow every step in the procedure.
The scale needs to be calibrated to ensure accuracy.
Answer: Use data from the previous steps because they show better results
Explanation:
A scientific bias occurs when there's a deviation between the observations of a researcher and the accurate representation of data and results.
In this case, the use of data from the previous steps because they show better results will bring about a data bias as it'll lead to inaccuracies of the data being represented.
Brainliest for correct answer :)
a. X = A NOR B
b. X= NOT (A OR B)
c. X = A OR B
1 pts Question 5 Which of the following calculations would evaluate to 12? (36) + 2/2, 3* ((6+2)/2), 3* 6+2/2, (306+ 2)/2
Answer:
Could you seperate them if they are different answers? I'm lost, sorry!
Explanation:
What is the purpose of the website directory provided by the website host?
A. to look up user account information
B. to provide help and training for new customers
C. to store all of a website’s content files
D. to archive website usage logs
Answer:
mabye A
Explana
.
.
.
what is the deck of a suspension bridge called
Answer:
The main forces in a suspension bridge are tension in the cables and compression in the towers. The deck, which is usually a truss or a box girder, is connected to the suspension cables by vertical suspender cables or rods, called hangers, which are also in tension. I think this is the answer
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
A testing lab wishes to test two experimental brans of outdoor pain long each wiil last befor fading . The testing lab makes six gallon s of each paint to test. The resultare Shown to see how
Answer:
The answer is "[tex]\bold{Brand \ A \ (35, 350, 18.7) \ \ Brand \ B \ (35, 50, 7.07)}[/tex]"
Explanation:
Calculating the mean for brand A:
[tex]\to \bar{X_{A}}=\frac{10+60+50+30+40+20}{6} =\frac{210}{6}=35[/tex]
Calculating the Variance for brand A:
[tex]\sigma_{A}^{2}=\frac{\left ( 10-35 \right )^{2}+\left ( 60-35 \right )^{2}+\left ( 50-35 \right )^{2}+\left ( 30-35 \right )^{2}+\left ( 40-35 \right )^{2}+\left ( 20-35 \right )^{2}}{5} \\\\[/tex]
[tex]=\frac{\left ( -25 \right )^{2}+\left ( 25 \right )^{2}+\left ( 15\right )^{2}+\left ( -5 \right )^{2}+\left ( 5 \right )^{2}+\left ( 15 \right )^{2}}{5} \\\\ =\frac{625+ 625+225+25+25+225}{5} \\\\ =\frac{1750}{50}\\\\=350[/tex]
Calculating the Standard deviation:
[tex]\sigma _{A}=\sqrt{\sigma _{A}^{2}}=18.7[/tex]
Calculating the Mean for brand B:
[tex]\bar{X_{B}}=\frac{35+45+30+35+40+25}{6}=\frac{210}{6}=35[/tex]
Calculating the Variance for brand B:
[tex]\sigma_{B} ^{2}=\frac{\left ( 35-35 \right )^{2}+\left ( 45-35 \right )^{2}+\left ( 30-35 \right )^{2}+\left ( 35-35 \right )^{2}+\left ( 40-35 \right )^{2}+\left ( 25-35 \right )^{2}}{5}[/tex]
[tex]=\frac{\left ( 0 \right )^{2}+\left ( 10 \right )^{2}+\left ( -5 \right )^{2}+\left (0 \right )^{2}+\left ( 5 \right )^{2}+\left ( -10 \right )^{2}}{5}\\\\=\frac{0+100+25+0+25+100}{5}\\\\=\frac{100+25+25+100}{5}\\\\=\frac{250}{5}\\\\=50[/tex]
Calculating the Standard deviation:
[tex]\sigma _{B}=\sqrt{\sigma _{B}^{2}}=7.07[/tex]
Help!!!!!!
please
Who will give the answer I'll mark him/her as brainlist..
mr joel borrowed $126000 from the bank for 5 years and paid $17000 calculate the rate percent per annum that he had to pay the bank.
An example of software is a
Answer: false
Explanation: