this can provide illusion of fast movement it is often used in videos to censor information for security or density​

Answers

Answer 1

Answer:

Blurring can provide the optical illusion of a fast movement. It is often used in videos to hide sensitive or age-inappropriate information, the protection of identities (hence security) or just to provide decency.

Explanation:

Mostly used during animated videos where unlike (real videos) the blur does not occur naturally, the blur is used to make speed believable. Speed invigorates, and highlights intensity. Blurring still images can help to make more realistics motions of speed. An example where lots of blurring is used as prostproduction effects is in Flash.

Cheers


Related Questions

A computer never gets tired or bored while working for a long time _______​

Answers

Answer:

Diligence

Explanation:

The computer possess several qualities including tbe ability to be consistent with its task and accuracy of its output. When describing a person or machine that delivers so much over a long periodof time without being weary, bored or tired, such person or machine could be described as being Diligent. Depending on the task a computer is being used to execute, computer machines are usually being used in a non-stop manner. For instance, firms that works on shift basis may have 3 to 4 working shifts per day with each shift making use of the same computer used by the previous shift everyday for several number of days. Example are telecommunications customer service firms who work on a 24 hours basis.



Every Java statement ends with: *

Period
Colon
Double quote
Semicolon

Answers

Answer:

semicolon is the answer

semi colon i did that test

what is the meaning of photography​

Answers

Answer and Explanation:

the process or art of producing images of objects on sensitized surfaces by the chemical action of light or of other forms of radiant energy, as x-rays, gamma rays, or cosmic rays.

[tex] \sf\underline{ Photography} \:  is \: the \: way \: / \: process \: / \: art \\ \sf \: of \: taking \: beautiful \: pictures \\ \sf \: usually \: of \: amazing \: sceneries \: (it \: can \: be \: of \: other \: \\ \sf things \: as \: well) \: for \: visual \: pleasure. \: The \: attached \: picture \\ \sf \: is \: an \: example \: for \: a \: good \\ \sf\: type \: of \: photography. \: A \: person \: who \: practices \: the \: \\\sf art \: of \: photography \: is \: known \: as \: a \: \underline{ photographer}.[/tex]

Write a C program that uses a while statement to determine and print the largest of 10 numbers input by the user. Your program should use three variables, as follows: a) counter--A counter to count to 10 (i.e., to keep track of how many numbers have been input and to determine when all 10 numbers have been processed). by) number--The current number input to the program. c) largest--The largest number found so far.

Answers

Answer:

The program in C is as follows:

#include <limits.h>

#include <stdio.h>

int main(){

   int count = 0;

   int number, largest = INT_MIN;

   while(count<10){

       scanf("%d",&number);

       if(number>largest){

           largest = number;        }

       count++;    }

   printf("Largest: %d",largest);

   return 0;

}

Explanation:

This initializes count to 0

   int count = 0;

This declares number and largest; largest is also initialized to the smallest integer

   int number, largest = INT_MIN;

This loop is repeated while count is less than 10

   while(count<10){

Get each number

       scanf("%d",&number);

If current input is greater than the largest integer, largest is updated to the current input

       if(number>largest){

           largest = number;        }

Increase count by 1

       count++;    }

Print the largest

   printf("Largest: %d",largest);

mention three external power problems that affect computer's internal power supply ,if computer is plugged in the wall. ​

Answers

Answer:

Explanation:  here are three subsets of regulated power supplies: linear, switched, and battery-based. Of the three basic regulated power supply designs, linear is the least complicated system, but switched and battery power have their advantages.

name any two objectives of a business​

Answers

Explanation:

Growth – Another important objective of business is to achieve growth. The growth should be in terms of increase in profit, revenue, capacity, number of employees and employee prosperity, etc.

Stability – Stability means continuity of business. An enterprise or business should achieve stability in terms of customer satisfaction, creditworthiness, employee satisfaction etc. A stable organization can easily handle changing dynamics of markets.

21
What does the following code print?
if 4 + 5 == 10:
print("TRUE")
else:
print("FALSE")
print("TRUE")
(2 Points)

Answers

Answer:

error

Explanation:

All of the following are design elements of a landing page that instill trust in site visitors, except Group of answer choices secure payment methods social media presence large, clear, colorful action buttons visible contact information

Answers

Answer:

large, clear, colorful action buttons.

Explanation:

A website refers to the collective name used to describe series of web pages linked together with the same domain name while a webpage is the individual HTML document (single page) that makes up a website with a unique uniform resource locator (URL).

When users (people) visit a particular website (homepage, index page or landing page) for the first time, there are certain design elements that when seen would give them a sense of security, instill trust and guarantees confidentiality of all user data (informations).

Generally, secure payment methods, social media presence, and visible contact information are design elements of a landing page that instill trust in site visitors.

However, large, clear, and colorful action buttons wouldn't do or cause any of the aforementioned actions.

what is web browser ?​

Answers

Answer:

A web browser, or simply "browser," is an application used to access and view websites.

3. It is used to measure the resistance on ohms and voltage that flow in circuit both AC and DC current. A. Gadget C. Electrical tape B. Voltage D. Multi-tester VOM​

Answers

Answer:

the answer is D. Multi -tester VOM

It is used to measure the resistance on ohms and voltage that flow in the circuit both AC and DC current is D. Multi-tester VOM​.

What does an ammeter degree?

Ammeter, tool for measuring both direct or alternating electric powered modern, in amperes. An ammeter can degree an extensive variety of modern values due to the fact at excessive values most effective a small part of the modern is directed thru the meter mechanism; a shunt in parallel with the meter consists of the main portion. ammeter.

A multimeter or a multitester additionally referred to as a volt/ohm meter or VOM, is a digital measuring tool that mixes numerous size capabilities in a single unit. A traditional multimeter can also additionally encompass capabilities consisting of the capacity to degree voltage, modern and resistance.

Reda more about the Voltage:

https://brainly.com/question/24858512

#SPJ2

Write a program that first reads in the name of an input file and then reads the input file using the file.readlines() method. The input file contains an unsorted list of number of seasons followed by the corresponding TV show. Your program should put the contents of the input file into a dictionary where the number of seasons are the keys, and a list of TV shows are the values (since multiple shows could have the same number of seasons).
Sort the dictionary by key (least to greatest) and output the results to a file named output_keys.txt, separating multiple TV shows associated with the same key with a semicolon (;). Next, sort the dictionary by values (alphabetical order), and output the results to a file named output_titles.txt.
Ex: If the input is:
file1.txt
and the contents of file1.txt are:
20
Gunsmoke
30
The Simpsons
10
Will & Grace
14
Dallas
20
Law & Order
12
Murder, She Wrote
the file output_keys.txt should contain:
10: Will & Grace
12: Murder, She Wrote
14: Dallas
20: Gunsmoke; Law & Order
30: The Simpsons
and the file output_titles.txt should contain:
Dallas
Gunsmoke
Law & Order
Murder, She Wrote
The Simpsons
Will & Grace
Note: There is a newline at the end of each output file, and file1.txt is available to download.
currently, my code is:
def readFile(filename):
dict = {}
with open(filename, 'r') as infile:
lines = infile.readlines()
for index in range(0, len(lines) - 1, 2):
if lines[index].strip()=='':continue
count = int(lines[index].strip())
name = lines[index + 1].strip()
if count in dict.keys():
name_list = dict.get(count)
name_list.append(name)
name_list.sort()
else:
dict[count] = [name]
return dict
def output_keys(dict, filename):
with open(filename,'w+') as outfile:
for key in sorted(dict.keys()):
outfile.write('{}: {}\n'.format(key,';'.join(dict.get(key))))
print('{}: {}\n'.format(key,';'.join(dict.get(key))))
def output_titles(dict, filename):
titles = []
for title in dict.values():
titles.extend(title)
with open(filename,'w+') as outfile:
for title in sorted(titles):
outfile.write('{}\n'.format(title))
print(title)
def main():
filename = input()
dict = readFile(filename)
if dict is None:
print('Error: Invalid file name provided: {}'.format(filename))
return
output_filename_1 ='output_keys.txt'
output_filename_2 ='output_titles.txt'
output_keys(dict,output_filename_1)
print()
output_titles(dict,output_filename_2)
main()
The problem is that when I go to submit and the input changes, my output differs.
Output differs. See highlights below. Special character legend Input file2.txt Your output 7: Lux Video Theatre; Medium; Rules of Engagement 8: Barney Miller;Castle; Mama 10: Friends; Modern Family; Smallville;Will & Grace 11: Cheers;The Jeffersons 12: Murder, She Wrote;NYPD Blue 14: Bonanza;Dallas 15: ER 20: Gunsmoke; Law & Order; Law & Order: Special Victims Unit 30: The Simpsons Expected output 7: Rules of Engagement; Medium; Lux Video Theatre 8: Mama; Barney Miller; Castle 10: Will & Grace; Smallville; Modern Family; Friends 11: Cheers; The Jeffersons 12: Murder, She Wrote; NYPD Blue 14: Dallas; Bonanza 15: ER 20: Gunsmoke; Law & Order; Law & Order: Special Victims Unit 30: The Simpsons

Answers

Answer:

Explanation:

The following is written in Python. It creates the dictionary as requested and prints it out to the output file as requested using the correct format for various shows with the same number of seasons.The output can be seen in the attached picture below.

mydict = {}

with open("file1.txt", "r") as showFile:

 for line in showFile:

   cleanString = line.strip()

   seasons = 0

   try:

       seasons = int(cleanString)

       print(type(seasons))

   except:

       pass

   if seasons != 0:

       showName = showFile.readline()

       if seasons in mydict:

           mydict[seasons].append(showName.strip())

       else:

           mydict[seasons] = [showName.strip()]

f = open("output.txt", "a")

finalString = ''

for seasons in mydict:

   finalString += str(seasons) + ": "

   for show in mydict[seasons]:

       finalString += show + '; '

   f.write(finalString[:-2] + '\n')

   finalString = ''

f.close()

5. Name the special window that displays data, when you insert a chart.

a) Datasheet b) Database c) Sheet​

Answers

Answer:

A.Datasheet

Explanation:

I hope it's helpful

what is the Is option that prints the author of a file​

Answers

Answer:

Print.. is your answer...

kkklkkklkklklkklklklkklkl

Answers

Answer:

???

Explanation:

???

Yes yes
Very good
Extraordinary

Consider the following program in which the statements are in the incorrect order. Rearrange the statements so that the program prompts the user to input the height an the radius of the base of a cylinder and outputs the volume and surface area of the cylinder. Format the output to two decimal places.
#include
#include
int main()
{}
double height;
cout << "Volume of the cylinder = "
<< PI * pow(radius, 2.0)* height << endl;
cout << "Enter the height of the cylinder: ";
cin >> radius;
cout << endl;
return 0;
double radius;
cout << "Surface area: "
<< 2 * radius * + 2 * PI * pow(radius, 2.0) << endl;
cout << fixed << showpoint << setprecision(2);
cout << "Enter the radius of the base of the cylinder: ";
cin >> height;
cout << endl;
#include
const double PI = 3.14159;
using namespace std;

Answers

Answer:

The arrange code is as follows:

#include<iomanip>

#include<iostream>

#include<math.h>

using namespace std;

const double PI = 3.14159;

int main(){

double height;

double radius;

cout << "Enter the height of the cylinder: ";

cout << endl;

cin >> height;

cout << "Enter the radius of the base of the cylinder: ";

cout << endl;

cin >> radius;

cout << fixed << showpoint << setprecision(2);

cout << "Volume of the cylinder = "<< PI * pow(radius, 2.0)* height << endl;

cout << "Surface area: "<< 2 * radius * + 2 * PI * pow(radius, 2.0) << endl;

return 0;

}

Explanation:

Required

Rearrange the program

There are no one way to solve questions like this. However, a simple guide is as follows:

All header files must be called first (i.e #include....)

Followed by the namespaces (std)

if the program uses constant, the constant must be declared and initialized.

e.g. const double PI = 3.14159;

Next, all variables and must be declared (e.g. double radius)

Next, all inputs must be taken before the values of the variables can be used (e.g. cin >> height;)

If the inputs used prompts, the prompt must be before the inputs.

Next, perform all computations then output the results

Làm thế nào để hack mật khẩu trên 1 trang web

Answers

Heuwieieididbzhdysudududhhxydydy
Trang web Hacker mật khẩu
Password Hacker hoặc Cracker đề cập đến cá nhân cố gắng bẻ khóa từ, cụm từ hoặc chuỗi ký tự bí mật được sử dụng để truy cập vào dữ liệu được bảo mật. Hack mật khẩu thường được gọi là bẻ khóa mật khẩu. Trong trường hợp chính hãng, kẻ tấn công mật khẩu cố gắng khôi phục mật khẩu từ dữ liệu được truyền qua hoặc được lưu trữ trên máy tính.

Quản trị viên hệ thống có thể sử dụng hack mật khẩu như một chiến thuật phòng ngừa, để giúp người dùng hợp pháp lấy lại mật khẩu đã quên. Bên cạnh đó, nó cũng giúp họ dễ dàng theo dõi mật khẩu bị tấn công để sửa đổi chúng nhằm tăng tính bảo mật.

Tội phạm mạng và những kẻ lừa đảo trực tuyến hack mật khẩu để có được quyền truy cập vào một hệ thống an toàn. Mục đích của họ là độc hại và nó thường xoay quanh việc kiếm tiền thông qua các phương tiện bất hợp pháp.

Làm thế nào để Crack và Hack mật khẩu?
Về cơ bản, có hai phương pháp được sử dụng để hack mật khẩu - một là phương pháp vũ phu và phương pháp kia là bằng cách đoán.

Brute Force: Trong phương pháp brute force, một hacker có mật khẩu cố gắng nhập mọi tiềm năng. Hãy thử cWatch ngay hôm nay! trình tự mật khẩu để tìm ra mật khẩu. Cho đến nay, phương pháp này là phương pháp hiệu quả để kẻ tấn công mật khẩu kết luận về hàm băm mật khẩu, hoặc tính toán toán học hoặc thuật toán, được sử dụng để mã hóa hoặc mã hóa dữ liệu mật khẩu.

Đoán: Trong phương pháp đoán, một hacker mật khẩu có thể sử dụng thông tin cá nhân của chủ sở hữu mật khẩu để tìm ra mật khẩu. Ngày sinh, vật nuôi, người thân hoặc thông tin khác của chủ sở hữu mật khẩu đều được sử dụng để đoán mật khẩu chính xác.

Which of the following is NOT a feature of unclustered index
A. There can be several unclustered indexes on a data file
B. unclustered indexes are cheap to maintain and update
C. un Clustered index has the same ordering of data records as that of the data entries in the database
D. unClustered index has a different ordering of data records as that of the data entries in the database​

Answers

Answer:

C. Unclustered index has the same ordering of data records as that of the data entries in the database

Explanation:

Indexes are used to split up queries in an SQL server or database management system DBMS.

There are two types of indexes namely clustered indexed and unclustered indexes.

Clustered indexes define the order in which data is stored in a table while unclustered index does not sort the order in a table.

In an unclustered index, the data table and the index are stored in different places, they are easy to maintain and update since they do not follow a particular order and there can be several indexes in a data file since the data table is stored differently from the index file.

So, all the other options except C are features of unclustered indexes since  unclustered index does not have the same ordering of data records as that of the data entries in the database.

So, C is the answer.

the central processing unit(CPU)is responsible for processing all information from program run by your computer.​

Answers

Answer:

This is a true statement.

Further Explanation:

The CPU is technically the brain of a computer, containing all the circuitry required to process input, store data, and output results.

52. Which of the following numbering system is used by the computer to display numbers? A. Binary B. Octal C. Decimal D. Hexadecimal​

Answers

Answer:

Computers use Zeroes and ones and this system is called

A. BINARY SYSTEM

hope it helps

have a nice day

A.Binary B. octal is the correct answer

Fill in the necessary blanks to list the name of each trip that does not start in New Hampshire (NH) Use the Colonial Adventure Tour Database listing found on the Canvas webpage under Databases or in the text.
SELECT TripName
FROM______
WHERE Trip____ ____NH:

Answers

Answer:

SELECT TripName

FROM AllTrips

WHERE Trip NOT LIKE ‘NH%'

Explanation:

Required

Fill in the blanks

The table name is not stated; so, I assumed the table name to be AllTrips.

The explanation is as follows:

This select the records in the TripName column

SELECT TripName

This specifies the table where the record is being selected

FROM AllTrips

This states the fetch condition

WHERE Trip NOT LIKE ‘NH%'

Note that:

The wild card 'NH%' means, record that begins with NHNot means opposite

So, the clause NOT LIKE 'NH%' will return records that do not begin with NH

The purpose of a good web page design is to make it

Answers

Answer:

Hi , so your answer is that a good web page design is to make it easy to use and meaningful and able to help people .

Explanation:

Really hope i helped , have a nice day :)

