TASK 1 – Work out the cost.
The cost of the trip for each student is a share of the cost of a coach plus the cost of entry to the theme park.
The total cost of the coach will be $550. The entry cost to the park is $30 for each student. The national park gives one free ticket for every ten that are bought, which must be taken into consideration.
Set up a program that:
• stores the cost of the coach
• stores the cost of an entry ticket
• inputs the estimated number of students taking part, this must be validated on entry and an
unsuitable entry rejected
• calculates and outputs the recommended cost per student to ensure the trip does not make a loss.
Write an algorithm to complete Task 1, using either pseudocode, programming statements or a
flowchart. [5]
Answer:
please check the question again
Explanation:
Explain how a 16 x 1bit Read Only Memory (ROM) can be
configured to provide an active-low Chip Enable (CE) to a device
when the value 1011 appears on a 4-bit address bus.
To configure a 16 x 1-bit Read Only Memory (ROM) to provide an active-low Chip Enable (CE) when the value 1011 appears on a 4-bit address bus, the ROM can be programmed with a specific data pattern.
In this case, the ROM needs to output a logic low (active-low) signal on the Chip Enable (CE) pin when the address 1011 is applied to the 4-bit address bus. The ROM can be configured such that the data stored in the ROM location corresponding to address 1011 is programmed as a logic low. The remaining ROM locations can be programmed as logic high.
When the address bus carries the value 1011, the ROM will activate the corresponding data line that stores the logic low value. This activates the active-low Chip Enable (CE) signal, indicating that the device is enabled or active.
In summary, by programming the ROM with the desired data pattern, specifically setting the ROM location corresponding to address 1011 as logic low and the rest as logic high, the ROM can provide an active-low Chip Enable (CE) signal when the address 1011 appears on the 4-bit address bus. This configuration ensures that the device is enabled when the specific address is detected.
To know more about ROM visit-
brainly.com/question/5685062
#SPJ11
A person with a kinesthetic learning style learns best by
a. reading and writing.
b. moving around and interacting with objects.
c. working with numbers and patterns.
d. independent study.
Sean wants to build a robot. What part of the robot will he need to include that enables the robot to process sensory information?
To enable a robot to process sensory information, Sean will need to include a sensor system as part of the robot. The sensor system will provide input to the robot's central processing unit (CPU) or microcontroller, allowing it to perceive and respond to its environment. The specific sensors needed will depend on the robot's intended function and the type of sensory information it needs to process. Common sensors used in robots include cameras, microphones, touch sensors, and proximity sensors.
#SPJ1
What do the numbers 0s and 1s actually represent inside a computer?
Answer:
Binary.
Explanation:
Binary, the off and on, Is how computers think.
You think code is Function(Os,35,Export) and stuff like that? Thats trillions of binary lines to make that. Binary is the very fabric of code. modern code engines are very organized binary to make predefined functions so your brain doesnt have to manually think of quadrillions of off and on switches for each function you assign.
This pass is used when two players are relatively close to each other. The ball usually bounces once before being caught by the other player. subject (basketball)
the term that orders data numerally or alphabetically is called
states that message passing is both time- and space-coupled – that is, messages are both directed towards a particular entity and require the receiver to be present at the time of the message send. Consider the case, though, where messages are directed towards a name rather than an address and this name is resolved using DNS. Does such a system exhibit the same level of indirection?
In the case where messages are directed towards a name rather than an address and this name is resolved using DNS, the system does exhibit a level of indirection, but it may not be as time- and space-coupled as a system where messages are directed towards a particular entity.
DNS (Domain Name System) is a hierarchical and decentralized naming system for computers, services, or other resources connected to the internet or a private network. It translates domain names, which are easier for humans to remember, into IP addresses, which are used by machines to identify each other on the network. When a message is directed towards a name, the sender does not need to know the exact address of the recipient. Instead, the sender can use the name, which is resolved using DNS to find the IP address of the recipient. This adds a level of indirection to the message passing process, as the sender is not directly sending the message to the recipient's address.
However, because DNS is a decentralized system and caching can occur, the level of time- and space-coupling may not be as significant as in a system where messages are directly sent to a particular entity. The receiver does not necessarily need to be present at the time of the message send, as the message can be cached or redirected to a different address if the original recipient is not available. In summary, while the use of DNS for resolving names adds a level of indirection to the message passing process, it may not exhibit the same level of time- and space-coupling as a system where messages are directly sent to a particular entity.
To know more about system visit :
https://brainly.com/question/19843453
#SPJ11
What is the value of the variable named cap after the code that follows is executed?
"StringBuilder name = new StringBuilder("Thomas");
int cap = name.capacity();
22" is the value of the variable named cap after the code that follows is executed
This is further explained below.
What is "StringBuilder name "?Generally, StringBuilder objects are similar to String objects; the only difference is that StringBuilder objects may be edited. These objects are handled internally in the same manner as arrays of variable length, each of which contains a string of letters.
Method invocations make it possible to alter both the length and the content of the sequence at any point along the way.
In conclusion, "StringBuilder name = new StringBuilder("Thomas");
int cap = name.capacity();
22" is the value of the variable named cap after the code that follows is executed
Read more about "StringBuilder name"
https://brainly.com/question/13959273
#SPJ1
what class of arthropods is mainly involved in the pollination process?
Answer:
Insects
Explanation:
insects are the most pollinating arthropods.
Jason's cellphone company allows him to use his smartphone as a wireless hotspot with his laptop when traveling. Jason notices that if he runs a speed test from his smartphone, the cellular connection is 8761 kbps. If he runs the same speed test connection from his laptop which is connected to his cellphone over its wireless hotspot,the speed drops to 243 kbps. Which of the following is the MOST likely cause for the drop in the speed test results?
Explanation
a) The smartphone's RFID signal is low
b) The wireless hotspot feature is throttling the cellular connection speed
c) The SSID for the wireless hotspot is not being broadcast
d) The laptop is out of range of the smartphone's hotspot
Answer:
b) The wireless hotspot feature is throttling the cellular connection speed.
Explanation:
The wireless hotspot feature allows phone to share cellular data with other network creating a Wi-Fi network. Cellular data is connected with other devices or laptops. Jason's cellphone company is allowing him to use his smart phone as a wireless hotspot with his laptop. He notices that cellular connection speed differs when he uses wireless hotspot with laptop. This is because hotspot is throttling cellular connection speed.
write any three type of looping structure with syntax
Answer:
The correct answer to this question is given below in the explanation section.
Explanation:
There are three types of loops that are used almost in all programming languages today. Loop is used when you want to execute many times the same lines of codes. These loops are given below:
For-loop
While-loop
Do-while loop
The syntax of these loops is given below. However, it is noted that these syntax are based on C++ language. :
1-For-loop:
for ( init; condition; increment/decrement ) {
statement(s);
}
init: this is executed first and only once, this allows to initialize and declare the loop control variable.
Condition: next condition is evaluated, if the condition is true then the loop body will get executed. And, if it gets false, the loop will get terminated.
increment: this will increment/decrement the counter (init) in the loop.
for example: to count number 1 to 10, the for-loop is given below:
int total=0;
for (int i=0; i>10;i++)
{
total=total + i;
to
}
2-While loop:
Repeats a statement or group of statements in the body of a while-loop while a given condition is true. It tests the given condition before executing the loop body.
syntax:
while(condition) {
statement(s);
}
For example: To count number 0 to 10.
int a = 0;
int total =0;
// while loop execution
while( a < 11 ) {
total = total + a
a++;
}
3- do-while loop:
Do-while works like a while statement, while it tests the condition at the end of the loop body.
Syntax:
do {
statement(s);
}
while( condition );
For example:
int a = 0;
int total =0;
// while loop execution
do {
total = total + a
a++;
}while( a < 11 )
why does andrew's alpha stage graph line include more years than maria's and joey's graphs?
The graph line of Andrew's alpha stage includes more years than Maria's and Joey's graphs because he was tracked for a longer time period. Alpha brain waves, which oscillate between 8-13 Hz, are linked with deep relaxation, meditation, and a reduction in stress and anxiety.
They are also linked with increased creativity, imagination, and intuition. Andrew, Maria, and Joey are three individuals whose alpha stage was observed and recorded in the form of graphs. Andrew's graph line includes more years than Maria's and Joey's graphs because he was tracked for a longer time period.
Thus, he had more observations than the other two individuals, which enabled him to have more data points on the graph. The graphs may represent different research or study designs, where Andrew's study was designed to capture data over a more extended period compared to Maria and Joey's studies.
To know more about Deep Relaxation visit:
https://brainly.com/question/14510459
#SPJ11
Document accurately describes the differences between servers and computers and between local and wide area networks. Document provides at least four suggestions including password managers and safe browsers.
Thinks someone could help me out with this?
Answer:
Cell towers and internet uses allow local and wide area networks, but they also allow you to steal IP and things like that.
Explanation:
This is quite difficult. I appologize if I get this wrong.
(Also if you upload a file for someone to answer, and they give you a link, don't click on it!! They track your IP address and things like that!)
What is the difference between a displayed result and a formula?
The displayed result is always the same number, but the formula changes.
The formula is always the same as the displayed result, it will always be a simple value.
The displayed result changes as the formula dictates it; it may not be a simple value.
The displayed result and the formula are unrelated.
Answer:
The displayed result changes as the formula dictates it; it may not be a simple value.
Explanation:
Answer:
The displayed result changes as the formula dictates it; it may not be a simple value.
Explanation:
Topic: Looking around: D&S Theory as Evidenced in a Pandemic News Article Description: In this reflection you are to find a news article from the pandemic on the web that has some connection to Canada. The goal will be to analyse the change in demand and/or supply of a good/service during the pandemic. Read the article and address the following questions/discussion points: 1. Briefly summarize the article and make note about how your article connects with the theory of supply and demand. 2. Based on the article, what kind of shift or movement along the demand and/or supply curve would be expected? Make sure to explain your reasoning and draw a Demand and Supply graph with the changes shown. Also, address the change in equilibrium price and quantity. 3. How, in the limited amount of economics we have covered thus far, has your perspective on how the economy works changed? Include either a copy of your article in your submission, or a hyperlink embedded in your submission for your professor to access the article. Your reflection should be between 250 and 300 words or one page double spaced, 11 or 12 pt font.
Article summaryThe article “Canadian small business owners frustrated with customers refusing to wear masks” by Karen Pauls published in CBC News on August 14, 2020.
The article shows how small business owners are grappling with the balance between health and safety for their customers and workers and the economic impact of the pandemic on their businesses. The article connects with the theory of supply and demand as it highlights how the change in demand for products and services offered by small businesses is influenced by changes in customer behaviour and attitudes towards the mandatory use of masks.2. Shift or movement along the demand and/or supply curve
The mandatory use of masks by customers in small businesses would lead to a decrease in demand for products and services offered by the small businesses, resulting in a leftward shift of the demand curve. The decrease in demand would lead to a decrease in the equilibrium price and quantity of products and services. For instance, in the case of small businesses, this would mean a decrease in the quantity of products sold and the price charged for the products.
To know more about article visit:
https://brainly.com/question/32624772
#SPJ11
In the context of in-house software development options, a firm that enhances a commercial package by adding custom features and configuring it for a particular industry is called a(n) _____.
In the context of in-house software development options, a firm that enhances a commercial package by adding custom features and configuring it for a particular industry is called a(n) value-added reseller (VAR).
What is VAR?A Value-Added Reseller (VAR) is a company that depends on the production of other firms. They improve the commission of a product or add a unique feature on it and sell that part as a whole apart good. The disadvantage of this practice relies on not maintaining control over the manufacturing prices since these things do not understand what precisely will be delivered next.
To learn more about VAR, refer to:
https://brainly.com/question/22679694
#SPJ4
Open the code8-3_anim.css file. Several keyframe animations have already been created for you. Add a keyframe animation named spinCube that contains the following frames:
At 0% apply the transform property with the rotateX() function set to 24deg and the rotateY() function set to 40deg.
At 50% change the value of the rotateX() function to 204deg and the rotateY() function to 220deg
At 100%, change the value of the rotateX() function to 384 and the rotateY() function to 400deg.
Create a style rule that applies the moveFront keyframe animation to the #faceFront object. Set the duration of the animation to 3 seconds and set the animation- fill-mode property to forwards.
Repeat the previous step for the #faceBack, #faceBottom, #faceLeft, #faceTop, and #faceRight objects using the moveBack, moveBottom, moveLeft, moveTop, and moveRight animations.
After the cube is assembled you want it to rotate. Create a style rule that applies the spinCube animation to the #cube object, running the animation over a 3 second duration after a delay of 3 seconds. Use the linear timing function and have the animation loop without ending.
The code that meets the above requirements is attached accordingly.
What is the explanation for the above response?
The code is creating a 3D cube using HTML and CSS animations. The cube is made up of six faces, each of which is a separate HTML element with a unique ID. The cube is assembled by positioning the faces correctly using CSS transformations.
The code defines several keyframe animations to move the cube's faces to their correct positions. Each animation is given a name and contains frames that specify the CSS transform values at different stages of the animation.
After the cube is assembled, the code applies the spinCube animation to the entire cube object, causing it to rotate continuously using the CSS transform property. The animation is set to loop without ending and has a 3-second duration with a 3-second delay before it starts. The timing function for the animation is set to linear, ensuring a smooth and even rotation.
Learn more about code at:
https://brainly.com/question/30429605
#SPJ1
relation between different temperature scale
what is the term used to describe image file that contains multiple small graphics?
Mỗi tháng, con vịt nhà em đẻ được khoảng từ 30 trứng đến 50 trứng tùy phong độ. Giá bán mỗi trứng là 2000Đ/ 1 quả. Viết chương trình nhập vào số trứng mà vịt nhà em đẻ trong 1 tháng bất kỳ, tính và in ra màn hình số tiền thu được khi bán trứng
Answer:
có con cặc
Explanation:
How do I slow down my sprite in scratch?
Answer:
you a smaller star when drinking you staw it will last longer
Explanation:
Hay give me some funny but good zombie movies and I will give 100 points
Ps I will have to do it on private thing so ya y’all get Brainly and 100 points
Explanation:
okay, you said funny but I wodner if this is funny.
and said some, I dont think I've watched much
Train to busan?
how about Transylvania? lol
I'm sorry but cant think of anything from those I've watched. T~T
technician a uses the snapshot function of his scan tool to record serial data during a road test that can be transferred and displayed on a pc. technician b uses the snapshot feature of his scan tool to record the sensor data and conditions leading up to the vehicle setting a dtc. who is correct?
The Technician A and Technician B are using the snapshot function of their scan tools correctly and are therefore both correct.
The snapshot function on a scan tool is a very useful feature that allows technicians to record serial data during a road test and then transfer and display it on a PC. This allows them to analyze the data and diagnose any issues with the vehicle.
Similarly, the snapshot feature can also be used to record sensor data and conditions leading up to the vehicle setting a Diagnostic Trouble Code (DTC). This is useful because it allows the technician to see exactly what was happening when the DTC was set and can help in diagnosing the issue.
Learn more about scan tools here: https://brainly.com/question/29383879
#SPJ11
Please help answer now! First correct answer get branliest! Place the directions in order from first to last to explain how to hide the ribbon from the top of your Excel worksheet.
Move the cursor to the top-right corner
Select the auto-hide ribbon
Click on the up arrow
Answer:
just do bodldld
Explanation:
Answer:
Move the cursor to the top-right corner
Click on the up arrow
Select the auto-hide ribbon
Explanation:
blogs may refer to any kind of communication over the internet is true
Answer:
Yes It's true but You forgot email
Explanation:
Which three elements are required to have a Trade Secret?
The three elements that are required to have a trade secret are as follows:
It bestows a competitive lead on its owner.It is subject to sensible endeavor to control its secrecy.It is confidential in nature. What do you mean by Trade secret?A Trade secret may be defined as a type of intellectual property that significantly consists of secret information that might be sold or licensed specifically in order to main its secrecy.
Trade secrets can take many forms such as formulas, plans, designs, patterns, supplier lists, customer lists, financial data, personnel information, physical devices, processes, computer software, etc. These secrets must not be generally known by or readily ascertainable to competitors.
Therefore, the three elements that are required to have a trade secret are well mentioned above.
To learn more about Trade secrets, refer to the link:
https://brainly.com/question/27034334
#SPJ1
During which phase of the software development process are developers most likely to log bugs?
Answer:
During the Evaluation phase of software development process are developers most likely to log bugs.
Hope this helps! :)
Analyze the American Computer Software Company named Adobe
Has Adobe ever been in the news for an event?
What are the top 5 news stories about Adobe?
Adobe is a software company that specializes in multimedia, creativity, and software applications. Adobe has been in the news for several significant events, such as the security breach that led to the loss of personal information for millions of its customers, its acquisition of Magento, and Allegorithmic, and its expansion into China's digital marketing industry.
Adobe is a computer software company that develops multimedia and creativity software products. Adobe Systems Incorporated is an American software company that specializes in creativity, multimedia, and software applications, with its headquarters in San Jose, California. Adobe is best known for its widely used software tools such as Adobe Photoshop, Adobe Illustrator, Adobe InDesign, and Adobe Acrobat, as well as its web and mobile applications.
Has Adobe ever been in the news for an event?
Adobe is frequently in the news, and it has been the topic of several high-profile stories over the years. One of the most notable events in Adobe's recent history is its 2013 security breach, which resulted in the loss of personal information for millions of its customers.
What are the top 5 news stories about Adobe?
1. Adobe Hack (2013) - In 2013, Adobe suffered a massive data breach that affected approximately 38 million users, which led to unauthorized access to customer data, including IDs, passwords, and credit card data.
2. Adobe Systems Sheds 750 Jobs - In November 2019, Adobe laid off nearly 750 workers, primarily in the United States and India, citing a shift toward software as a service and cloud computing.
3. Adobe's Expansion into China - Adobe announced its expansion into China's digital marketing industry in 2018, with the opening of a new office in Shanghai.
4. Adobe's Acquisition of Magento - In May 2018, Adobe announced its $1.68 billion acquisition of Magento, an e-commerce platform, which was seen as a significant addition to Adobe's experience cloud suite.
5. Adobe's Acquisition of Allegorithmic - Adobe announced its acquisition of Allegorithmic in January 2019, a leading 3D texturing company, which will enable the company to offer more 3D tools for creatives.
To know more about software company visit:
brainly.com/question/9174063
#SPJ11
The ____ view displays the worksheet the way it will look when it prints.
A) Normal
B) Page layout
C) Break
D) Page settings