Answer:
16
Explanation:
answer = num1 + num2 // 3+2 = 5
answer = answer + num1 // 5+3 = 8
return answer*num2 // 8*2 = 16
2. Why is there no country code for the USA?
Answer:
there is a contrary
Explanation:
+1
Answer:
b cuz we dont need one
Explanation:
Python exercise grade 10
Write a program that determines which dates comes earlier on the calendar. The user
may enter any number of dates. The user will enter 0/0/0 to indicate that no more dates
will be entered
Example:
Enter a date (month): 3
Enter a date (date): 6
Enter a date (year): 2008
03/06/2008
Enter a date (month): 5
Enter a date (date): 17
Enter a date (year): 2007
05/17/2007
Enter a date (month): 6
Enter a date (date): 3
Enter a date (year): 2007
06/03/2007
Enter a date (month): 0
Enter a date (date): 0
Enter a date (year): 0
5/17/2007 is the earliest date
earliest = ""
while True:
month = int(input("Enter a date (month): "))
day = int(input("Enter a date (date): "))
year = int(input("Enter a date (year): "))
if month == 0 and day == 0 and year == 0:
break
if month < 10:
month = "0"+str(month)
if day < 10:
day = "0"+str(day)
string_date = str(month)+"/"+str(day)+"/"+str(year)
print(string_date)
if earliest == "":
earliest = string_date
else:
year,month,day=int(year),int(month),int(day)
lst = list(map(int,earliest.split("/")))
if year < lst[2]:
earliest = string_date
elif year == lst[2] and month < lst[0]:
earliest = string_date
elif year == lst[2] and lst[0] == month and day < lst[1]:
earliest = string_date
print(earliest,"is the earliest date")
I wrote my code in python 3.8. Best of luck.
Top/Bottom Rules allow a user to apply conditional formatting to cells that fall within the top or bottom numbers or percentile. How many items will it allow the user to include in the rule?
the top or bottom 10 items or top or bottom 10% only
the top 10 items and top 10% only
the top or bottom 100 items only
any logical number of items or percentages in top or bottom value frames
C. TRUST
Explanation:
Answer:
*clears throat* ......... its c....... thank you for your time :).............. *standing ovation*
Explanation:
PLZ HELP What is the problem with this program?
name = "Jenny"
name = input("What is your name?")
A.
the variable name has to begin with a capital letter
B.
input should be output
C.
the first line should be omitted because the second line defines the variable
D.
the variable needs to begin with a number to distinguish it from other variables
Answer:
B
Explanation:
the answer is B imput should be output
Answer: I think the answer is (C)
I'm doing the exam rn and that what i think
Explanation:
Will give Brainliest if anyone knows how to skip videos in Edge! Has to work!
Answer:
Honestly, I don't know so I found two answers for you, hopefully this helps:
1.
What you can do is skip a video if you have watched all of it EXCEPT 7 seconds. so some edge vids are like 8 sec, just wait 1 sec then skip it. for longer vids; for example a video that is 2:30, just watch 2:29 minutes and 53 seconds, and u can skip the last 7 seconds remaining.
Another one I found:
1. Start the video
2. Click the reload button. It may ask for confirmation, so just click continue
3. Click the home button until you get to the home page.
4. Click the "Next Activity" button
It may only skip the last 30 seconds of the video, not 3 minutes, but it is better than nothing.
To easily get through the "Answer in your own words" portions:
1. Check to see how long the question is. If it is 2 short sentences, I don't recommend this. If it's 3 or more, this should work.
2. Copy the question (Control + C)
3. Paste it into the answer box (Control + V)
4. Submit
It should accept it! Works every time for me as long as the question is long enough. 9/10 times it works! Good Luck!
reload the page, press confirm, and click next activity.
this only works once unfortunately :(
PLSS HELP I WILL GIVE BRAINLIEST!!
Answer:
1.1000 megabyte
Explanation:
help me with this easy question that I can't do :)
Answer:
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB
Answer: C. Trim unnecessary sound.
(I think this is right).
Explanation: Playback Controls is a floating window that give you a console for controlling the playback of your score. By clicking the expand arrow, Playback Controls expands to display a number of playback options, such as the tempo, range of measures to be played, overall volume level, and so on.
HELP ASAP PLEASE!!!
Answer:
Click and drag the mouse to select the cells
Explanation:
3.2 code practice question 2. Not in a rush.
Answer:
value = float(input("Enter a number: "))
if (value >= 90):
print("Great!")
Explanation:
Complete each sentence
To complete step 3, select ____ under table tools.
In step 5, each existing column is split in ____. In this table, the ____ rows cells are blank.
To use the options listed in step 9, click ____
Answer choices: first sentence (design,layout,merge) second (sixths,thirds,half) and (first,second,third) last sentence (design,layout,merge)
Answer:
Complete each sentence.
To complete Step 3, select LAYOUT under Table Tools.
In Step 5, each existing column is split in HALF In this table, the SECOND
row’s cells are blank.
To use the options listed in Step 9, click DESIGN.
Hope this helped. Please Mark me Brainliest!
To see if a website is using a secure connection, what should you look for? Select all that apply.
A star icon to the right of the URL
"https" at the very beginning of the URL
A plus sign (+) to the right of the tab
A lock icon to the left of the URL
Answer:
– A web address using “HTTPS” (The extra “S”means it’s a secure connection. – Secure sites show a closed padlock emblem you can click on for security details – the most trustworthy sites will have green padlocks or address bars.
Explanation:
To see if a website is using a secure connection, You should look for "HTTPS" at the very beginning of the URL. The correct option is B.
What is a website?A website is an online platform where a person put his data to show people online. Now day's everything has a website to join with the world. It is a very easy way to show your business and company online.
Due to digitalization. A website is a very necessary part of the business. And due to this, many fake websites are also made. If these websites are open, the computers may be hack on or a virus enters your computer and all the data will be stolen or removed.
To know the website is secure, always check the starting pof the website, it should be started from HTTP or HTTPs.
Thus, the correct option is B. "HTTPS" at the very beginning of the URL.
To learn more about the website, refer to the link:
https://brainly.com/question/6107621
#SPJ2
Which of the following is a drilling cycle available with CAM software?
Point
Straight
Through
All of the above
None of the above
Answer:
straight just like me
what type of error occurred??
Answer:
Syntax Error.
Explanation:
Explain any one method of creating a presentation.
Answer:
Step 1: Analyze your audience
The first step in preparing a presentation is to learn more about the audience to whom you'll be speaking. It's a good idea to obtain some information on the backgrounds, values, and interests of your audience so that you understand what the audience members might expect from your presentation.
Step 2: Select a topic
Next, if possible select a topic that is of interest to the audience and to you. It will be much easier to deliver a presentation that the audience finds relevant, and more enjoyable to research a topic that is of interest to you.
Step 3: Define the objective of the presentation
Once you have selected a topic, write the objective of the presentation in a single concise statement. The objective needs to specify exactly what you want your audience to learn from your presentation. Base the objective and the level of the content on the amount of time you have for the presentation and the background knowledge of the audience. Use this statement to help keep you focused as you research and develop the presentation.
Preparing the Content of Your Presentation
Step 4: Prepare the body of the presentation
After defining the objective of your presentation, determine how much information you can present in the amount of time allowed. Also, use your knowledge about the audience to prepare a presentation with the right level of detail. You don't want to plan a presentation that is too basic or too advanced.
The body of the presentation is where you present your ideas. To present your ideas convincingly, you will need to illustrate and support them. Strategies to help you do this include the following:
Present data and facts
Read quotes from experts
Relate personal experiences
Provide vivid descriptions
And remember, as you plan the body of your presentation it's important to provide variety. Listeners may quickly become bored by lots of facts or they may tire of hearing story after story.
Step 5: Prepare the introduction and conclusion
Once you've prepared the body of the presentation, decide how you will begin and end the talk. Make sure the introduction captures the attention of your audience and the conclusion summarizes and reiterates your important points. In other words, "Tell them what you're going to tell them. Tell them. Then, tell them what you told them."
During the opening of your presentation, it's important to attract the audience's attention and build their interest. If you don't, listeners will turn their attention elsewhere and you'll have a difficult time getting it back. Strategies that you can use include the following:
Make the introduction relevant to the listeners' goals, values, and needs
Ask questions to stimulate thinking
Share a personal experience
Begin with a joke or humorous story
Project a cartoon or colorful visual
Make a stimulating or inspirational statement
Give a unique demonstration
During the opening you want to clearly present your topic and the purpose of your presentation. Clearly articulating the topic and purpose will help the listeners focus on and easily follow your main ideas.
During the conclusion of your presentation, reinforce the main ideas you communicated. Remember that listeners won't remember your entire presentation, only the main ideas. By reinforcing and reviewing the main ideas, you help the audience remember them.
[top of page]
Practicing and Delivering
Step 6: Practice delivering the presentation
Most people spend hours preparing a presentation but very little time practicing it. When you practice your presentation, you can reduce the number of times you utter words and phrases like, "um," "well," and "you know." These habits can easily diminish a speaker's credibility. You can also fine-tune your content to be sure you make your most important points in the time alloted.
In addition to planning the content of your presentation, you need to give advanced thought to how you want to deliver it. Do you want to commit your presentation to memory, use cards to guide you, or read from a script? Or, you might want to use a combination of methods. To help you decide, read the advantages and disadvantages of the four delivery methods described below.
Speaking from Memory
A human brain.
What is the first multiple of a bit
Answer:
The byte
Explanation:
which represents eight bits
what does brainliest do?
Answer it gives u points I think
Explanation:
Answer:
Yeah. I think it gives u points
Explanation:
The Outlook Calendar
Instruction Active
Creating an Appointment
Place the steps in order for creating an appointment in the Calendar view of Outlook 2016,
Click Save and Close
Add event details
Click New Appointment
Select the Home tab
Answer:
Select the home tab
Click new appointment
Add event details
Click save and close
Explanation:hope this helps:)
In order to create a chart, which of the following must be selected?
O Data tools
O Worksheet tab
O Data source
O Table styles
A chart is the graphical presentation of data and is a part of the data visualization. The data is represented by the symbols and bars in a bar chart.
They are often sued to show large quantities of data in a simple and understandable form. For making a chart first we need to select data tools and then design tools.Hence the option A is correct.
Learn more about the order to create a chart.
brainly.com/question/22004535.
How do I indent the 1. bullet so it is not lined up with the regular bullet above it?
Answer:
Change bullet indents
Select the bullets in the list by clicking a bullet. ...
Right-click, and then click Adjust List Indents.
Change the distance of the bullet indent from the margin by clicking the arrows in the Bullet position box, or change the distance between the bullet and the text by clicking the arrows in the Text indent box.
Explanation:
mark me braineliest
What are the special features of fifth generation that makes it different from the other generations?
Answer:
The answer to this question is given below in this explanation section.
Explanation:
"features of fifth generation"
The fifth generation computer system was an initiative by japans ministry of international trade and industry,begun in 1982,to create computer using massively parallel computing and logical programming.It was to be the result of massive government industry research project in japan during the 1980.It aimed to create an epoch making computer with supercomputer liked performance and to provide a platform for future development in artificial intelligence.There was also an unrelated Russian project also named as the fifth generation computer.
The term fifth generation was untended to convey the system as being a leap beyound existing machines.In the history of computing hardware,computer using vacuum tubes were called the first generation;transistors and diodes,the second;integrated circuits,the third;and those using microprocessors,the fourth.Whereas previous computer generation had focused on increasing the number of logic elements in a single CPU,the fifth generation,it was instead turn to massive numbers of CPU for added performance.
brief description email etiquette
Answer: See explanation
Explanation:
Email etiquette is defined as the code of conduct which helps to guide the behavior when people send or respond to emails. Some of ail etiquette include:
• Using proper and correct grammar and punctuations.
• Replying quickly too emails.
• Including a clear and direct subject.
• Proofreading of messages.
• Cautious with humour.
• Sending of smaller files and compressing large files.
Atheel tests a program and gets a NameError. How can this be fixed?
Answer:
You can't call a function unless you've already defined it. Move the def createDirs(): block up to the top of your file, below the imports.
Explanation:
Some languages allow you to use functions before defining them. For example, javascript calls this "hoisting". But Python is not one of those languages.
Answer:
B = Create a variable
Explanation:
First off to understand this question, you need to understand what a NameError is. A NameError is when a function or variable isn't valid, or is not defined. So what you need to do it make a variable that is valid/defined. Therefore the answer is B create a variable
I hope this helps!
PLEASE HELP
This is your code.
>>> A = [21, 'dog', 'red']
>>> B = [35, 'cat', 'blue']
>>> C = [12, 'fish', 'green']
>>> E = [A, B, C]
What is the value of E[0][1]?
21
35
cat
dog
Answer:
dog
Explanation:
The python program has four lists, A, B, C, and E which is a list of the first three lists. Lists are unordered indexed data structures, it is accessed by an index starting from 0 to n (which is the length of the list minus one).
The E list is a list of lists with three list items starting from index zero to two. E[0][1] is used to access the item "dog" in the first list item of the E list.
Answer:
dog
Explanation:
i type the code in to python
if any one answered this i will give brilientst what is stimulation program
Explanation:
organized programs of enrichment designed to provide developmentally appropriate activities to babies and toddlers who have, or who are at risk for a variety of conditions (environmentally or biologically caused) that might interfere with their ability to ultimately have a full and productive life."
Pseudocode to java
Can you write this in Java program
Binary Search
Answer:
class Main {
public static void main(String[] args) {
int[] values = {11,12,15,16,112,118,123,145};
int target = 15;
int min = 0;
int high = values.length-1;
boolean found = false;
int answer = 0;
int mid;
while(!found && min <= high) {
mid = (min + high) / 2;
if (values[mid] == target) {
found = true;
answer = mid;
} else if (target > values[mid]) {
min = mid + 1;
} else {
high = mid - 1;
}
}
if (found) {
System.out.printf("%d FOUND AT ARRAY INDEX %d", target, answer);
} else {
System.out.printf("%d was not found", target);
}
}
}
Explanation:
I altered the while expression to make the code work.
Answer: class Main {
public static void main(String[] args) {
int[] values = {11,12,15,16,112,118,123,145};
int target = 15;
int min = 0;
int high = values.length-1;
boolean found = false;
int answer = 0;
int mid;
while(!found && min <= high) {
mid = (min + high) / 2;
if (values[mid] == target) {
found = true;
answer = mid;
} else if (target > values[mid]) {
min = mid + 1;
} else {
high = mid - 1;
}
}
if (found) {
System.out.printf("%d FOUND AT ARRAY INDEX %d", target, answer);
} else {
System.out.printf("%d was not found", target);
}
}
}
Explanation:
I altered the while expression to make the code work.
Operators such as >, =, <=, ===, and !== that compare values and return true or false.
Answer:
True
Explanation:
For example, if a number is greater than the other (>) the output would be true, and vice versa if the number is not greater.
I NEED HELP ASAP !!What are responsibilities of entrepreneurs? Check all of the boxes that apply.
to make their own decisions and schedules
to purchase their own health insurance
to pay for office space and supplies
to follow instructions
What are responsibilities of employees? Check all of the boxes that apply.
to do their jobs using skills they were hired to use
to work a set schedule every week
to pay self-employment taxes
to follow instructions
Answer:
Question 1
to make their own decisions and schedules to purchase their own health insurance to pay for office space and suppliesQuestion 2
to do their jobs using skills they were hired to use to work a set schedule every week to follow instructionsExplanation:
1. Entrepreneurs are meant to run their own affairs because they are the owners of the business. This means that they have to make their own decisions and work schedules. They also need to purchase their own health insurance as this is usually the responsibility of the company one works for.
As the owners, they will also have to pay for any space and supplies that the company needs.
2. Employees have a duty to perform in the business in such a way as to push it forward by harnessing the skills they have that got them hired. They are to work a certain schedule/amount of time every week and they are to follow the instructions of their employers.
Answer:
got it right on edge
Explanation:
Ict quiz I attached a picture
Answer:
error:invalid syntax
Explanation:
heeheee
Plz help
You want Excel to automatically apply “stripes” in an alternating pattern to existing raw data in your spreadsheet. Describe the precise steps you could take to do so. What other function would be added when you apply this change, assuming you have a header row and leave the default options selected?
Answer:
1)Select the cells you want to shade.
2)On the Home tab of ribbon select Conditional Formatting > New Rule
3)Select 'Use a formula to determine which cells to format' > enter your formula in the 'Edit the Rule Description' field.
4)Click the Format button and from the Format Cells dialog box select the Fill tab > choose your weapon (colour, pattern, fill effect etc.):
Explanation:
Converting Denary to Binary
Work out the binary value of each denary number. Remember, any number you put a 1 under is
activated and will be added, anything with a 0 under is not activated and is not added One has been
done for you to show you how you can work it out
128
Denary
32
16
8
2
1
1
1
0
0
0
1
1
+
199
I need to make 199 out of the 8 different numbers I have across the top
I can use 128, this will leave me with 71 stil to make
I can then use 64, this will leave me with 7
can't use 16 or 8 as they won't fit into 7
I can use 4 which will leave me with 3
I can use 2 which will leave me with 1
can then use 1
I have made 199
Any number I used will be a one, numbers I didn't use are all
128
Denary
64
32
16
1
56
121
45
132
249
Answer:
Converting the numbers provided to decimal:
128: 10000000
64: 01000000
32: 00100000
16: 00010000
1: 00000001
56: 00111000
121: 01111001
45: 00101101
132: 10000010
245: 11111001