Answer: helpful for everyone

Explanation:

some student need help  so then he can't find the answer in the other websites so it is department about communication

Which of the following is a reason to use storyboarding? (Select all that apply)
Group of answer choices

To have all your ideas in one place

Storyboarding is not useful, so you don’t need to worry about using it

To conceptualize design ideas

To present ideas to a client

Answers

Answer:

To have all your ideas in one place

To conceptualize design ideas

To present ideas to a client

Explanation:

A storyboard refera to a graphic organizer which consists of images which are displayed in sequence in order to pre-visualise an animation, motion picture, etc.

It is important as it conveys how a story will flow, and also help in conceptualizing design ideas. Based on the options given, the correct options are:

• To have all your ideas in one place

• To conceptualize design ideas

• To present ideas to a client

Your IaaS cloud company has announced that there will be a brief outage for regularly scheduled maintenance over the weekend to apply a critical hotfix to vital infrastructure. What are the systems they may be applying patches to

Answers

Answer: Load Balancer

Hypervisor

Router

Explanation:

The systems that they may be applying the patches to include load balancer, hypervisor and router.

The load balancer will help in the distribution of a set of tasks over the resources, in order to boost efficiency with regards to processing.

A hypervisor is used for the creation and the running of virtual machines. The router helps in the connection of the computers and the other devices to the Internet.

An alumnus (former student) has recently donated a large amount of money to your school. How do you think the funds should be spent? Create a multimedia presentation that can be used to convince school officials to use the money in the way you think is best for the school. " does anyone have a pdf file I could use to hand in I'll pay$​

Answers

Answer:

It was a beautiful Monday morning at City Honors College Preparatory School. A student who graduated last year was making their way to the main office, and then after ten minutes they came out and that person gave me a smile. I went inside the office and I heard Mrs. Brown and Mrs. Wilson talking about a large amount of money that was donated to our school by an alumnus. It was a nice gesture from that person. Mrs. Brown said that they needed ways to think of how to use the money for the best of the school. I had a few ideas in mind.

Field trips would be a great way for us to make good use of the money donated by the alumnus. This can be a very educational and also a fun experience for all of us in school. This can help us learn new things. For example, if we go to a museum we can learn a lot about history which will help us understand it more if we have the class already. This will also give us an opportunity to socialize and interact with each other as we are being educated and having a fun time.

The money donated would greatly help us buy new school supplies. We are in need of new books and many more supplies. It would be nice for every teacher to have new supplies so they can be able to teach us the way we should be taught. In some cases, when I am in class the teacher has ran out of markers so we have to borrow one from another teacher. We could use the money to buy markers, pencils, pens, erasers, and any other school supplies we need. This money could help us buy more books so that every teacher has a class set and also a book for every student take home.

Every year, seniors have problems paying for their senior events such as prom, senior pictures, and grad night. The school can also use this money to help out the seniors. It would be such a good idea because it will help us save money from our pockets. Not only can it be used towards the seniors, but as well as for the underclassmen to help them pay for winter formal or for any other event that involves the whole school. It will help us all out and many more people will be able to attend the events. This will truly save money from our pockets that will help us out pay other important things that we might need in the future.

I really appreciate the person that made the donation to our school. They have given us a gift and it is something we will use wisely that will benefit our school, students and the teachers as well. The three ideas I proposed are adequate and I think they are the best ideas that we can follow as to how we should spend the money donated to our school. These are the ideas I have and the best ways to spend it for the convenience of our school, students, and the teachers.

electronic age,what format/equipment people use to communicate with each other?​

Answers

Answer:

They share or broadcast information by making a letter or information in a papyrus material. in industrial age they use Telegraph or typewriter to communicate each other.

In electronic age, people use electronic medium for communication, like emails and messegers.

Write a procedure named Read10 that reads exactly ten characters from standard input into an array of BYTE named myString. Use the LOOP instruction with indirect addressing, and call the ReadChar procedure from the book's link library. (ReadChar returns its value in AL.)

Answers

Answer:

Following are the solution to the given question:

Explanation:

Since a procedure has the Read10 parameter, the 10 characters from the input file are stored in the BYTE array as myString. The LOOP instruction, which includes indirect addressing and also the call to the ReadChar method, please find the attached file of the procedure:

Write a program in Python representing 7 logic gates:

AND
NAND
OR
NOR
XOR
XNOR
NOT
Accept (only) two inputs to create all outputs.
Use the if statement to perform the Boolean logic.
Only accept numeric input.
If a number is greater than 0 treat it as a 1.
Specify in your output and in the beginning of the code (through print statements) which gate the code represents.
Comment your code.

Answers

Answer:

The program in python is as follows:

a = int(input("A: "))

b = int(input("B: "))

if a != 0:

   a= 1

if b != 0:

   b = 1

print("A AND B",end =" ")

if a == b == 1:

   print("True")

else:

   print("False")

print("A NAND B",end =" ")

if a == 0 or b == 0:

   print("True")

else:

   print("False")

print("A OR B",end =" ")

if a == 1 or b == 1:

   print("True")

else:

   print("False")

print("A NOR B",end =" ")

if a == 1 or b == 1:

   print("False")

else:

   print("True")

print("A XOR B",end =" ")

if a != b:

   print("True")

else:

   print("False")

print("A XNOR b",end =" ")

if a == b:

   print("True")

else:

   print("False")

print("NOT A",end =" ")

if a == 1:

   print("False")

else:

   print("True")

print("NOT B",end =" ")

if b == 1:

   print("False")

else:

   print("True")

Explanation:

These get inputs for A and B

a = int(input("A: "))

b = int(input("B: "))

a and b are set to 1 for all inputs other than 0

if a != 0:

   a= 1

if b != 0:

   b = 1

This prints the AND header

print("A AND B",end =" ")

AND is true if only A and B are 1

if a == b == 1:

   print("True")

else:

   print("False")

This prints the NAND header

print("A NAND B",end =" ")

NAND is true if one of A or B is 0

if a == 0 or b == 0:

   print("True")

else:

   print("False")

This prints the OR header

print("A OR B",end =" ")

OR is true if one of A or B is 1

if a == 1 or b == 1:

   print("True")

else:

   print("False")

This prints the NOR header

print("A NOR B",end =" ")

NOR is false if one of A or B is 1

if a == 1 or b == 1:

   print("False")

else:

   print("True")

This prints the XOR header

print("A XOR B",end =" ")

XOR is true if A and B are not equal

if a != b:

   print("True")

else:

   print("False")

This prints the XNOR header

print("A XNOR b",end =" ")

XNOR is true if a equals b

if a == b:

   print("True")

else:

   print("False")

This prints NOT header for A

print("NOT A",end =" ")

This prints the opposite of the input

if a == 1:

   print("False")

else:

   print("True")

This prints NOT header for B

print("NOT B",end =" ")

This prints the opposite of the input

if b == 1:

   print("False")

else:

   print("True")

¿Como se adaptan a un proceso productivo relacionado con el taller de actividad tecnología que cursas?

Answers

Abcdefghijklmopqrstuvwxyz

Design traffic lights at an intersection of a city.  North and South (up and down) are going to be a main highway, East and West (right and left) will be a smaller cross street.  There will be no turn signals and no cross walks.  You only need to build/code one set of lights for each street (one set of green, yellow, and red for the highway, and another set for the cross street).  You do not need to build actual traffic lights or an intersection. 

Answers

Answer:

Explanation:

The following code is written in Java. In order to code this efficiently, I created a class for the trafficLights. The class contains the currentLight, and the streetType as variables and contains a constructore, getter and setter methods, and a method to turn to the next light in the sequence. Then I created 4 objects of TrafficLights for the highways and the streets.

class Brainly {

   public static void main(String[] args) {

       TrafficLights highwaySouth = new TrafficLights("Highway", "green");

       TrafficLights highwayNorth = new TrafficLights("Highway", "green");

       TrafficLights streetEast = new TrafficLights("Street", "yellow");

       TrafficLights streetWest = new TrafficLights("Street", "red");

   }

}

class TrafficLights {

   String streetType, currentLight;

   public TrafficLights(String streetType, String currentLight) {

       this.streetType = streetType;

       this.currentLight = currentLight;

   }

   public void nextLight() {

       if (this.currentLight == "green") {

           this.currentLight = "yellow";

       } else if (this.currentLight == "yellow") {

           this.currentLight = "red";

       } else {

           this.currentLight = "green";

       }

   }

   public String getStreetType() {

       return streetType;

   }

   public void setStreetType(String streetType) {

       this.streetType = streetType;

   }

   public String getCurrentLight() {

       return currentLight;

   }

   public void setCurrentLight(String currentLight) {

       this.currentLight = currentLight;

   }

}

Construir un pseudocódigo que permita ingresar la temperatura de una ciudad. Si ingresa un valor mayor a 20 debe mostrar "Temperatura alta", si es mayor de 10 y menor o igual a 20 debe mostrar "Temperatura normal", caso contrario debe mostrar "Temperatura baja"

Answers

Answer:

VARIABLES

Real temperatura

ALGORITMO

Si temperatura > 20 haga:

Escriba "Temperatura alta"

Fin-Si

Si temperatura > 10 y temperatura <= 20 haga:

Escriba "Temperatura normal"

Fin-Si

Sino:

Escriba "Temperatura baja"

Fin-Si

Explanation:

A continuación, describimos el pseudocódigo para lograr las funcionalidades deseadas:

VARIABLES

Real temperatura

ALGORITMO

Si temperatura > 20 haga:

Escriba "Temperatura alta"

Fin-Si

Si temperatura > 10 y temperatura <= 20 haga:

Escriba "Temperatura normal"

Fin-Si

Sino:

Escriba "Temperatura baja"

Fin-Si

Other Questions
What is the solution to the equation [tex] \frac{1}{4} x + 2 = - \frac{5}{8}x - 5 [/tex] A heat engine with 0.100 mol of a monatomic ideal gas initially fills a 3000 cm3 cylinder at 800 K. The gas goes through the following closed cycle Isothermal expansion to 5000 cm3 ? Part A How much work does this engine do per cycle? Express your answer with the appropriate units. sochoric cooling to 200 K -Isothermal compression to 3000 cm3. - Isochoric heating to 800 K Value Units Part B What is its thermal efficiency? Express your answer with the appropriate units. which one is wronga.knock-knockedb.found-foundedc.spend-spendedd.invite-invited What is the monthly payment on a 15-year loan of $57,900 if the annual interest rate is 12%? which chronic disease is related to poor diet? 5. If you have more of one thing you must have less of another applies to the principle ofopportunity.a. trueb. false On a piece of paper, graph y = 3x - 2. Then determine which answer choicematches the graph you drew. Find the slope of the line.Identify the solution that has the correct graph and the correct slope. Solve for X:-2(x+2) < 14 What is the area of this figure? Round to the tenth if necessary. If you have 36 ft of fencing, what are the bases and side lengths of the different parallelograms you could enclose with the fencing? Consider only whole-number dimensions. skater with a mass of 50.0 kg slides across an icypond with negligible friction. As he approaches afriend, both he and his friend hold out their hands,and the friend exerts a force in the direction oppo-site to the skater's movement, which slows the skat-er's speed from 2.0 m/s to 1.0 m/s. What is thechange in the skater's kinetic energy?A. 25 JC. 100JB. -75JD. -150J How is the equilibrium of an ecosystem maintained? question 1: [tex]f(x) = {x}^{2}[/tex]and[tex]k(x)=2x + 1[/tex]im supposed to simplify [tex](k \times f)(x)[/tex] the bay of bengal is to my east and chhattisgarh lies to my west the name of my capital starts with b I am known for the sun temple who am i A box has two balls, one white and one red. We select one ball, put it back in the box, and select a second ball (sampling with replacement). Find the probability of the following events:a. Let F = the event of getting the white ball twice.b. Let G = the event of getting two balls of different colors.c. Let H = the event of getting white on the first pick.d. Are F and G mutually exclusive?e. Are G and H mutually exclusive? log (3x+5)=log (2x-7) PLEASE HELP 25 POINTS. If you apply the changes below to the quadratic parent function, fx) = x2,what is the equation of the new function?.Shift 1 unit left..Vertically stretch by a factor of 3. Reflect over the x-axis. what points are the vertices of this polygon Please Help Me !!!The way through the woods mind map. Which number best represents the slope of the graphed line?