1. P=O START: PRINT PP = P + 5 IFP
<=20 THEN GOTO START: * what is output
Answer:
0
5
10
15
20
Explanation:
P=O should be P=0, but even with this error this is the output.
When P reaches 20 it will execute the loop once more, so 20 gets printed, before getting increased to 25, which will not be printed because then the loop ends.
Under which command group will you find the options to configure Outlook rules?
O Move
O New
O Quick Steps
O Respond
Answer:
Move
Explanation:
I hope that helps :)
Answer:
a). move
Explanation:
edge 2021 <3
Write a program that will input temperatures for consecutive days. The program will store these values into an array and call a function that will return the average of the temperatures. It will also call a function that will return the highest temperature and a function that will return the lowest temperature. The user will input the number of temperatures to be read. There will be no more than 50 temperatures. Use typedef to declare the array type. The average should be displayed to two decimal places
Answer:
#include <iostream>
using namespace std;
typedef double* temperatures;
double avg(array t, int length);
double min(array t, int length);
double max(array t, int length);
int main()
{
cout << "Please input the number of temperatures to be read." << endl;
int num;
cin >> num;
temperatures = new double[num];
for(int i = 0; i < num; i++)
{
cout << "Input temperature " << (i+1) << ":" << endl;
cin >> temperatures[i];
}
cout << "The average temperature is " << avg(temperatures, num) << endl;
cout << "The highest temperature is " << max(temperatures, num) << endl;
cout << "The lowest temperature is " << min(temperatures, num) << endl;
}
double avg(array t, int length)
{
double sum = 0.0;
for(int i = 0; i < length; i++)
sum += t[i];
return sum/length;
}
double min(array t, int length)
{
if(length == 0)
return 0;
double min = t[0];
for(int i = 1; i < length; i++)
if(t[i] < min)
min = t[i];
return min;
}
double max(array t, int length)
{
if(length == 0)
return 0;
double max = t[0];
for(int i = 1; i < length; i++)
if(t[i] > min)
max = t[i];
return max;
}
Explanation:
The C++ program get the array of temperatures not more than 50 items and displays the mean, minimum and maximum values of the temperature array.
PLEASE SOMEONE ANSWER THIS
If the old code to a passcode was 1147, and someone changed it, what would the new code be?
(It’s no version of 1147, I already tried that. There are numbers at the bottom of the pictur, it just wouldn’t show.)
[I forgot my screen time passcode please someone help I literally can’t do anything on my phone.]
Answer:
There's no way for anyone but you to know the password. Consider this a lesson to be learned - keep track of your passwords (and do it securely). If you can't remember your password for this, the only alternative is to factory reset your device.
I don't know exactly if this passcode instance is tied to your Icloud account.. if it is, factory resetting will have been a waste of time if you sign back into your Icloud account. In this case, you would need to make a new Icloud account to use.
Consider the following:
calc = 3 * 5 + 4 ** 2 - 1
What is the base for the exponent?
8
4
5
3
Answer:
3 * 5 + 4 ** 2 - 1 = 5
Explanation:
3 * 5 = 15 + 4 ** 2 = 76 - 1 = 75
The exponent of a number shows how many times a base integer should be multiplied. It is represented as a tiny number in the top right corner of a base number, and the further calculation can be defined as follows:
Given:
[tex]\bold{calc = 3 * 5 + 4 ** 2 - 1}[/tex]
Calculation:
[tex]\bold{calc = 3 \times 5 + 4^2 - 1}\\\\\bold{calc = 15 + 16 - 1}\\\\\bold{calc = 15 + 15 }\\\\\bold{calc = 30 }\\\\[/tex]
The given code is a part of the python program, in which we use the power expression. It implies that one "*" symbol is used to multiply the value and "**" and two symbols are used for calculating the power value.Therefore, the answer is "4".
Learn more:
brainly.com/question/9857728
Computer programming
Input 3 positive integers from the terminal, determine if tlrey are valid sides of a triangle. If the sides do form a valid triangle, output the type of triangle - equilateral, isosceles, or scalene - and the area of the triangle. If the three integers are not the valid sides of a triangle, output an appropriats message and the 3 sides. Be sure to comment and error check in your progam.
Answer:
In Python:
side1 = float(input("Side 1: "))
side2 = float(input("Side 2: "))
side3 = float(input("Side 3: "))
if side1>0 and side2>0 and side3>0:
if side1+side2>=side3 and side2+side3>=side1 and side3+side1>=side2:
if side1 == side2 == side3:
print("Equilateral Triangle")
elif side1 == side2 or side1 == side3 or side2 == side3:
print("Isosceles Triangle")
else:
print("Scalene Triangle")
else:
print("Invalid Triangle")
else:
print("Invalid Triangle")
Explanation:
The next three lines get the input of the sides of the triangle
side1 = float(input("Side 1: "))
side2 = float(input("Side 2: "))
side3 = float(input("Side 3: "))
If all sides are positive
if side1>0 and side2>0 and side3>0:
Check if the sides are valid using the following condition
if side1+side2>=side3 and side2+side3>=side1 and side3+side1>=side2:
Check if the triangle is equilateral
if side1 == side2 == side3:
print("Equilateral Triangle")
Check if the triangle is isosceles
elif side1 == side2 or side1 == side3 or side2 == side3:
print("Isosceles Triangle")
Otherwise, it is scalene
else:
print("Scalene Triangle")
Print invalid, if the sides do not make a valid triangle
else:
print("Invalid Triangle")
Print invalid, if the any of the sides are negative
else:
print("Invalid Triangle")
Which cable standard is a standard for newer digital cable, satellite, and cable modem connections?
Answer:
Coaxial cable
Explanation:
Computer programming 3
Part 1 of 4 parts for this set of problems: Given an 4777 byte IP datagram (including IP header and IP data, no options) which is carrying a single TCP segment (which contains no options) and network with a Maximum Transfer Unit of 1333 bytes. How many IP datagrams result, how big are each of them, how much application data is in each one of them, what is the offset value in each. For the first of four datagrams: Segment
Answer:
Fragment 1: size (1332), offset value (0), flag (1)
Fragment 2: size (1332), offset value (164), flag (1)
Fragment 3: size (1332), offset value (328), flag (1)
Fragment 4: size (781), offset value (492), flag (1)
Explanation:
The maximum = 1333 B
the datagram contains a header of 20 bytes and a payload of 8 bits( that is 1 byte)
The data allowed = 1333 - 20 - 1 = 1312 B
The segment also has a header of 20 bytes
the data size = 4777 -20 = 4757 B
Therefore, the total datagram = 4757 / 1312 = 4
Read the passage. What does it help you understand about how Manjiro’s character has developed?
Answer:
The passage shows that Manjiro is thinking more independently than he did at the beginning of the story. he is not as influenced by the fears and ideas common in his culture; instead, he recognizes that the "barbarians" on the ship are simply people just like him.
Explanation:
It is correct
This is computer and programming
Answer:yes
Explanation:because
)Assume passwords are limited to the use of the 95 printable ASCII characters and that all passwords are 10 characters in length. Assume a password cracker with an encryption rate of 6.4 million encryptions per second. How long will it take to test exhaustively all possible passwords on a UNIX system
Answer:
296653 years
Explanation:
The length of password = 10
To get possible password:
95 printable password raised to power 10
= 95¹⁰
Then we calculate time it would take to break password
95¹⁰/6.4million
95¹⁰/6400000
= 9355264675599.67 seconds
From here we get minutes it would take. 60 secs = 1 min
= 9355264675599.67/60
= 155921077927 minutes
From here we get number of hours it would take 1 hr = 60 mins
155921077927/60
= 2598684632 hours
From here we calculate number of days it would take. 24 hrs = 1 day
2598684632/24
= 108278526 days
From here we calculate number of years it would take. 365 days = 1 ye
= 108278526/365
= 296653 years
It would take this number of years to test all possible passwords
what does the
command do
write essay about pokhara
Explanation:
Pokhara is the second most visited city in Nepal, as well as one of the most popular tourist destinations. It is famous for its tranquil atmosphere and the beautiful surrounding countryside. Pokhara lies on the shores of the Phewa Lake. From Pokhara you can see three out of the ten highest mountains in the world (Dhaulagiri, Annapurna, Manasalu). The Machhapuchre (“Fishtail”) has become the icon of the city, thanks to its pointed peak.
As the base for trekkers who make the popular Annapurna Circuit, Pokhara offers many sightseeing opportunities. Lakeside is the area of the town located on the shores of Phewa Lake, and it is full of shops and restaurants. On the south-end of town, visitors can catch a boat to the historic Barahi temple, which is located on an island in the Phewa Lake.
On a hill overlooking the southern end of Phewa Lake, you will find the World Peace Stupa. From here, you can see a spectacular view of the lake, of Pokhara and Annapurna Himalayas. Sarangkot is a hill on the southern side of the lake which offers a wonderful dawn panorama, with green valleys framed by the snow-capped Annapurnas. The Seti Gandaki River has created spectacular gorges in and around the city. At places it is only a few meters wide and runs so far below that it is not visible from the top
Pokhara is a beautiful city located in the western region of Nepal. It is the second largest city in Nepal and one of the most popular tourist destinations in the country. The city is situated at an altitude of 827 meters above sea level and is surrounded by stunning mountain ranges and beautiful lakes. Pokhara is known for its natural beauty, adventure activities, and cultural significance.
One of the most famous attractions in Pokhara is the Phewa Lake, which is the second largest lake in Nepal. It is a popular spot for boating, fishing, and swimming. The lake is surrounded by lush green hills and the Annapurna mountain range, which provides a stunning backdrop to the lake.
Another popular attraction in Pokhara is the World Peace Pagoda, which is a Buddhist stupa located on top of a hill. The stupa is a symbol of peace and was built by Japanese Buddhist monks. It provides a panoramic view of the city and the surrounding mountains.
The city is also known for its adventure activities, such as paragliding, zip-lining, and bungee jumping. These activities provide a unique and thrilling experience for tourists who are looking for an adrenaline rush.
In addition to its natural beauty and adventure activities, Pokhara is also significant for its cultural heritage. The city is home to many temples, such as the Bindhyabasini Temple, which is a Hindu temple dedicated to the goddess Bhagwati. The temple is located on a hill and provides a panoramic view of the city.
Overall, Pokhara is a city that has something to offer for everyone. It is a perfect destination for those who are looking for natural beauty, adventure activities, and cultural significance. The city is easily accessible by road and air, and is a must-visit destination for anyone who is planning to visit Nepal.
Write a recursive method called lengthOfLongestSubsequence(a, b) that calculates the length of the longest common subsequence (lcs) of two strings. For example, given the two strings aaacommonbbb and xxxcommonzzz the lcs is common which is 6 characters long so your function would return 6. The length of the lcs of two strings a
Answer:
Explanation:
The following code is written in Java and creates the recursive function to find the longest common substring as requested.
static int lengthOfLongestSubsequence(String X, String Y) {
int m = X.length();
int n = Y.length();
if (m == 0 || n == 0) {
return 0;
}
if (X.charAt(m - 1) == Y.charAt(n - 1)) {
return 1 + lengthOfLongestSubsequence(X, Y);
} else {
return Math.max(lengthOfLongestSubsequence(X, Y),
lengthOfLongestSubsequence(X, Y));
}
}
steps on how to install a mouse
Answer:
Verify that the mouse you're thinking of purchasing is compatible with your laptop model. ...
Plug the mouse's USB cable into the matching port on the side of your laptop.
Restart your computer while the mouse is connected. ...
Move your mouse a few times to confirm that the cursor responds.
importance of information
literay to the society
Explanation:
Information literacy is important for today's learners, it promotes problem solving approaches and thinking skills – asking questions and seeking answers, finding information, forming opinions, evaluateing sources, and making decisions fostering successful learners, effective contributors, and confident individuals.which of the following is correct statement ? A
. a set of instructions is called program
B.computers can be used for diagnosing the difficulty of a student in learning a subject . C. psychological testing can be done with the help of computer provided software is available. D. all of the above
Answer:
D all of the above
Explanation:
because a computer performs all the above_mentioned tasks
All of the above options are correct statement. Check more about program below.
What is program?A program is regarded as some set of compositions of instructions or codes that a computer needs to follows so as to carry out a specific work.
Conclusively, the correct statement are:
A set of instructions is called program,Computers can be used for diagnosing the difficulty of a student in learning a subject. Psychological testing can be done with the help of computer provided software is available.Learn more about program from
https://brainly.com/question/1538272
Write out code for a nested if statement that allows a user to enter in a product name, store the product into a variable called product_name and checks to see if that product exists in your nested if statement. You must include 5 product names to search for. If it is then assign the price of the item to a variable called amount and then print the product name and the cost of the product to the console. If it does not find any of the items in the nested if statement, then print that item cannot be found.
Answer:
product_name = input("Enter product name : ")
if product_name=="pen"or"book"or"box"or"pencil"or"eraser":
if product_name == "pen":
amount = 10
print(f"Product Name: {product_name}\nCost: {amount} rupees")
if product_name == "book":
amount = 100
print(f"Product Name: {product_name}\nCost: {amount} rupees")
if product_name == "box":
amount = 150
print(f"Product Name: {product_name}\nCost: {amount} rupees")
if product_name == "pencil":
amount = 5
print(f"Product Name: {product_name}\nCost: {amount} rupees")
if product_name == "eraser":
amount = 8
print(f"Product Name: {product_name}\nCost: {amount} rupees")
else:
print("Item not found!")
Explanation:
The python program is a code of nested if-statements that compares the input string to five items of the first if-statement. For every item found, its code block is executed.
2. Write a Python regular expression to replace all white space with # in given string “Python is very simple programming language.”
Dear Parent, Please note that for your convenience, the School Fee counter would remain open on Saturday,27th March 2021 from 8am to 2 pm. Kindly clear the outstanding amount on account of fee of your ward immediately either by paying online through parent portal or by depositing the cheque at the fee counter to avoid late fee charges.For payment of fee the following link can also be used Pay.balbharati.org
By using your own data, search engines and other sites try to make your web experience more personalized. However, by doing this, certain information is being hidden from you. Which of the following terms is used to describe the virtual environment a person ends up in when sites choose to show them only certain, customized information?
A filter bubble
A clustered circle
A relational table
An indexed environment
Answer:
A filter bubble
Explanation:
Consider the following static method, calculate.
public static int calculate(int x)
{
x = x + x;
x = x + x;
x = x + x;
return x;
}
Which of the following can be used to replace the body of calculate so that the modified version of calculate will return the same result as the original version for all values of x?
return 8 * x;
return 3 + x;
return 3 * x;
return 6 * x;
return 4 * x;
Answer:
return 8 * x;
Explanation:
Required
What can replace the three lines of x = x + x
We have, on the first line:
[tex]x=>x +x[/tex]
[tex]x=>2x[/tex]
On the second line:
[tex]x=>x +x[/tex]
[tex]x=>2x[/tex]
Recall that, the result of line 1 is: [tex]x=>2x[/tex]
So, we have:
[tex]x=>2 * 2x[/tex]
[tex]x=>4x[/tex] --- at the end of [tex]line\ 2[/tex]
On the third line:
[tex]x=>x +x[/tex]
[tex]x=>2x[/tex]
Recall that, the result of line 2 is: [tex]x=>4x[/tex]
So, we have:
[tex]x = 2 * 4x[/tex]
[tex]x => 8x[/tex]
So: 8 * x can be used
A (n) ___ system can help a business alleviate the need for multiple information systems.
Answer:
Enterprise Resource Planning
Explanation:
ERP
Which of the following parameters is optional sample(a,b,c,d=7
The optional Parameter is D as it is said to be assigned an integer value of 7.
What are optional parameters?This is known to be a process that is made up of optional choices that one do not need to push or force so as to pass arguments at their set time.
Note that The optional Parameter is D as it is said to be assigned an integer value of: 7 because it implies that one can use the call method without pushing the arguments.
Learn more about Parameter from
https://brainly.com/question/13151723
#SPJ2
What may make it easy for cybercriminals to commit cybercrimes? Select 2 options.
Cybercrimes are not classified as real crimes, only as virtual crimes.
They operate from countries that do not have strict laws against cybercrime.
They are not physically present when the crime is committed.
The United States has no law enforcement that acts against them.
Law enforcement agencies lack the expertise to investigate them.
Answer: They operate from countries that do not have strict laws against cybercrime.
They are not physically present when the crime is committed.
Explanation:
edg
Answer:
They operate from countries that do not have strict laws against cybercrime.
They are not physically present when the crime is committed.
Explanation:
what is the address of the first SFR (I/O Register)
Answer:
The Special Function Register (SFR) is the upper area of addressable memory, from address 0x80 to 0xFF.
Explanation:
The Special Function Register (SFR) is the upper area of addressable memory, from address 0x80 to 0xFF.
Reason -
A Special Function Register (or Special Purpose Register, or simply Special Register) is a register within a microprocessor, which controls or monitors various aspects of the microprocessor's function.
________ can be written only once. The data cannot be erased or written over once it is saved.
Answer:
WORM (Write Once, Read Many)
Explanation:
The full meaning which means Write Once, Read Many implies that data can only be entered (or better put, written) once. Once the data has been written, the data can not be updated or deleted. However, the data being stored on WORM can be read as many times, as possible.
Hence, WORM answers the question.
Scenario
Your task is to prepare a simple code able to evaluate the end time of a period of time, given as a number of minutes (it could be arbitrarily large). The start time is given as a pair of hours (0..23) and minutes (0..59). The result has to be printed to the console.
For example, if an event starts at 12:17 and lasts 59 minutes, it will end at 13:16.
Don't worry about any imperfections in your code - it's okay if it accepts an invalid time - the most important thing is that the code produce valid results for valid input data.
Test your code carefully. Hint: using the % operator may be the key to success.
Test Data
Sample input:
12
17
59
Expected output: 13:16
Sample input:
23
58
642
Expected output: 10:40
Sample input:
0
1
2939
Expected output: 1:0
Answer:
In Python:
hh = int(input("Start Hour: "))
mm = int(input("Start Minute: "))
add_min = int(input("Additional Minute: "))
endhh = hh + (add_min // 60)
endmm = mm + (add_min % 60)
endhh += endmm // 60
endmm = endmm % 60
endhh = endhh % 24
print('{}:{}'.format(endhh, endmm))
Explanation:
This prompts the user for start hour
hh = int(input("Start Hour: "))
This prompts the user for start minute
mm = int(input("Start Minute: "))
This prompts the user for additional minute
add_min = int(input("Additional Minute: "))
The following sequence of instruction calculates the end time and end minute
endhh = hh + (add_min // 60)
endmm = mm + (add_min % 60)
endhh += endmm // 60
endmm = endmm % 60
endhh = endhh % 24
This prints the expected output
print('{}:{}'.format(endhh, endmm))
Research: Using the Internet or a library, gather information about the Columbian Exchange. Takes notes about the specific goods and diseases that traveled back and forth across the Atlantic, as well the cultural and political changes that resulted. Pay special attention to the indigenous perspective, which will most likely be underrepresented in your research.
Answer:
Small pox, cacao, tobacco, tomatoes, potatoes, corn, peanuts, and pumpkins.
Explanation:
In the Columbian Exchange, transportation of plants, animals, diseases, technologies, and people from one continent to another held. Crops like cacao, tobacco, tomatoes, potatoes, corn, peanuts, and pumpkins were transported from the Americas to rest of the world. Due to this exchange, Native Americans were also infected with smallpox disease that killed about 90% of Native Americans because this is a new disease for them and they have no immunity against this disease. Due to this disease, the population of native Americans decreases and the population of English people increases due to more settlement.