Most drones take input from a controller from either a radio joystick or a wi-fi connected tablet or laptop.
What is a drone used for?Drones are known to be devices that are said to have a lot of functions, such as monitoring climate change and it is often used to carrying out a lot of search operations after natural disasters must have occurred, and others.
Note that in the case above, Most drones take input from a controller from either a radio joystick or a wi-fi connected tablet or laptop.
Learn more about input from
https://brainly.com/question/5451281
#SPJ1
A photographer stores digital photographs on her computer. In this case the photographs are considered the data. Each photograph also includes multiple pieces of metadata including:
Date: The date the photograph was taken
Time: The time the photograph was taken
Location: The location where the photograph was taken
Device: Which camera the photo was taken with
Which of the following could the photographer NOT do based on this metadata?
A. Filter photos to those taken in the last week
B. Filter photos to those taken in a particular country
C. Filter photos to those taken of buildings
D. Filter photos to those taken with her favorite camera
Answer: Filter photos to those taken of buildings
Explanation:
Based on the metadata, the option that the photographer cannot do is to filter the photos to those taken of buildings.
• Option A -Filter photos to those taken in the last week
Date: The date the photograph was taken -
Option B - B. Filter photos to those taken in a particular country.
Location: The location where the photograph was taken
Option D - Filter photos to those taken with her favorite camera
Device: Which camera the photo was taken with
Therefore, the correct option is C.
How do you insert text into a presentation?
by clicking in a placeholder and entering text
by clicking in the task pane and entering text
by drawing a text box, clicking in it, and entering text
by selecting Text from the Insert menu
Answer:
Hello your answer is:
clicking in a placeholder and entering text
drawing a text box, clicking in it, and entering text
Explanation:
I did the assignment on edge 2021-2022
Answer: clicking in a placeholder and entering text, and
drawing a text box, clicking in it, and entering text
.A WAN connection technology that operates over the PSTN and can support multiple data and voice channels over a single line is called?
The WAN connection technology that can support multiple data and voice channels over a single PSTN line is called Integrated Services Digital Network (ISDN).
What is the name of the WAN connection technology that can support multiple data?The WAN connection technology that operates over the Public Switched Telephone Network (PSTN) and supports multiple data and voice channels over a single line is called Integrated Services Digital Network (ISDN).
ISDN is a digital communication technology that uses existing telephone lines to transmit data and voice signals.
It allows for the simultaneous transmission of voice, video, and data, providing higher bandwidth and improved quality compared to traditional analog telephone lines.
ISDN uses digital encoding techniques and supports multiple channels, enabling efficient utilization of the available bandwidth for various communication needs.
Learn more about WAN connection technology
brainly.com/question/32110977
#SPJ11
in Qbasic how I type the diference between two numbers?
Answer:
REM PROGRAM TO DISPLAY SUM OF TWO NUMBERS
CLS
INPUT “ENTER FIRST NUMBER”; A
INPUT “ENTER SECOND NUMBER”; B
S = A + B
PRINT “SUM OF TWO NUMBERS”; S
END
USING SUB PROCEDURE
DECLARE SUB SUM (A, B)
CLS
INPUT “ENTER FIRST NUMBER”; A
INPUT “ENTER SECOND NUMBER”; B
CALL SUM(A, B)
END
SUB SUM (A, B)
S = A + B
PRINT “SUM OF TWO NUMBERS”; S
END SUB
USING FUNCTION PROCEDURE
DECLARE FUNCTION SUM (A, B)
CLS
INPUT “ENTER FIRST NUMBER”; A
INPUT “ENTER SECOND NUMBER”; B
S = SUM(A, B)
PRINT “SUM OF TWO NUMBERS”; S
END
FUNCTION SUM (A, B)
SU = A + B
SUM = SU
END FUNCTION
2. Enter any two numbers and display its difference.
REM PROGRAM TO DISPLAY DIFFERENCE OF TWO NUMBERS
CLS
INPUT “ENTER FIRST NUMBER”; A
INPUT “ENTER SECOND NUMBER”; B
D = A - B
PRINT “DIFFERENCE OF TWO NUMBERS”; D
END
USING SUB PROCEDURE
DECLARE SUB DIFF (A, B)
CLS
INPUT “ENTER FIRST NUMBER”; A
INPUT “ENTER SECOND NUMBER”; B
CALL DIFF(A, B)
END
SUB DIFF (A, B)
D = A - B
PRINT “DIFFERENCE OF TWO NUMBERS”; D
END SUB
USING FUNCTION PROCEDURE
DECLARE FUNCTION DIFF (A, B)
CLS
INPUT “ENTER FIRST NUMBER”; A
INPUT “ENTER SECOND NUMBER”; B
DI = DIFF(A, B)
PRINT “DIFFERENCE OF TWO NUMBERS”; DI
END
FUNCTION DIFF (A, B)
D = A - B
DIFF = D
END FUNCTION
3. Enter any two numbers and display its product.
REM PROGRAM TO DISPLAY PRODUCT OF TWO NUMBERS
CLS
INPUT “ENTER FIRST NUMBER”; A
INPUT “ENTER SECOND NUMBER”; B
P = A * B
PRINT “PRODUCT OF TWO NUMBERS”; P
END
USING SUB PROCEDURE
DECLARE SUB PROD (A, B)
CLS
INPUT “ENTER FIRST NUMBER”; A
INPUT “ENTER SECOND NUMBER”; B
CALL PROD(A, B)
END
SUB PROD (A, B)
P = A * B
PRINT “PRODUCT OF TWO NUMBERS”; P
END SUB
USING FUNCTION PROCEDURE
DECLARE FUNCTION PROD (A, B)
CLS
INPUT “ENTER FIRST NUMBER”; A
INPUT “ENTER SECOND NUMBER”; B
PR = PROD(A, B)
PRINT “PRODUCT OF TWO NUMBERS”; PR
END
FUNCTION PROD (A, B)
P = A * B
PROD = P
END FUNCTION
4. Enter any two numbers and display its average.
REM PROGRAM TO DISPLAY AVERAGE OF TWO NUMBERS
CLS
INPUT “ENTER FIRST NUMBER”; A
INPUT “ENTER SECOND NUMBER”; B
AV = (A + B) / 2
PRINT “AVERAGE OF TWO NUMBERS”; AV
END
USING SUB PROCEDURE
DECLARE SUB AVERAGE (A, B)
CLS
INPUT “ENTER FIRST NUMBER”; A
INPUT “ENTER SECOND NUMBER”; B
CALL AVERAGE(A, B)
END
SUB AVERAGE (A, B)
AV = (A + B) / 2
PRINT “AVERAGE OF TWO NUMBERS”; AV
END SUB
USING FUNCTION PROCEDURE
DECLARE FUNCTION AVERAGE (A, B)
CLS
INPUT “ENTER FIRST NUMBER”; A
INPUT “ENTER SECOND NUMBER”; B
AVGR = AVERAGE(A, B)
PRINT “AVERAGE OF TWO NUMBERS”; AVGR
END
FUNCTION AVERAGE (A, B)
AV = (A + B) / 2
AVERAGE = AV
END FUNCTION
Explanation:
Pls mark brainliest
Answer:
its because a number segment is diffrent
Explanation:
bc thats what it is
I’m not good at coding and I’m required to do this but I’m not sure how to do it/code it, could someone code something that has all of these
Below are the steps to show you how to learn to code as a beginner.
The StepsOpt for a programming language to familiarize yourself with it.
Establish a development ambiance on your machine.
Initiate and acquaint yourself with the fundamentals - exercise comprehension of syntaxes and data types.
Hone yourself in writing basic programs and experimenting with codes.
Harness online resources like tutorials, forums, guidance documents, and all alike to further comprehend more.
Venturing into a circle of early-stage programmers for encouragement and proposals.
Pursue projects that has captivated your interests to remain stimulated and understand new techniques.
Remain continuously motivated to have the drive to educate yourself and enhance your capabilities.
Read more about coding here:
https://brainly.com/question/26134656
#SPJ4
Given the list {12 30 40 0 47}, how many swaps will occur during the outer loop execution (i = 3)? N 3 4 4 O 0
The number of swaps during the outer loop execution (i = 3) given the list {12, 30, 40, 0, 47}, the analysis of the loop execution is shown step-by-step as:
1. Assuming this is a Bubble Sort algorithm, the outer loop execution starts with i = 3.
2. The inner loop will compare and perform swaps on adjacent elements if the element on the left is greater than the element on the right.
3. When i = 3, the inner loop will perform these comparisons: (12, 30), (30, 40), and (40, 0). Since 40 is greater than 0, a swap will occur: {12, 30, 0, 40, 47}.
4. No other swaps are needed for this outer loop execution.
So, during the outer loop execution (i = 3), only 1 swap will occur.
To learn more about loop execution visit : https://brainly.com/question/31357984
#SPJ11
Choose the types of work a person in the network systems administration field might do on a regular
basis. Check all of the boxes that apply.
troubleshooting the network when there are problems with connectivity
improving the speed of the network
helping users install word-processing software
developing video games
DONE
Answer:troubleshooting the network when there are problems with the connectivity ||||||| improving network speed
Explanation:
Answer:
a and b
Explanation:
Guy above was right :)
6. Python indexes lists beginning with the number 1.
True
False
Answer:
True
Explanation:
Python is like coding
Which Call of Duty game is the best?
A. Black Ops 1-4
B. Modern Warfare 1-4
C. Infinite Warfare
D. Advanced Warfare
E. Ghosts
F. WWII
Answer:
i like ghost and modern 3
Explanation:
which output will be displayed by the following program?
print(Grade List)
print(100)
print(93)
print(82)
print(Total)
print(100+93+82)
Answer:SyntaxError: unexpected data type
Explanation:I just took the test and i tried the code in python
:) good luck on the test!!
The output for the given program will be SyntaxError: invalid syntax.
What is invalid syntax?Invalid syntax simply implies that the code one wrote cannot be interpreted as valid Python instructions. "Syntax" called to the rules and structures of a language, both spoken a s well as written.
Python creates syntax errors when it transforms source code to byte code. They usually implies that something is wrong with the program's syntax.
For illustration: The message is redundant when the colon at the end of a def statement is removed. SyntaxError: insufficient syntax.
Here are some examples of Python syntax errors: x, y = myfunction Otherwise, return x + y: print("Hello!") if mark is greater than 50 print("You succeeded!") If you arrive, print("Hi!") print("Bye!") else If flag is set, print("Flag is set!")
Thus, as per the given program, it is not showing proper format of the language so it will be showing SyntaxError.
For more details regarding programming, visit:
https://brainly.com/question/11023419
#SPJ5
What methods do you use when researching a complicated or difficult subject? What tools are most useful to narrowing down and validating your research? Explain your answers.
In this last step of initiation phase, projects are (blank). At this stage, the project is (blank) with projects that are running.
Answer:
Approved; compared.
Explanation:
Project management can be defined as the process of designing, planning, developing, leading and execution of a project plan or activities using a set of skills, tools, knowledge, techniques and experience to achieve the set goals and objectives of creating a unique product or service.
Generally, projects are considered to be temporary because they usually have a start-time and an end-time to complete, execute or implement the project plan.
Furthermore, the main purpose of project management is working toward a common goal.
This ultimately implies that, project managers should ensure adequate attention and time is taken to identify, analyze and manage capital, raw materials, people, system of tasks and other resources, so as to effectively and efficiently achieve a common goal with all project stakeholders.
The fundamentals of Project Management includes;
1. Project initiation
2. Project planning
3. Project execution
4. Monitoring and controlling of the project.
5. Adapting and closure of project.
In the last step of an initiation phase, projects are approved for execution. Also, at this stage, the project is compared with projects that are running or already being executed.
In conclusion, it is very important and essential that project managers in various organizations, businesses and professions adopt the aforementioned fundamentals in order to successfully achieve their aim, objectives and goals set for a project.
name two different colors used in the python program file window.name the type of program content that has each color ......
whoever answer this correct i will rate them 5 stars and a like .....
please urgent
In the Python program window, black is used for code and syntax, while white is used as the background.
How is this so?1. Black - The color black is typically used for the program's code and syntax. It represents the actual Python code and includes keywords, functions, variables, and other programming constructs.
2. White - The color white is commonly used as the background color in the program window. It provides a clean and neutral backdrop for the code and makes it easier to read and understand.
Learn more about python program at:
https://brainly.com/question/26497128
#SPJ1
14. A film's rated speed is a measure of its ____ to light.
A film's rated speed, also known as ISO or ASA, is a measure of its sensitivity to light.
What is a Film's Rated Speed?The sensitivity of a film to light can be measured by its rated speed, which is also referred to as ISO or ASA. It is a standardized system used to determine how much light is required to produce a usable image on the film.
A higher ISO or ASA rating means the film is more sensitive to light and will require less light to produce a well-exposed image. This can be useful in low-light situations or when using fast shutter speeds.
However, a higher rating can also result in more visible grain or noise in the final image, so photographers must balance their need for sensitivity with the desired quality of the final image.
Learn more about rated speed of films on:
https://brainly.com/question/30454862
#SPJ1
FILL THE BLANK.
most people view ______________ due to technological change as a necessary cost that is worth bearing.
Most people view disruption due to technological change as a necessary cost that is worth bearing.
What is disruption?In the business context, disruption refers to a situation where the existing market conditions are severely disrupted due to the introduction of new products, technologies, or business models.
Disruption leads to the introduction of significant changes to the current market conditions, leading to the collapse of established players in the market, which leads to the creation of new opportunities and challenges.To summarise, the most people view disruption due to technological change as a necessary cost that is worth bearing.
Learn more about technology at
https://brainly.com/question/33027368
#SPJ11
1. The purposes of traffic signs are
a. to direci, to decide, to stop.
b. to observe, to direct, to guide.
to stop, to warn, to decide.
d. to regulate, to warn, to guide.
Answer:
D. to regulate, to warn, to guide.
when a computer boots, it can get its network information through:
When a computer boots, it can obtain its network information through Dynamic Host Configuration Protocol (DHCP). DHCP is a network protocol that automatically assigns IP addresses, subnet masks, default gateways, and other network configuration parameters to devices on a network.
During the boot process, a computer can send a DHCP request to the network, typically through a DHCP client running on the operating system. The DHCP server, which is responsible for managing and allocating IP addresses, responds to the request by providing the necessary network information to the computer. This allows the computer to configure its network settings dynamically without manual configuration.
Learn more about Dynamic Host Configuration Protocol here:
https://brainly.com/question/32631521
#SPJ11
Which statement about assembly-line design is false? Choose all that apply. - Assembly line products have low variety. - Assembly line services have high variety. - Assembly lines have low volumes of output. - The goal of an assembly line layout is to arrange workers in the sequence that operations need. Which statement regarding assembly-line balancing is true? Choose all that apply. - Assembly-line balancing is not a strategic decision. - Assembly-line balancing requires information about assembly tasks and task times. - Assembly-line balancing requires information about precedence relationships among assembly tasks. - Assembly-line balancing cannot be used to redesign assembly lines.
Assembly line design is a strategy used to streamline manufacturing processes by breaking down tasks into simple and repeatable steps performed by employees. The objective of assembly line design is to establish an efficient flow of work that promotes productivity, reduces waste, and maximizes profits.
Below are the false statements about assembly-line design:
Assembly line products have low variety.Assembly line services have high variety.Assembly lines have low volumes of output. (False)
The goal of an assembly line layout is to arrange workers in the sequence that operations need.Here are the true statements regarding assembly-line balancing:
Assembly-line balancing requires information about assembly tasks and task times.Assembly-line balancing requires information about precedence relationships among assembly tasks.Assembly-line balancing cannot be used to redesign assembly lines. (False)
Assembly-line balancing is a strategic decision that entails dividing the assembly process into smaller units, assigning specific tasks to individual workers, and ensuring that each employee's tasks are consistent with their abilities and skills.
Task times and task relationships are crucial in assembly-line balancing, as the objective is to optimize production while minimizing downtime, labor, and equipment usage.
Learn more about streamline at
https://brainly.com/question/32658458
#SPJ11
backup programs can identify and remove unused files and aplications. group of answer choices true false
Backup programs can identify and remove unused files and aplications is False
Backup programs are designed to create copies of files and applications for the purpose of data protection and recovery, not to identify and remove unused files and applications. The primary function of backup programs is to make sure that important data is safely stored and can be restored in case of data loss or system failure. They typically focus on copying and preserving files and applications as they exist at the time of backup, rather than analyzing the system for unused or unnecessary elements. Identifying and removing unused files and applications is typically handled by system optimization or cleanup tools that are specifically designed for that purpose, rather than backup programs.
To know more about Backup programs visit:
brainly.com/question/32509938
#SPJ11
You have production infrastructure sitting behind one DNS domain, and for disaster recovery purposes, you have parallel infrastructure on standby behind a second domain hosted in a second AWS region. Which routing policy will automate the switchover in the event of a failure in the production system
Answer:
Failover
Explanation:
A failover is required when one set of infrastructure fails then traffic is redirected to the second set of backup infrastructure.
Digital exclusion, also known as the digital divide, separates
O
O
social media users and non-social media users.
those who have Internet access and those who don't.
those who live in poverty and those who don't.
young Internet users from old Internet users.
those who have Internet access and those who don't.
excel functions are prebuilt formulas within excel.
Formulas are mathematical equations that integrate cell references, excel values, and operators to compute results. It is not necessary to write the underlying formula when using functions because they are prebuilt formulas that can be rapidly fed values.
What do Excel's functions and formulas mean?Functions are pre-written formulas that perform calculations using specific variables, also known as inputs, in a predetermined order or structure. Functions can be used to do calculations of any complexity. The Formulas tab on the Ribbon contains the syntax for all of Excel's functions.
What is the name of the pre-written formulas in Excel?An already written formula is a function. A function performs an operation on a value (or values), then returns a new value (or values.)
To know more about excel visit:-
https://brainly.com/question/3441128
#SPJ4
# Mariah Mudd # 6/22/20 # Purpose:Things about me. def main(): print("My name is Mariah. I just turned 15. My favorite movie is Scarface. I listen to The Beatles, Elton Hercules John, and Queen 24/7. My favorite subject in school is English. I collect glass bottles. If i had 1 hour to live I would spend it riding my bike in a lightning storm. This is by far the coolest class I will take in my online school career.") main()
Answer:
I think this is nice.
Explanation:
A piece of hardware used to enter data into a computer: Output Device Backing Storage Device Programming language Input Device
Answer:
Input Device.
Explanation:
A piece of hardware used to enter data into a computer is known as an input device.
Basically, this input device is also known as peripherals and it comprises of all of the devices that are interconnected with the CPU. Some examples of input devices used with a computer includes keyboards, scanner, mouse, etc. They avail the end users the ability to send an information to the computer system for processing into a desired output.
choose what is the correct to create a function from the following
1.use def keywords
2.use empty function
3.python don,t have function
please i want answer i have ict test
In python, we use the def keyword to create functions.
A certain computer provides its users with a virtual memory space of 2^12 bytes. The computer has 2^22 butes of physical memory. The virtual memory is implimented by paging, and the page size is 4096 bytes. A user process generates the virtual address 11123456. Explain how the system establishes the corresponding physical location. Distinguish between software and hardware operations.
The system establishes the corresponding physical location for a virtual address by using the page table to translate the virtual page number to a physical page or frame number. The software operations involve manipulating the page table and performing the address translation. The hardware operations, involve directly accessing physical memory using the translated physical page .
In a system that implements virtual memory using paging, the virtual address generated by a user process needs to be translated to the corresponding physical location. The process involves both software and hardware operations.
1.
Software Operations:
The virtual address is divided into different fields: page number and offset. In this case, the page size is 4096 bytes, which means the offset field would be 12 bits (log2(4096) = 12).The page number obtained from the virtual address is used as an index to look up the page table.The page table is a data structure maintained by the operating system that maps virtual page numbers to physical page numbers or frame numbers.The page table entry corresponding to the virtual page number is retrieved, which contains the physical page or frame number.The offset value from the virtual address is combined with the physical page or frame number to obtain the final physical address.2.
Hardware Operations:
Once the physical page or frame number is obtained from the page table, it is used to access the physical memory directly.The offset value from the virtual address determines the specific byte within the physical page or frame that needs to be accessed.To learn more about virtual memory: https://brainly.com/question/29846554
#SPJ11
Identify a characteristic that is a disadvantage of cloud-based hosting.
The characteristic that is a disadvantage of cloud-based hosting is loss of control over data location.
What is Cloud hosting?This is known to be a kind of applications and websites that often makes them accessible via cloud resources. Here, a network of linked virtual and physical cloud servers is said to be the one that host the application or website.
The Disadvantages of cloud computing are:
There is a data loss or theft.There is also data leakage.There is account or service hijacking, etc.See options below
a. ongoing support costs
b. increased management requirements
c. significant development effort
d. loss of control over data location
Learn more about cloud-based hosting from
https://brainly.com/question/19057393
A program executes 15 billion instructions. You are running this program in two systems: System A: has a processor with 3 GHz and an average CPI of 2.0 System B: has an average CPI 1.2 and execution time is 1.5 X more than system A. What is the clock speed of processor in system B.
Answer:
Clock speed of B = 7.5 GHz
Given:
Processor speed of A = 3 GHz
Average CPI of A = 2
Average CPI of B = 1.2
Execution time of B is 1.5 times then A
Find:
Clock speed of B
Computation:
Execution time = CPI × Processor speed × Instructions
Execution time of B = 1.5[Execution time of A]
1.2 × Clock speed of B[15 billion] = 1.5[2 × 3][15 billion]
Clock speed of B = 7.5 GHz
10 EASY POINTS❗️
1. If I give brainlist, will one of my brainlist be gone?
2. How do I make a question with 5 points instead of 10?
Answer:
You can't make something 5 points bc 10 is the minimum I believe. As for the BRAINIEST I'm not sure
Answer:
your brainiest wont be gone and there should be a button under where you type the question to change the point value
Give the usage and syntax of AVERAGE function.