Answer:
She will type her name in the Footer
Explanation:
To answer this question, I will assume Sharon is using the Microsoft Office PowerPoint package to handle her presentation.
In PowerPoint, the footer helps users to add names or any other details on every slide.
To do this:
Go to INSERT in the menu barThen, go to Text menuSelect Header & Footer to open the boxCheck the Footer optionEnter the text in the provided text box(This is where Sharon will enter her name)Lastly, click Apply to All to effect the changesIn 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:
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
What is a conflict?
Contentment
Disagreement
Harmony
Peace-keeping
Answer:
conflict is a Disagreement
who wants to trade ro^lox accounts
How do you access the
internet in your school and at home?
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
.
.
.
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.
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
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:
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!!
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
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!
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 :)❤
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
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 pencil tool in photoshop
Answer:
I think its to draw on the photo.
Explanation:
Answer:
draw
Explanation:
it opens the drawing menu
Help!!!!!!
please
Who will give the answer I'll mark him/her as brainlist..
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.
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
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);
}
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.
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
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.
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)
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
Brainliest for correct answer :)
a. X = A NOR B
b. X= NOT (A OR B)
c. X = A OR B
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:
Can someone tell me how to hit on a link on Brainly to see the answer
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