if (x % 5 == 0 && x % 3 == 0)
System.out.print(x);
Option A. prints the value of the variable x if it is divisible by both 3 and 57
What is System.out.print(x) ?This statement or the code is used in programming language to print the arguments which are passed through it. Results are displayed on the screen using the print() method. Typically, an objectname is used to call a method.
System. out is the code representing the output stream which means that where the output will go. . It is set to console by default. However, you can alter it to something else, like a text file or some other one. In large applications, logging is its primary usage.
to know more about System.out.print(x) , visit
https://brainly.com/question/14696952
#SPJ4
Complete question:
Which of the following statements prints the value of the variable x if it is divisible by both 3 and 57?
A.) if (x % 5 == 0 && x % 3 == 0)
System.out.print(x);
B.) if (x % 5 = 0 && x % 3 = 0)
System.out.print(x);
C.) if (x % 5 = 0 ^ x % 3 = 0)
System.out.print(x);
D.) if (x % 5 == 0 ^ x % 3 == 0)
System.out.print(x);
Looking at the code below, what is the height of your GUI window?
setSize(500,400);
100
500
400
900
Answer:
Doey
So you gotta doey, it should be 900, the doey is sometimes wrong so be patient
What is a Class 3 SD card?
Answer: Class 3 will support at least 30MBs write speed.
Explanation:
(TCO C) When a remote user attempts to dial in to the network, the network access server (NAS) queries the TACACS+ server. If the message sent to the server is REJECT, this means _____.
Answer:
The correct answer to the following question will be "The user is prompted to retry".
Explanation:
NAS seems to be a category of server system a broader open internet as well as web through in-house and perhaps remotely associated user groups.
It handles as well as provides linked consumers the opportunity to provide a collection of network-enabled applications collectively, thereby integrated into a single base station but rather portal to infrastructure.Unless the text or response sent to the server seems to be REJECT, this implies that the authentication process continued to fail and therefore should be retried.Considering the following part of the database to keep track of students and their marks for the courses that they follow.
Student(sid, sname, year)
Registered(sid, cid, mark, grade)
Course(cid, cname, no_credit, deptid)
Which of the following sequence of operations would list the names of students who have not registered for any course?
To list the names of students who have not registered for any course, we can use the following sequence of operations:
Retrieve all student IDs (sid) from the Student table.Retrieve all student IDs (sid) from the Registered table.Perform a LEFT JOIN between the two sets of student IDs, filtering out the matching records.Retrieve the names (sname) of the students from the resulting set.How can we list the names of students who have not registered for any course?To obtain the names of students who have not registered for any course, we need to compare the student IDs between the Student and Registered tables.
By performing a LEFT JOIN and filtering out the matching records, we will be left with the students who have not registered for any course. Finally, we can retrieve their names from the resulting set to list them.
Read more about sequence of operations
brainly.com/question/550188
#SPJ1
Infringement Less than 13km/h over the speed limit At least 13km/h but not more than 20km/h over the speed limit More than 20km/h but not more than 30km/h over the speed limit More than 30km/h but not more than 40km/h over the speed limit More than 40km/h over the speed limit Penalty amount $177 $266 $444 $622 $1.245 Demerit points 1 3 4 6 8 Note: the way the government website has written this (and we've copied it) is NOT efficient in terms of decision structures. This written for each condition to stand alone (if, if, if) but we can tell its mutually exclusive and so know a better tool for the job don Avoid a 6-month suspension by writing a program to ask for the user's: • speed and the • speed limit
program in python?
The example of the program in Python to help one to calculate the penalty amount as well as the demerit points based on the speed and speed limit provided by the user is given in the code below
What is the program?python
def calculate_penalty(speed, speed_limit):
penalty_amount = 0
demerit_points = 0
if speed <= speed_limit:
return penalty_amount, demerit_points
overspeed = speed - speed_limit
if overspeed <= 13:
penalty_amount = 177
demerit_points = 1
elif overspeed <= 20:
penalty_amount = 266
demerit_points = 3
elif overspeed <= 30:
penalty_amount = 444
demerit_points = 4
elif overspeed <= 40:
penalty_amount = 622
demerit_points = 6
else:
penalty_amount = 1245
demerit_points = 8
return penalty_amount, demerit_points
# Get user input
speed = int(input("Enter the recorded speed (in km/h): "))
speed_limit = int(input("Enter the speed limit (in km/h): "))
# Calculate penalty and demerit points
penalty, points = calculate_penalty(speed, speed_limit)
# Display the results
print("Penalty amount: $", penalty)
print("Demerit points: ", points)
Read more about python here:
https://brainly.com/question/30113981
#SPJ1
A queuing model that assumes four departure channels, exponentially distributed departures, and exponentially distributed arrivals is an example of which type of queue.
For a given gate, tPHL = 0.05 ns and tPLH = 0.10 ns. Suppose that an inertial delay model is to be developed from this information for typical gate-delay behavior.
Assuming a positive output pulse (LHL), what would the propagation
delay and rejection time be?
The rejection time (time for the output to remain stable at low after input changes from high to low) is also 0.05 ns.
How to determine the delaysPropagation Delay:
The propagation delay (tPHL) is given as 0.05 ns (nanoseconds).
This represents the time it takes for the output to transition from a high to a low level after the input changes from a high to a low level.
Propagation Delay (tPHL) = 0.05 ns
Rejection Time:
The rejection time (tRHL) is the minimum time required for the output to remain stable at a low level after the input changes from a high to a low level before the output starts to transition.
Rejection Time (tRHL) = tPHL
Hence = 0.05 ns
Therefore, for the given gate and assuming a positive output pulse (LHL):
Read more on delay model here https://brainly.com/question/30929004
#SPJ1
A sawmill uses a system of blowers to remove sawdust from the working areas of the mill. The flow in the ducts must be controlled to be sure that enough air is being pulled out to keep the air in the mill clean.
The airflow is monitored using a pitot tube mounted in the center of the large duct leading to the dust collection system and main blower. When the mill was first opened, the airflow in the building was checked, and the correct position of the liquid in the pitot was marked. The blower is checked daily to keep the liquid at the same position in the tube.
Several months later, the safety officer said that the air in the mill was too dusty. The area manager checked the pitot tube, and the liquid was exactly at the original mark. The fan speed was lower than before. The dust filters had been changed the week before.
What might be causing the problem with the air in the mill?
The fan speed was too low.
The filters need to be changed.
The pitot tube is plugged.
They were using a different type of wood in the mill.
The pitot tube be causing the problem with the air in the mill.Pitot system trapped air will be tested against static system air pressure that is dropping if the pitot tube and also its outlet hole are clogged.
What results in pitot tube obstruction?This results from the pitot system's pressure maintaining constant while air pressure (and pressure gradient) decrease. When the aircraft descends, on the other hand, the tachometer will display a reduction in airspeed.
What causes a pitot tube to fail?By accumulating ice or internal pollution, such as insects getting inside during ground stops, the pitot tube could become blocked. The airspeed indicator's (ASI) pressure sensor will then detect a decrease in pressure. Typically, the airspeed will be low, or perhaps zero.
Learn more about pitot tube here:
https://brainly.com/question/13040356
#SPJ1
phases the IT Manager will have to consider in implementing a new information
system for the company
Here are some of the phases an IT Manager may have to consider during the implementation:
Planning
Analysis
Design
Development
What is the role of the IT Manager?Implementing a new information system for a company can be a complex and multi-step process.
Planning: This involves defining the goals and objectives of the new information system, identifying stakeholders, analyzing business requirements, and establishing a project plan.
Analysis: In this phase, the IT Manager will assess the current system's strengths and weaknesses, gather user requirements, and determine how the new system will address business challenges and opportunities.
Design: Based on the requirements gathered during the analysis phase, the IT Manager will create a detailed design for the new system, including specifications for hardware, software, and user interfaces.
Development: In this phase, the actual system is built, configured, and tested to ensure that it meets the design specifications and user requirements.
Lastly, Testing: The IT Manager will need to perform comprehensive testing of the new system to ensure that it works as expected, is reliable, and meets the business needs.
Read more about IT Manager here:
https://brainly.com/question/24553900
#SPJ1
What is lossy compression
A. It is a technique that results in the loss of all files on a computer.
B. It is a technique that reduces the file size by permanently removing some data
C. It is a method of combining the memories of the ram and the rom
D. It is a method that stores data dynamically requiring more power
Answer:
B. It is a technique that reduces the file size by permanently removing some data
Answer:
B. It is a technique that reduces the file size by permanently removing some data
Explanation:
What is PowerPoint? Why is it used?
Answer:
Microsoft PowerPoint is a presentation software that allows you to create slide shows and presentations. It is part of the Microsoft Office suite of productivity tools.
You can use PowerPoint to create professional-looking presentations for a variety of purposes, such as:
Business meetings and presentationsConferences and eventsOnline and distance learningMarketing and sales presentationsEducational and training materialsPowerPoint includes a range of features that make it easy to create visually appealing presentations, including:
Pre-designed templates and themes
A range of text, image, and media formatting optionsSupport for charts, diagrams, and other types of graphicsThe ability to add animation and transition effects to slidesSupport for collaboration and teamwork, including the ability to share and co-author presentations with othersOverall, PowerPoint is a powerful tool that can help you effectively communicate your ideas and information in a clear, organized, and visually appealing way.
PowerPoint is a Microsoft presentation software that significantly permits a user to construct slide shows and presentations on any topic in order to spread information.
What is the significance of PowerPoint?The significance of PowerPoint is determined by the fact that it allows presenters to translate complex ideas, facts, or figures into easily digestible visuals. Visual representations of information activate the right hemisphere of the brain, which allows viewers to interpret, expound, and engage with what they're seeing.
It is used to support a user in order to present information in multiple ways (a multimodal approach) through the projection of color, images, and video for the visual mode; sound and music for the auditory mode; text and writing prompts for the reading/writing mode; and interactive slides that ask students to do something.
This presentation software is widely used in business ideas, education, job seekers, governmental and citizen services, etc.
To learn more about Microsoft PowerPoint, refer to the link:
https://brainly.com/question/23714390
#SPJ2
Which describes a market research report? Select all that apply.
A record of customer names
A summary of consumer buying behaviors
A projection of future consumer buying behaviors
An analysis of consumer interests
Answer:
A projection of consumer buying behaviors prediction comes in various ways. It can be through collecting information through primary or secondary research such as analyzing online actions, feedback analysis, focus groups, conversational marketing, and more.
Which of the following best describes the difference between gross profit and net profit?
Answer:Gross profit determines how well a company can earn a profit while managing its production and labor costs. Net income indicates a company's profit after all its expenses have been deducted from revenues.
Explanation:
Write the algorithm for your heuristic for the traveling salesperson problem and explain why it is good enough to solve the problem
Meta-heuristic algorithms are optimization algorithms that are significantly able to solve TSP problems towards a satisfactory solution.
What is an Algorithm?An algorithm may be characterized as a type of procedure that is considered used for solving a problem or performing a computation. It acts as an exact list of instructions that conduct specified actions step by step in either hardware- or software-based routines.
The Travelling Salesman Problem (TSP) is an NP-hard problem with a high number of possible solutions. The complexity increases with the factorial of n nodes in each specific problem. involves finding the shortest path that visits n specified locations, starting and ending at the same.
It is good enough to solve the problem that involves a new method that has made it possible to find solutions that are almost as good. This was done by the meta-heuristic algorithm, the popular algorithm in theoretical computer science.
To learn more about Algorithms, refer to the link:
https://brainly.com/question/24953880
#SPJ1
3. Answer the following in one sentence: (1*6=6 )
a) Explain Embedded Application.
b) What is brainstorming?
c) What do you mean by a Layout in Presentation?
d) Explain the different views available in the presentation application.
e) Why do we categorize or group information?
f) Which are the different animation effects available in the presentation?
Answer:
A
Explanation:
I did it
Corrine is writing a program to design t-shirts. Which of the following correctly sets an attribute for fabric? (3 points)
self+fabric = fabric
self(fabric):
self = fabric()
self.fabric = fabric
The correct option to set an attribute for fabric in the program would be: self.fabric = fabric
What is the programIn programming, defining an attribute involves assigning a value to a particular feature or property of an object. Corrine is developing a t-shirt design application and intends to assign a characteristic to the t-shirt material.
The term "self" pertains to the specific object (i. e the t-shirt) which Corrine is currently handling, as indicated in the given statement. The data stored in the variable "fabric" represents the type of material used for the t-shirt.
Learn more about program from
https://brainly.com/question/26134656
#SPJ1
when did anyone ever ask
Answer:
ikr
Explanation:
Answer:
thxxxxx
Explanation:
g7g6cf6c6cyc6
Find the following series of 8,88,888,8888,88888
the sum to n terms of the sequence 8, 88, 888, 8888,..... is 80/80(10ⁿ-1) -8/9n
How is this so?The nth terms is solved as follows
Sⁿ =8+88+888+8888+......+n terms
= 8/9 [9+99+999+9999+....to n terms]
= 8/9 [(10−1)+(10² −1+(10³ −1)+(10⁴ −1+....to n terms]
= 8/9 [(10+(10²+(10³ .....n terms) - (1 + 1 + 1 + ....n terms)
= 8/9 [(10(10ⁿ-1))/(10-1) - n] [Sun of GP= a(rⁿ-1)/(r-1) when r > 1]
= 8/9 [ 10 (10ⁿ -1)/9) -n]
= 80/81(10ⁿ -1) -8/9n
Thus, it is correct to state that 80/81(10ⁿ -1) -8/9n
Learn more about Series:
https://brainly.com/question/26263191
#SPJ1
Full Question:
Find the sum to n terms of the sequence 8, 88, 888, 8888,
What is the difference between interLATA and intraLATA calls?
Answer:
A telephone call within the same LATA (same region). IntraLATA is local telephone service. InterLATA refers to a call from one LATA to another, which can be within a state or from state to state (interstate).
Explanation:
Answer:
Interstate calls are calls between two states while Intrastate calls are calls within the same state.
Explanation:
What is spy wear on a desk top computer
Answer:
Spyware is when a hacker gathers confidential information and data by logging the user's key presses (keylogging) etc and uses it for fraud or identity theft. That's also why touchscreens are safer than keyboards.
Explanation:
Show how components work together to achieve the goal. (a). university of sierra Leone (b). Democracy (c) College - school bus (d). Registration process at MMTU (e) Electrical fan
Answer:
Explanation:
(a) University of Sierra Leone:
The University of Sierra Leone comprises three main constituent colleges: Fourah Bay College, College of Medicine and Allied Health Sciences, and Institute of Public Administration and Management. These colleges work together to achieve the university's goal of providing higher education to students in Sierra Leone. Each college offers a range of programs and courses, and students can take courses from multiple colleges to complete their degree. The university also has a central administration that oversees the functioning of the university as a whole.
(b) Democracy:
Democracy is a form of government in which power is held by the people through the process of free and fair elections. In a democratic system, citizens have the right to vote and participate in the decision-making process of the government. The key components that work together to achieve democracy include free and fair elections, a constitution that protects citizens' rights and limits the power of the government, an independent judiciary, and a free press. When these components work together, they help ensure that the government is accountable to the people and that citizens have a say in how they are governed.
(c) College - School Bus:
A college or school bus is a specialized vehicle designed to transport students to and from school or college. The bus is equipped with features such as a stop arm, flashing lights, and warning signs to ensure the safety of students while boarding or disembarking from the bus. The bus is operated by a trained driver who follows a pre-determined route to pick up and drop off students at designated stops. The college or school administration works with the bus company to ensure that the bus schedule and routes are optimized to meet the needs of the students.
(d) Registration process at MMTU:
The registration process at MMTU (Modern Manufacturing and Technology Unit) is designed to ensure that students can enroll in courses and complete their degree requirements in a timely and efficient manner. The registration process typically involves several components that work together, including course selection, scheduling, payment, and academic advising. Students typically meet with their academic advisors to select courses and create a schedule that meets their degree requirements. They then complete the registration process by submitting their course selections and paying any required fees. The MMTU administration ensures that the registration process is streamlined and that students have access to the resources they need to complete the process successfully.
(e) Electrical fan:
An electrical fan is a common household appliance that is designed to circulate air and provide a cooling effect. The key components that work together to achieve this goal include an electric motor, blades, and a casing. The electric motor drives the rotation of the blades, which then move air through the casing and out into the surrounding environment. The blades are typically made of lightweight materials and are designed to maximize airflow while minimizing noise. The casing is designed to direct airflow in a specific direction, and may include features such as speed controls, oscillation, and remote operation. When all these components work together, the electrical fan provides an effective and efficient way to cool a room or space.
In a democracy, the people hold the reins of power through the conduct of free and fair elections.
What is Democracy?Citizens have the right to vote and participate in governmental decision-making in a democratic society.
Free and fair elections, a constitution that safeguards citizens' rights and places limitations on government power, an independent judiciary, and a free press are the main building blocks of democracy.
Together, these elements make it possible for the people to hold the government accountable and have a say in how their country is run.
Therefore, In a democracy, the people hold the reins of power through the conduct of free and fair elections.
To learn more about Democracy, refer to the link:
https://brainly.com/question/13158670
#SPJ2
can the charger of my laptop get infected with viruses also when it was connected to it?
Answer:
Technically… yes. Because if the charging port is the same as a USB/etc connector port, then it can travel over that.
Explanation:
Multimedia Presentation: Mastery Test
Select the correct answer.
Helen wants to use actual voice testimonials of happy employees from her company in her presentation. What is the best way for her to use these
testimonials in the presentation?
OA. She can provide a link in her presentation where the audience can listen to the testimonials.
She can ask the employees to write down their thoughts for the presentation.
She can record the testimonials directly in her presentation.
D. She can read out the testimonials from a transcript.
B.
O C.
Reset
>
Next
The best way for Helen to use actual voice testimonials of happy employees from her company in her presentation is A) She can provide a link in her presentation where the audience can listen to the testimonials.
Using actual voice testimonials adds authenticity and credibility to Helen's presentation.
By providing a link, she allows the audience to directly hear the employees' voices and genuine expressions of satisfaction.
This approach has several advantages:
1)Audio Engagement: Listening to the testimonials in the employees' own voices creates a more engaging experience for the audience.
The tone, emotions, and enthusiasm conveyed through voice can have a powerful impact, making the testimonials more relatable and persuasive.
2)Employee Representation: By including actual voice testimonials, Helen gives her colleagues an opportunity to have their voices heard and to share their positive experiences.
This approach emphasizes the importance of employee perspectives and allows them to become active participants in the presentation.
3)Convenience and Accessibility: Providing a link allows the audience to access the testimonials at their own convenience.
They can listen to the testimonials during or after the presentation, depending on their preferences.
It also allows for easy sharing and revisiting of the testimonials.
4)Time Management: Including voice testimonials via a link enables Helen to efficiently manage the timing of her presentation.
She can allocate the appropriate time for other aspects of her talk while still giving the audience access to the full testimonials, without the need to rush or omit important information.
For more questions on presentation
https://brainly.com/question/24653274
#SPJ8
- Which amongst the following is not a Characteristic of Cloud Computing?
(1) Rigidity (ii) Measured Service (iii) Resource Pooling
Answer:
(1) Rigidity
Explanation:
Cloud computing can be defined as a type of computing that requires shared computing resources such as cloud storage (data storage), servers, computer power, and software over the internet rather than local servers and hard drives.
Generally, cloud computing offers individuals and businesses a fast, effective and efficient way of providing services.
Cloud computing comprises of three (3) service models and these are;
1. Platform as a Service (PaaS).
2. Infrastructure as a Service (IaaS).
3. Software as a Service (SaaS).
The two (2) main characteristics of cloud computing are;
I. Measured service: it allows cloud service providers to monitor and measure the level of service used by various clients with respect to subscriptions.
II. Resource pooling: this allows cloud service providers to serve multiple customers or clients with services that are scalable and provisional.
However, rigidity is not a characteristic of cloud computing because it is generally considered to be dynamic and flexible for the end users.
Similarities between the primary memory and the secondary memory
Answer:
Primary and secondary
Explanation:
Primary storage refers to the main storage of the computer or main memory which is the random access memory or RAM. Secondary storage, on the other hand, refers to the external storage devices used to store data on a long-term basis.
In 2019, the tuition for a full time student is $7,180 per semester. The tuition will be going up for the next 7 years at a rate of 3.5% per year. Write your program using a loop that displays the projected semester tuition for the next 7 years. You may NOT hard code each years tuition into your program. Your program should calculate the tuition for each year given the starting tuition in 2019 ($7, 180) and the rate of increase (3.5%). You should then display the actual year (2020, 2021, through 2026) and the tuition amount per semester for that year
Answer:
In Python:
tuition = 7180
year = 2019
rate = 0.035
for i in range(2019,2027):
print(str(year)+": "+str(round(tuition,2)))
tuition = tuition * (1 + rate)
year = year + 1
Explanation:
This initializes the tuition to 7180
tuition = 7180
This initializes the year to 2019
year = 2019
This initializes the rate to 3.5%
rate = 0.035
This iterates through years 2019 to 2026
for i in range(2019,2027):
This prints the year and tuition
print(str(year)+": "+str(round(tuition,2)))
This calculates the tuition
tuition = tuition * (1 + rate)
This increments year by 1
year = year + 1
There are heading tags
Answer:
i need points
Explanation:
foawuwdawodayawdhiowhiodawhiodawhiodahowidahiowda wwd hwadhiowdhioaw dhoiawdhioawhiod haiodawhiod awhod whioadowiahd hoaw doawi hawd iawiodhaw hda.
9. Discuss the pros and cons of human-computer interaction technology?
The cons of human-computer interaction technology is that there tends to be a poor form of user interfaces as well as experiences that tend to change technology from been useful tool to been a frustrating waste of time.
Productivity tends to suffers if workers have to spend their time working in the designs unit.
What are the pros of human-computer interaction technology?The biggest gains one or a company can get is one that arises from the use of HCI.
Thus is known to be good because it is one that tends to be more user friendly products.
A person is able to make computers and systems to be very much receptive to the needs of the user, making a better user experience
Therefore, The cons of human-computer interaction technology is that there tends to be a poor form of user interfaces as well as experiences that tend to change technology from been useful tool to been a frustrating waste of time.
Learn more about human-computer interaction from
https://brainly.com/question/17238363
#SPJ1
Which of the following statements are true about how technology has changed work? Select 3 options. Responses Businesses can be more profitable by using communication technology to reduce the costs of travel. Businesses can be more profitable by using communication technology to reduce the costs of travel. With the spread of technology and the Internet, smaller businesses are not able to compete as effectively as before. With the spread of technology and the Internet, smaller businesses are not able to compete as effectively as before. In a gig economy, workers are only hired when they are needed for as long as they are needed. In a gig economy, workers are only hired when they are needed for as long as they are needed. Through the use of the Internet and collaboration tools more workers are able to perform their jobs remotely. Through the use of the Internet and collaboration tools more workers are able to perform their jobs remotely. Technology has not really changed how businesses operate in the last fifty years. Technology has not really changed how businesses operate in the last fifty years.
The three genuine statements almost how technology has changed work are:
Businesses can be more productive by utilizing communication technology to decrease the costs of travel. This can be genuine since advances like video conferencing and virtual gatherings permit businesses to conduct gatherings, transactions, and collaborations remotely, lessening the require for costly travel courses of action.With the spread of technology and the Web, littler businesses are not able to compete as successfully as some time recently. This explanation is genuine since innovation has empowered bigger companies to use their assets and reach a worldwide advertise more effortlessly, making it challenging for littler businesses to compete on the same scale.Through the utilize of the Web and collaboration devices, more laborers are able to perform their occupations remotely. This explanation is genuine as innovation has encouraged farther work courses of action, allowing employees to work from anyplace with an online association. Collaboration instruments like extend administration computer program and communication stages have made inaccessible work more doable and effective.Technology explained.
Technology alludes to the application of logical information, aptitudes, and devices to form innovations, fathom issues, and move forward proficiency in different spaces of human movement. It includes the improvement, usage, and utilize of gadgets, frameworks, and processes that are outlined to achieve particular assignments or fulfill specific needs.
Technology can be broadly categorized into distinctive sorts, such as data technology, communication technology, therapeutic innovation, mechanical technology, and transportation technology, among others. These categories include different areas, counting computer science, hardware, broadcast communications, building, and biotechnology.
Learn more about technology below.
https://brainly.com/question/13044551
#SPJ1
Joseline is trying out a new piece of photography equipment that she recently purchased that helps to steady a camera with one single leg instead of three. What type of equipment is Joseline trying out?
A. multi-pod
B. tripod
C. semi-pod
D. monopod
Joseline trying out tripod .A camera-supporting three-legged stand is known as a tripod. For stability, cameras are fixed on tripods, sometimes known as "sticks." In tripods, the fluid head is used. The camera may now tilt up and down in addition to pan left and right.
What tools are employed in photography?You will need a camera with manual settings and the ability to change lenses, a tripod, a camera case, and a good SD card if you're a newbie photographer who wants to control the visual impacts of photography. The affordable photography gear listed below will help you get started in 2021.A monopod, which is a one-legged camera support system for precise and stable shooting, is also known as a unipod.A camera-supporting three-legged stand is known as a tripod. For stability, cameras are fixed on tripods, sometimes known as "sticks." In tripods, the fluid head is used. The camera may now tilt up and down in addition to pan left and right.To learn more about tripod refer to:
https://brainly.com/question/27526669
#SPJ1
Answer:
monopod
Explanation: