How can you crop a photo in PowerPoint?

Answers

Answer 1

Answer:

Yea

Explanation:

jus click on the image and it should give you the option to crop it :)

Answer 2
Yes by clicking on the picture and selecting crop image

Related Questions

Java Homework:(The Person, Student, Employee, Faculty, and Staff classes) Design a class named Person and its two subclasses named Student andEmployee. Make Faculty and Staff subclasses of Employee. A person has a name, address, phone number, and email address. A student has a class status (freshman, sophomore, junior, or senior). Define the status as a constant. An employee has an office, salary, and date-hired. Define a class named MyDate that contains the fields year, month, and day. A faculty member has office hours and a rank. A staff member has a title. Override the toString method in each class to display the class name and the person's name.
class Person{
//A person has a name, address, phone number, and email address.
String name;
String address;
String phone;
String email;
}
class Student extends Person{
//A student has a class status
//(freshman,sophomore, junior, or senior).
//Define the status as a constant.
final int freshman =1;
final int sophomore =2;
final int junior=3;
final int senior=4;
int status=freshman;
}
class Employee extends Person{
//An employee has an office, salary, and date hired.
String office;
double salary;
java.util.Date dateHired;
}
class Faculty extends Employee{
//A faculty member has office hours and a rank.
String officeHours;
String rank;
}
class Staff extends Employee{
//A staff member has a title
String title;
}
public class ex112{
}
The outline is given above. Fill in between brackets to finish! Thank you :)

Answers

Answer: Wait, so what is the question exactly..?

write a program that first defines three string objects called firstName, middleName, and lastName which contains your own first, middle and last name separately. If you do not have middle name, then make up one. Then try to generate a new user name for you by using your first letter of your first name(captilized), first letter of you middle name (Captilized), plus all letters in your last name, add a random number between (1 to 100) to the your new user name. Here is an exampl: Name: John blake adams then the user name generated by your program coulde be: JBadams23

Answers

Answer:

Written in Python

import random

firstName = "Charles"

lastName = "Dawson"

middleName = "Rutherford"

pwd = firstName[0] + lastName[0]+middleName+str(random.randint(1,101))

print(pwd)

Explanation:

This line imports random library into the program

import random

The next three lines initializes the name of the user

firstName = "Charles"

lastName = "Dawson"

middleName = "Rutherford"

This line generates the password

pwd = firstName[0] + lastName[0]+middleName+str(random.randint(1,101))

This line prints the generated password

print(pwd)

Part 1 Create a program that asks the user for a temperature in Fahrenheit, and then prints the temperature in Celsius. Search the Internet for the correct calculation. Look at Chapter 1 for the miles-per-gallon example to get an idea of what should be done.

Part 2 Create a new program that will ask the user for the information needed to find the area of a trapezoid, and then print the area.

Part 3 Create your own original problem and have the user plug in the variables.

IN PYTHON

Answers

Answer:

Written in Python

import math

#1. Temperature Conversion

degreeF = float(input("Degree Fahrenheit: "))

degreeC = (degreeF - 32) * 5/9

print("Degree Celsius: "+str(round(degreeC,2)))

#2. Area of Trapezoid

Base1 = float(input("Base 1: "))

Base2 = float(input("Base 2: "))

Height = float(input("Height: "))

Area = 0.5 * (Base1 + Base2) * Height

print("Area: "+str(round(Area,2)))

#3. Addition of Two Numbers

Num1 = float(input("Number 1: "))

Num2 = float(input("Number 2: "))

print("Result: "+str(Num1 + Num2))

Explanation:

This line imports the math library

import math

Program 1 starts here

#1. Temperature Conversion

This line prompts users for input in degree Fahrenheit

degreeF = float(input("Degree Fahrenheit: "))

This line converts to degrees Celsius

degreeC = (degreeF - 32) * 5/9

This line prints the converted degree

print("Degree Celsius: "+str(round(degreeC,2)))

Program 2 starts here

#2. Area of Trapezoid

The next three lines prompts user for necessary inputs

Base1 = float(input("Base 1: "))

Base2 = float(input("Base 2: "))

Height = float(input("Height: "))

This line calculates the area

Area = 0.5 * (Base1 + Base2) * Height

This line prints the area

print("Area: "+str(round(Area,2)))

The third program begins here. I've decided to write a program that sums two numbers

#3. Addition of Two Numbers

The next two lines prompt user for inputs

Num1 = float(input("Number 1: "))

Num2 = float(input("Number 2: "))

This line calculates and prints the sum

print("Result: "+str(Num1 + Num2))

What is Interface in computers

Answers

Answer:

An interface could be the design of the homescreen or the way a shell of a computer is designed. I could be wrong tho......

Explanation:

Why was the newspaper readership the highest in 1995?

Answers

Because more people read the news paper back then
Because not everyone could afford a computer and because newspapers were more easy and accessible to get

What statement best describes percentage values in CSS?
A.It's the fraction of the value that came before it.
B.It's the smallest controllable element on the screen.
C.It's always the width of an indent.
D.It's a value that is relative to the width of its HTML element or to the page.

Answers

Answer:

Im sorry if its wrong but i believe its D.

Explanation:

D. It's a value that is relative to the width of its HTML element or to the page.

Answer:

The answer is

Explanation:

D. It's a value that is relative to the width of its HTML element or to the page.

Computer networks allow computers to send information to each other. What is the term used to describe the basic unit of data passed from one computer to another?


packet


message


transmission


package

Answers

Answer:

Packet

Explanation:

I just did the Quiz on EDGE2022 and it's 200% correct!

Also, heart and rate if you found this answer helpful!! :) (P.S It makes me feel good to know I helped someone today!!)

The term that is used to describe the basic unit of data passed from one computer to another is the packet. The correct option is a.

What are computer networks?

Computer networking is the term for a network of connected computers that may communicate and share resources. These networked devices transmit data through wireless or physical technologies using a set of guidelines known as communications protocols.

The network layer supplies the means of shifting variable-length web packets from a source to a destination host via one or more networks.

A packet is a brief section of a message in networking. Packets are used to transport data via computer networks, including the Internet. The computer or device that receives these packets then reassembles them.

Therefore, the correct option is a. packet.

To learn more about computer networks, refer to the link:

https://brainly.com/question/13992507

#SPJ2

Write an expression using Boolean operators that prints "Special number" if special_num is -99, 0, or 44.

Sample output with input: 17
Not special number

Answers

Answer:

special_num = int(input())

if  special_num == -99 or special_num == 0 or special_num == 44:

   print('Special number')

else:

   print('Not special number')

Explanation:

#get input

special_num = int(input())

#if function to evaluate true or false(aka Boolean)

if  special_num == -99 or special_num == 0 or special_num == 44:

#true evaluation

print('Special number')

#false evaluation

print('Not special number')

The program evaluates the number inputted by a user, checks if it is one of three special numbers and displays the appropriate message. The program is written in python 3 ;

special_num = int(input('enter number : '))

#allows user to input an integer value which is assigned to the variable named special number

if(special_num == -99) or (special_num ==0) or (special_num == 44):

#checks if the inputted value is one of the three special numbers using the assignment operator '==' and 'OR'

print('special number')

# if the condition evaluates to true, display the message ;special number

else :

print('Not a special number')

#if otherwise, display the message, not a special number.

Learn more :https://brainly.com/question/18929518

What is Groovefunnels?

Answers


GrooveFunnels is a game-changer and it’s disrupting the market quite a bit.

Explanation:

Griovefunnels is a suite of digital marketing tools desinged to help you run a sucessfull online business .

Im being timed please help!!

Where might you find help if material becomes truly difficult?
a.
A teacher
c.
A study group
b.
A tutor
d.
All of these


Please select the best answer from the choices provided

A
B
C
D

Answers

Answer:

ALL

Explanation:

Because if it was a test you can ask a teacher, if it was group projects you can ask the study group, if it was homework or 1 on 1  you can ask a tutor

Answer:

b

Explanation:

because a tutor deals with materials

WILL MARK QUICKEST CORRECT ANSWER AS BRAINLIEST 11 PTS


Gary says, “Ports are where data enter a network before it reaches a gateway. The data travel via transmission media.”


Explain why Gary is right or wrong.



A) Gary is wrong. Ports are where connectors attach to destinations, not where data enter the network.


B) Gary is wrong. Gateways block data, so data don’t enter through them.


C) Gary is right.

Answers

Answer: Gary is wrong. Data do not travel via transmission media.

Answer:

the answer is Gary is wrong. Ports are where connectors attach to destinations, not where data enter the network.

Explanation:

correct on ed

Complete performance index:

How is it calculated?

Answers

Answer:

Remaining Work = Total budget – Earned Value. = (BAC – EV).

what is the output? there are no answer options and I'm completely lost.

>>>answer = "five times"

>>>answer[2:7] ​

Answers

The string answer = "five times"

All strings start at index 0 and end at the length of the string minus 1

So, if we count appropriately, index 2 is v and index 7 is m

answer[2:7] goes from v to m including v but not m, therefore,

answer[2:7] = "ve ti"

What is a copyright?

Answers

the exclusive legal right, given to an originator or an assignee to print, publish, perform, film, or record literary, artistic, or musical material, and to authorize others to do the same.

A copy right is when someone is taking credit away from someone who made it first

What is the result when you run the following line of code after a prompt >>>print(“2+4)

Answers

Answer:

2+4

or more honestly, it would return an error message.

Explanation:

So none of the answers are correct because:

no quotes will be printed.If you look more closely, the quotes are inversed in the statement, which is invalid syntax.

see picture

Answer:

the answer is

'2 + 4'

Explanation:  

I just took the test, so I know for 100% certainty, that this is the answer that is being accepted as the correct answer.  

write a dialogue between two friends who are debating on popularity or property​

Answers

Answer:

example:

James said, " popularity isn't the important. "

David said, " It is ."

PROJECT STEPS
1. For your Written Communication class, you are writing a short research paper. To conform to MLA guidelines, modify the document’s Normal style by changing the font to Times New Roman, the font size to 12 pt., and the line spacing to double with no blank space after paragraphs.
2. Apply the modified Normal style to the first four paragraphs in the document, from “Crystal Mathison” to “15 October 2018”.
3. Center the title paragraph “A Solution to Food Deserts: Micro Farms”.
4. Insert a header as follows:
a. Insert a blank header at the top of the page.
b. Right-align the header paragraph.
c. Type Mathison as the header text, insert a space, and then insert a Plain Number page number from the Current Position gallery.
d. Close Header & Footer Tools.
5. Create a First Line indent of 0.5" for the body paragraphs beginning with “In the United States…” and ending with “…avenues for profitable enterprises.”
6. Change the Citations & Bibliography Style of the document to MLA.
7. In the sentence “In the United States…fresh fruits and vegetables.”, move the insertion point before the period and insert a citation to a new source using the information shown in Figure 1 below. (Hint: The Tag name is intentionally blurred because it is generated automatically.) need fast

Answers

Answer:

. For your Written Communication class, you are writing a short research paper. To conform to MLA guidelines, modify the document’s Normal style by changing the font to Times New Roman, the font size to 12 pt., and the line spacing to double with no blank space after paragraphs.

2. Apply the modified Normal style to the first four paragraphs in the document, from “Crystal Mathison” to “15 October 2018”.

3. Center the title paragraph “A Solution to Food Deserts: Micro Farms”.

4. Insert a header as follows:

a. Insert a blank header at the top of the page.

b. Right-align the header paragraph.

c. Type Mathison as the header text, insert a space, and then insert a Plain Number page number from the Current Position gallery.

d. Close Header & Footer Tools.

5. Create a First Line indent of 0.5" for the body paragraphs beginning with “In the United States…” and ending with “…avenues for profitable enterprises.”

6. Change the Citations & Bibliography Style of the document to MLA.

7. In the sentence “In the United States…fresh fruits and vegetables.”, move the insertion point before the period and insert a citation to a new source using the information shown in Figure 1 below. (Hint: The Tag name is intentionally blurred because it is generated automatically.) need fast

Explanation:

help help help help help help help help

Answers

Answer:

ok witch qeston

Explanation:

Answer:

2

Explanation:

What is the hexadecimal equivalent for the decimal number 27? Working must be shown

Answers

The answer is .9726

Explanation:

4.1 lesson practice

Answers

Can you please include the picture of the question. Thank you! :D

Instructions PhoneNumbersjava + 1 import java.util.*; 2 class PhoneNumbers 3 public static void main(String[] args) 4 //write code here A personal phone directory contains room for first names l and phone numbers for 30 people. Assign names and phone numbers for the first 10 people. Prompt the user for a name, and if the name is found in the list, display the corresponding phone number. If the name is not found in the list, prompt the user for a phone number, and add the new name and phone number to the list. Continue to prompt the user for names until the user enters quit. After the arrays are full (containing 30 names), do not allow the user to add new entries. Use the following names and phone numbers: Name Phone # Gina Marcia (847) 341-2392 Rita Jennifer (414) 234-0912 Fred Neil Judy (608) 435-0434 Arlene (608) 123-0312 LaWanda (920) 787-9813 Deepak (930) 412-0991 (847) 341-0912 (847) 354-0654 (414) 435-6567 (608) 123-0904

Answers

Answer:

What is the question?

In which of the following scenarios would it be best to use a for loop?
1. When you need to stop looping based on input from the user
2. When you need to check that a user's input is valid.
3. When you want to ask the user for 10 numbers
4. When you need to be able to use the block of code in many places in your program

Answers

Answer:

I would say 3 is the most likely answer ("When you want to ask the user for 10 numbers").

You use for loops to perform a task x times usually.

The only item on the desktop of a new Mac is the hard-drive icon.

True or false?

Answers

Answer:

False

There are many more items on the desktop of a new Mac than the hard-drive icon.

When viewing the Mail Merge Recipients dialog box, what kinds of actions can you perform? Check all that apply. find recipient filter recipients print recipients sort column headings select/deselect recipients

Answers

Answer:

a,b,d,e on edg 2020

Explanation:

Answer:

Everything is correct except option 3/letter C.

Explanation:

A, B, D, and E

If you want to ensure that a particular application receives priority access to the network, you should configure what feature on the router?
QoS

DHCP

UDP

ARP

Answers

Answer:

QoS

Explanation:

:/

Answer:

other person is correct the answer is QoS

Explanation:

what is an operating system​

Answers

Answer:

Explanation:

Online Dictionary defines 'Operating System' as "the software that supports a computer's basic functions, such as scheduling tasks, executing applications, and controlling peripherals.''

Hope this helps!

What does B the represent

Answers

Answer:

The B represents a boolean.

In Word, blue underlining indicates which of these problems?
A grammatical error
B file error
C spelling error
D style mismatch

Answers

Answer:

The blue indicates a grammatical error, including misused words.

Hence, the answer is A

Given storeMonthlySales NUM STOREST[NUM MONTHST[NUM DEPTS] is a three-dimensional array of floating point values. Write a C++ function, printMonthlySales, to calculate and print the total value of sales during a specific month by each department and in each store plus totals by store and department and overall sales. The return type of the function is void and the function must have 2 input parameters Sales array and the month the user specified (edit for correct month values!). The constants NUM STORES, NUM_MONTHS, and NUM_DEPTS must be accessed globally by defining the following global variables #define NUM DEPTS 2 #define NUM STORES 2 #define NUM-MONTHS 12 or const int NUM-MONTHS-12; or const in NUM_DEPTS 2; or const int NUM_STORES 2; The array Sales is initialized by the following statement within main() float storeMonthlySales[NUM STOREST[NUM MONTHS1[NUM DEPTS]- 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3.0, 3.1,3.2, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 4.1, 4.2, 2.1, 2.2,2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3.0, 3.1, 3.2 Output: Sales for month of value (where value represents "January", "March", etc.) Dept # value value col value sum Dept # Store Total Store # value row value sum tore # value row value sum Dept Total col value sum total overall sales User enters a new month as many times as they wish and run printMonthlySales against the new month alue Validate user input ("y" or "n") when asking if the user wants to enter a new set of values

Answers

Answer:

Y

Explanation:

YEZ

Write a program which has your own versions of the Python built-in functions min and max. In other words, write the functions called maximum(aList) and minimum(aList) that do the job of the built-in Python functions max(aList) and min(aList)respectively. They should take a list as an argument and return the minimum or maximum element . Test your functions with the list [7, 5, 2, 3, 1, 8, 9, 4]. Hint: Pick the first element as the minimum (maximum) and then loop through the elements to find a smaller (larger) element. Each time you find a smaller (larger) element, update your minimum (maximum).

Answers

Answer:

def maximum(aList):

   highest = aList[0]

   for number in aList:

       if number > highest:

           highest = number

       

   return highest

def minimum(aList):

   lowest = aList[0]

   for number in aList:

       if number < lowest:

           lowest = number

       

   return lowest

print(maximum([7, 5, 2, 3, 1, 8, 9, 4]))

print(minimum([7, 5, 2, 3, 1, 8, 9, 4]))

Explanation:

Create a function named maximum that takes one parameter, aList

Initialize the highest as the first number in aList

Create a for loop that iterates through the aList. Compare each number in aList with highest. If a number is greater than highest, set it as new highest.

When the loop is done, return the highest

Create another function named minimum that takes one parameter, aList

Initialize the lowest as the first number in aList

Create a for loop that iterates through the aList. Compare each number in aList with lowest. If a number is smaller than lowest, set it as new lowest.

When the loop is done, return the lowest

Call the functions with given list and print the results

Other Questions
Which term refers to the condition of workers who could never afford to paywhat they owed to a company store?A. Debt peonageB. EmancipationC. SlaveryD. Free labor 4. La digestin tanto intracelular como extracelular es realizada por:A) R. endoplasmtico rugosoB) R. endoplasmtico lisoC) PeroxisomaD) CentriolosE) Lisosomas one tool that can be used to display your data is a ____.a. balance b. spring scale c. microscoped. computerI need a answer by 6:00 PM!!!!!!!! What does a process essay accomplish Which information is not in the article? Press enter to interact with the item, and press tab button or down arrow until reaching the Submit button once the item is selectedAIn 2011, the voting for the New7Wonders of Nature winners will end. BIn 2007, the world voted on a new list of the seven man-made wonders. CThe Swiss foundation New7Wonders collected 441 names of places. DA Swiss foundation has a new contest to choose the world's best bridges. Describe how the bowling pin will react to the unbalanced force of the bowling ball. Maxs age is twice Georges age minus 5. The sum of Manuels age and Guptas age is 31. Let g represent Georges age. The equation 2g - 5 + g = 31 represents this situation. Complete this statement: Max is ____ years old and George is ____ years old. If a track is 400 meters around, how many laps around the track would it take to run 3.1 miles round to the nearest tenth Q:What is the scale factor of this dilation? 1. 1/2 2. 1/3 3. 2 4. 3 Trace the changes that take place in a flower from gamete formation to fruit formation.536 In the given circuit, A, B, C and D are four lamps connected with a battery of 60V.Analyse the circuit to answer the following questions.(i) What kind of combination are the lamps arranged in (series or parallel)?(ii) Explain with reference to your above answer, what are the advantages (any two) of this combination of lamps?(iii) Explain with proper calculations which lamp glows the brightest?(iv) Find out the total resistance of the circuit. Angles 1 and 5 are what type of angle pair? * (60 points) Which passage below fromTwain's "The Californian'sTale" shows foreshadowing?A. Sec. 33: Late Friday afternoon anothergray veteran tramped over from his cabina mile or so away..B. Sec. 32: "But I'll be on hand when shecomes, old man!"C. Sec. 35: When Joe heard that therewas a letter, he asked to have it read... 2. What aspect of form do today's poets typically ignore, even if they attempt to write in a fixed form?the rhyme schemethe subject matterthe structurethe purpose PLEASE HALP ME NOWWW PLEASE THIS IS DUE NOWWRead the passage below. Then, explain how Duke's use of dialect and his response to conflict provide characterization. Write one or two paragraphs using specific examples from the passage to support your response.PassageIn New York City, in the boardroom of the tallest skyscraper, Duke leaned back in the leather chair, hiked up the dirt-crusted bottoms of his blue jeans, and propped his cowboy boots up on the glass conference table. He looked across at BenCorp's CEO, Ralph Jacobs, who wore a suit and tie. Other businesspeople were sitting around the long table."Let me tell you something, pardner, this is some kinda setup ya'll got here," Duke chuckled."Indeed," sniffed Jacobs, barely hiding his contempt. "Let me take this opportunity to express my disappointment with your father's business decision.""How's that, now?""For the duration of your father's medical leave, I should have been promoted to acting president, not you. You have no experience at anything. I do not respect you. Therefore, if I may speak frankly, I will have a very difficult time taking orders from you.""That a threat?""I'm merely expressing my distaste for the current leadership structure of this company," said Jacobs. Duke smiled."Go on, then. Git.""Pardon me?""Git. I'm putting you out to pasture. Don't want varmints near the crops." Jacobs stared in disbelief, furious, then rose quickly and stormed out."Anybody else want a showdown?" The others avoided eye contact and rapidly shook their heads. "Alright, then. Let's get down to business. There's a new sheriff in town, and him and his posse that's y'all, by the way are going to get this company back up topside where it belongs!"Read the assignment carefully and make sure you answer each part of the question or questions.After you've written your response, go back and read it again to make sure your thoughts are clear.Write your response below. Draw a dog to get 5 points Harlow's experiments were very controversial and some cite them as one of the causes of the animal rights movement. Last week you learnedabout the different research methods used by psychologists: experiments, natural observation, case studies, and surveys.Do you think Harlow could have studied the question of motherhood in a more ethical manner? If so, what method could he have used instead?If not, write a post defending Harlow's choice to conduct his experiment in this way. ____ is the need to be secure, safe, and out of danger. Malik completed 7 1/2 math problems in 10 1/3 minutes. If he has 20 problems on his homework, how long will it take him to complete his homework at the same pace? HELP PLEASE GIVING BRAINLIEST AND 10 POINTS!!!! Which of the following is a list of all the factors of 24? A. 1, 2, 3, 4, 5, 6, 8, 12, 24 B. 1, 2, 3, 4, 6, 8, 12, 24 C. 2 2 2 3 D. 2, 3, 4, 8, 16, 24