Answer:
1. Heincma Ilo- Machine Oil
2. Cholt Madp- Damp Cloth
3. Niemhac Winseg- Sewing Machine
4. Sonapler- Personal Protective Equipment Veticetport Quiptempen
5. Eeendl Isez- Needle Size
6. Malls Nib- Small Bin
7. Binnob Drewin- Bobbin Winder
8. Nilt Bursh- Lint Brush
9. Bonbib Koho- Bobbin Hook
10. Delene Llapte - Needle Plate
Explanation:
Machine Oil: This is used to lubricate the sewing machine gear, prevents/ reduces wear, tear, and rust of the parts which are made of metal;Damp Cloth: This is used to remove tough stains on the machine without leaving too much moisture on it. When water or moisture reacts with the iron and oxygen, it forms rust which is not good for the machine.Sewing Machine: This is used to putting or sewing fabric togetherPersonal Protective Equipment: These are equipment that a tailor or sewing factor worker must put on when at work to prevent or minimize the risk of injuries. They include but are not limited to:FacemasksHand glovesEye Protection5. Needle Size: Various sizes of needles are needed to sew different kinds of fabric;
6. Small Bin: This is mostly for ensuring good home keeping. Good home-keeping means managing the waste in the factory area. By collecting them in a bin, they are easy to dispose of.
7. Bobbin Winder: This is used to wind the thread around a bobbin evenly.
8. Lint Brush: This is used to remove lint. Lint is simply a collection of accumulated fibers from textile and non-textile materials.
9. Bobbin Hook: This term is used to describe the part which extends outwards like a finger that encircles the bobbin case.
10. Needle Plate: This is present in all sewing machines. It is installed to guide one as they sew and also covers the bobbin compartment.
Cheers!
What is the next line? >>> tupleB = (5, 7, 5, 10, 2, 7) >>> tupleB.count(7) 1 0 5 2
Answer:
The right answer is option 4: 2
Explanation:
Lists are used in Python to store elements of same or different data types.
Different functions are used in Python on List. One of them is count.
Count is used to count how many times a specific value occurs in a list.
The syntax for count is:
listname.count(value)
In the given code,
The output will be 2
Hence,
The right answer is option 4: 2
Answer:
The answer is 2!!!!
Explanation:
Good luck!
Question 11 of 20
Samantha wants to show the steps in a process. What type of graphic should
she use?
A. Bar chart
B. Flow chart
C. Pie chart
D. Organization chart
SUBMIT
Answer:
Organization Chart
Explanation:
So it can show what to do and when to do it
Answer:
Hi, thank you for posting your question here at Brainly.
Let's characterize each chart first.
Flow chart - chart that displays a flow process through shapes like diamonds and boxes connected by arrows
Pie chart - chart that displays distribution of parts from a whole
Bar chart - this chart presents grouped data through rectangle blocks
Organizational chart - this chart shows the hierarchy of an organization and their relations
the answer must be flow chart. The answer is letter B.
What's a reasonable data type that could be included in nearly any item in a logical data model for a software application?
a
Address
b
Rates
c
CurrentLocation
d
Last_modified
Answer:
D. Last_modified
Explanation:
Software development life cycle (SDLC) can be defined as a strategic process or methodology that defines the key steps or stages for creating and implementing high quality software applications.
Some of the models used in the software development life cycle (SDLC) are;
I. Waterfall model.
II. Incremental model.
III. Spiral model.
IV. Agile model.
V. Big bang model.
VI. V-shaped model.
A database schema is a structure which is typically used to represent the logical design of the database and as such represents how data are stored or organized and the relationships existing in a database management system. There are two (2) main categories of a database schema; physical database schema and logical database schema.
Last_modified can be defined as a data type which comprises of the date and time that a resource such as a software application or file was edited or changed.
Hence, Last_modified is a reasonable data type that could be included in nearly any item in a logical data model for a software application.
In order to average together values that match two different conditions in different ranges, an excel user should use the ____ function.
Answer: Excel Average functions
Explanation: it gets the work done.
Answer:
excel average
Explanation:
Help me with this digital Circuit please
A subset of electronics called digital circuits or digital electronics uses digital signals to carry out a variety of tasks and satisfy a range of needs.
Thus, These circuits receive input signals in digital form, which are expressed in binary form as 0s and 1s. Logical gates that carry out logical operations, including as AND, OR, NOT, NANAD, NOR, and XOR gates, are used in the construction of these circuits.
This format enables the circuit to change between states for exact output. The fundamental purpose of digital circuit systems is to address the shortcomings of analog systems, which are slower and may produce inaccurate output data.
On a single integrated circuit (IC), a number of logic gates are used to create a digital circuit. Any digital circuit's input consists of "0's" and "1's" in binary form. After processing raw digital data, a precise value is produced.
Thus, A subset of electronics called digital circuits or digital electronics uses digital signals to carry out a variety of tasks and satisfy a range of needs.
Learn more about Digital circuit, refer to the link:
https://brainly.com/question/24628790
#SPJ1
Write a java program to input a number from the user and tell if that number is a power of 2 or not.
Powers of 2 are 1, 2, 4, 8, 16, 32, 64, 128, 256 and so on.
Answer:
public static boolean isPowerOfTwo(int n) {
long exp = Math.round(Math.log(n) / Math.log(2));
return Math.pow(2, exp) == n;
}
Explanation:
The opposite of power-of-2 is the 2-log, which is calculated using any log divided by log(2).
I'm sure you can do the input part yourself!
The formula in the cell above would yield the result:
The result that would be yielded by the formula in the cell given would be 9.
What result would the COUNTA formula yield?COUNTA is a formula that is used to count the number of cells in a given range of cells that have any values in them.
In the range (A1:I1), the number of cells with values would be 9 because cells A1 to I1 all have values in them.
Find out more on the COUNTA function at https://brainly.com/question/24211266.
#SPJ1
find the sum of odd number from 1 to 100 .with flowchart, pseudo code and program code
Answer:
Flowchart:START
Set sum = 0
Set i = 1
WHILE i <= 100
IF i % 2 == 1
Set sum = sum + i
END IF
Set i = i + 1
END WHILE
Display sum
STOP
Pseudo code:sum = 0
for i = 1 to 100
if i % 2 == 1
sum = sum + i
end if
end for
display sum
Program code in Python:python
sum = 0
for i in range(1, 101):
if i % 2 == 1:
sum += i
print(sum)
Output: 2500
Explanation:
The program initializes the sum variable to 0 and uses a for loop to iterate through the numbers 1 to 100. The if statement checks if the current number is odd (i % 2 == 1) and if so, adds it to the sum variable. Finally, the program displays the sum of all odd numbers from 1 to 100, which is 2500.There are a few errors in the code provided in the Code Editor. Your task is to debug the code so that it outputs the verses correctly.
animal = input("Enter an animal: ")
sound = input ("Enter a sound: ")
e = "E"
print ("Old Macdonald had a farm, " + e)
print ("And on his farm he had a" + animal + "," + e)
print ("With a " + animal + "-" + animal + " here and a" + sound + "-" + sound + " there")
print ("Here a "+ sound+ " there a " +sound)
print ("Everywhere a" + sound + "-" + animal )
print ("Old Macdonald had a farm," + e)
animal = input("Enter an animal: ")
sound = input("Enter a sound: ")
e = "E"
print("Old Macdonald had a farm, " + e)
print("And on his farm he had a " + animal + ", " + e)
print("With a " + animal + "-" + animal + " here and a " + sound + "-" + sound + " there")
print("Here a " + sound + " there a " + sound)
print("Everywhere a " + sound + "-" + animal)
print("Old Macdonald had a farm, " + e)
This works for me. Best of luck.
Answer:
animal = input("Enter an animal: ")
sound = input ("Enter a sound: ")
e = "E-I-E-I-O"
print ("Old Macdonald had a farm, " + e)
print ("And on his farm he had a " + animal + ", " + e)
print ("With a " + sound + "-" + sound + " here and a " + sound + "-" + sound + " there")
print ("Here a "+ sound+ " there a " +sound)
print ("Everywhere a " + sound + "-" + sound )
print ("Old Macdonald had a farm, " + e)
Explanation:
____ is the act of looking through discarded paperwork and other items to try to find out information about a potential hacking target.
A) Social engineering
B) Packet sniffing
C) Dumpster diving
D) Phishing
Answer:
C) Dumpster diving
Explanation:
In which category would Jamal most likely find an appropriate template for his report?
Designs
Diagrams
Education
Personal
Answer:
Education
Explanation:
A(n) _____ for an Active Directory object represents the complete LDAP path to an object from the domain.
There are different types of LDAP port. The distinguished name for an Active Directory object represents the complete LDAP path to an object from the domain.
All entry in the directory is known to have a unique distinguished name (DN). The DN is simply defined as the name that set apart and identifies an entry in the directory. It is made up of Relative Distinguished Name (RDN)and other attributes.
Active Directory is known to be an LDAP-compliant directory service where all access to directory objects occurs through LDAP. LDAP needs that names of directory objects be formed.
Learn more about Active Directory from
https://brainly.com/question/17213682
Which three statements about RSTP edge ports are true? (Choose three.) Group of answer choices If an edge port receives a BPDU, it becomes a normal spanning-tree port. Edge ports never generate topology change notifications (TCNs) when the port transitions to a disabled or enabled status. Edge ports can have another switch connected to them as long as the link is operating in full duplex. Edge ports immediately transition to learning mode and then forwarding mode when enabled. Edge ports function similarly to UplinkFast ports. Edge ports should never connect to another switch.
Answer:
Edge ports should never connect to another switch. If an edge port receives a BPDU, it becomes a normal spanning-tree port. Edge ports never generate topology change notifications (TCNs) when the port transitions to a disabled or enabled status.In ……………cell reference, the reference of a cell does not change.
Answer:
In absolute cell reference, the reference of a cell does not change.
The ________ attribute of the anchor tag can cause the new web page to open in its own browser window.
Select one:
a. target
b. window Incorrect
c. id
d. href
Target attribute the new web page may launch in a separate browser window as a result of the anchor tag.
What is a target attribute?
The response that's also received within a week of submitting the form is displayed according to the name or keyword specified by the target attribute. The target attribute specifies a browsing context's name or keyword (e.g. tab, window, or inline frame).
A target attribute with the value " self" opens the linked document in the same frame where it was clicked.
_blank: This specifies that the link should be opened in a new window.
_self: This is the default setting. It is used to open the link in the same window as the link.
_top: This opens the document linked in the main body.
_parent: This specifies that the link should be opened in the parent frameset.
framename: The document is opened in the frame name specified.
Hence to conclude target attribute of the anchor tag can cause the new web page to open in its own browser window.
To know more on target attribute follow this link
https://brainly.com/question/28341861
#SPJ1
Which of the following are not provided by design patterns but by microservices?
A design pattern refers to a solution to a an occurring problem in software design.
Some of the item that are provided by design patterns but by microservices includes:
AggregatorAPI Gateway.Chained or Chain of Responsibility.Asynchronous Messaging.Database or Shared Data.Event Sourcing.Branch.Command Query Responsibility Segregator etcRead more about design pattern
brainly.com/question/265380
Which of the following image file formats uses lossy file compression?
a) GIF
b) JPEG
c) PNG
d) RAW
Answer:
JPEG
Explanation:
In this exercise we have to identify which type of image file corresponds to losing compression, so we have to:
This corresponds to JPEG, or letter B.
What is JPEG?JPEG is an acronym for Joint Photographics Experts Group, it is a method of compressing photographic images and is also considered as a file format.
In this way the compression level can be adjusted, and the more compressed the file in question is, obviously its size will be smaller. However, the image quality will also be lower. Furthermore, each time the same JPEG image is recorded, it loses quality, because with this method, the process of saving the file implies compression and consequent loss of quality.
See more about JPEG at brainly.com/question/5029762
Whst addresses do not change if you copy them to a different cell?
The type of addresses that do not change if you copy them to a different cell is Absolute references.
What are absolute references?There are known to be two types of cell references which are: relative and absolute.
Note that Relative and absolute references can work differently if copied and filled to other cells. The Absolute references, is one that often remain constant, no matter where a person may have copied them to.
Therefore, The type of addresses that do not change if you copy them to a different cell is Absolute references.
Learn more about Absolute references from
https://brainly.com/question/11764922
#SPJ1
Which is heavier a CRT or LED?
CRT TV is huge heavy & bulky compared to LED TV's but more reliable as far as the Tube itself is concerned. LED TV's are light and also consume less current.
Compute the approximate acceleration of gravity for an object above the Earth's surface, assigning accelgravity with the result.
The expression for the acceleration of gravity is: (GM)/(d 2), where G is the gravitational constant 6.673 x 1011, M is the mass of
the Earth 5.98 x 1024 (in kg), and d is the distance in meters from the Earth's center (stored in variable dist_center).
Sample output with input: 6.3782e6 (100 m above the Earth's surface at the equator)
Acceleration of gravity: 9.81
See How to Use zyBooks for info on how our automated program grader works.
4621403151980x37
1 G = 6.673e-11
2 M
5.98e24
3 accel_gravity = 0.0
4
5 dist_center = float (input())
6
Your solution goes here ***
8
9 print (f'Acceleration of gravity: (accel_gravity:.2f}')
7
Do
test
passed
All tests
passed
Answer:
#include <iostream>
#include <cmath>
const double G = 6.673e-11;
const double M = 5.98e24;
void computeAcceleration(double dist_center, double &accel_gravity) {
accel_gravity = (G*M)/pow(dist_center, 2);
}
int main() {
double dist_center = 6.3782e6;
double accel_gravity = 0.0;
computeAcceleration(dist_center, accel_gravity);
std::cout << "Acceleration of gravity: " << accel_gravity << std::endl;
return 0;
}
Explanation:
This code defines the gravitational constant (G) and the mass of the Earth (M) as constants.
It defines a function computeAcceleration which takes in a distance from the Earth's center and assigns the acceleration of gravity using the equation provided above.
It then calls the function and prints the output in the main method.
You can test the code by passing different distance and make sure the output is correct.
This code defines the gravitational constant (G) and the mass of the Earth (M) as constants:
#include <iostream>
#include <cmath>
const double G = 6.673e-11;
const double M = 5.98e24;
void computeAcceleration(double dist_center, double &accel_gravity) {
accel_gravity = (G*M)/pow(dist_center, 2);
}
int main() {
double dist_center = 6.3782e6;
double accel_gravity = 0.0;
computeAcceleration(dist_center, accel_gravity);
std::cout << "Acceleration of gravity: " << accel_gravity << std::endl;
return 0;
}
What does this function defines?It defines a function computeAcceleration which takes in a distance from the Earth's center and assigns the acceleration of gravity using the equation provided above.
It then calls the function and prints the output in the main method.
You can test the code by passing different distance and make sure the output is correct.
Learn more about gravitational constant
https://brainly.com/question/17438332
#SPJ1
Need help with this python question I’m stuck
It should be noted that the program based on the information is given below
How to depict the programdef classify_interstate_highway(highway_number):
"""Classifies an interstate highway as primary or auxiliary, and if auxiliary, indicates what primary highway it serves. Also indicates if the (primary) highway runs north/south or east/west.
Args:
highway_number: The number of the interstate highway.
Returns:
A tuple of three elements:
* The type of the highway ('primary' or 'auxiliary').
* If the highway is auxiliary, the number of the primary highway it serves.
* The direction of travel of the primary highway ('north/south' or 'east/west').
Raises:
ValueError: If the highway number is not a valid interstate highway number.
"""
if not isinstance(highway_number, int):
raise ValueError('highway_number must be an integer')
if highway_number < 1 or highway_number > 999:
raise ValueError('highway_number must be between 1 and 999')
if highway_number < 100:
type_ = 'primary'
direction = 'north/south' if highway_number % 2 == 1 else 'east/west'
else:
type_ = 'auxiliary'
primary_number = highway_number % 100
direction = 'north/south' if primary_number % 2 == 1 else 'east/west'
return type_, primary_number, direction
def main():
highway_number = input('Enter an interstate highway number: ')
type_, primary_number, direction = classify_interstate_highway(highway_number)
print('I-{} is {}'.format(highway_number, type_))
if type_ == 'auxiliary':
print('It serves I-{}'.format(primary_number))
print('It runs {}'.format(direction))
if __name__ == '__main__':
main()
Learn more about program on
https://brainly.com/question/26642771
#SPJ1
What type of software is developed by volunteers, contains code in the public domain, and helped to make Linux popular
Which of the following factors is most likely to result in high shipping and handling
costs?
A promotion for free shipping on
orders over a predetermined order
total
An increase in supply of a readily and
widely available packaging material
A lower than average hourly pay rate
for material handlers
An increase in demand for widely
used packaging material
The factor that is most likely to result in high shipping and handling costs is D. An increase in demand for widely used packaging material.
What is a Shipping Cost?This refers to the amount of money that is paid to deliver goods to a particular location via a ship.
Hence, we can see that The factor that is most likely to result in high shipping and handling costs is an increase in demand for widely used packaging material.
This is likely to see increased charges for shipping as more people are asking for packaged materials to be transported.
Read more about shipping costs here
https://brainly.com/question/28342780
#SPJ1
Explain how to defending Wi-Fi network from attacker
Answer:
Explanation:
kill th ebattery and stair at it for a lifetime
Wider channel bandwidth ________. increases transmission speed allows more channels to be used in a service band both increases transmission speed and allows more channels to be used in a service band neither increases transmission speed nor allows more channels to be used in a service band
Wider channel bandwidth decreases transmission speed.
What is Wider channel bandwidth?Wider WiFi channel widths is known to be a bandwidth that is made up of 40 MHz and 80 MHz width.
They are known to be used often in the 5 GHz frequency band. In this type pf band, there are said to have a lot of WiFi channels and also less overlapping channels and as such, Wider channel bandwidth decreases transmission speed.
Learn more about bandwidth from
https://brainly.com/question/4294318
If you are wanting to change programs, when do you need to make this request?
a.To change programs, you must contact your advisor or counselor and complete the change of program application during an open application window.
b.You can change at any time; just email your advisor regarding the change.
c.You can never change programs.
d.You do not need to notify anyone. You just need to start taking courses for the desired program.
Answer:
If your discussing colleges and degrees, you cant take courses your not autorized to take.
So if you have one major and wish to change to another then you need to discuss with a student advisor or counseler so they can make the changes. They will also discuss which classes are necessary for your program of choosing, making sure all your requirements are completed.
Explanation:
Can someone tell me how can you give brainliest to ppl
Answer:
Basically, wait for 2 people to answer.
Explanation:
Then after 2 people answers, there will be a crown on both answers.
Then, you can click that crown to whoever you think the best answer is.
I hope this helps!
Which development approach was used in the article, "Protecting American Soldiers: The Development, Testing, and Fielding of the Enhanced Combat Helmet"? Predictive, adaptive or Hybrid
The sequential and predetermined plan known as the waterfall model is referred to as the predictive approach.
What is the development approachThe process entails collecting initial requirements, crafting a thorough strategy, and implementing it sequentially, with minimal flexibility for modifications after commencing development.
An approach that is adaptable, also referred to as agile or iterative, prioritizes flexibility and cooperation. This acknowledges that needs and preferences can evolve with time, and stresses the importance of being flexible and reactive to those alterations.
Learn more about development approach from
https://brainly.com/question/4326945
#SPJ1
The development approach that was used in the article "Protecting American Soldiers: The Development, Testing, and Fielding of the Enhanced Combat Helmet" is Hybrid approach. (Option C)
How is this so?The article "Protecting American Soldiers: The Development, Testing, and Fielding of the Enhanced Combat Helmet" utilizes a hybrid development approach,combining aspects of both predictive and adaptive methods.
Predictive development involves predefined planning and execution, suitable for stable projects,while adaptive methods allow for flexibility in adapting to changing requirements and environments.
Learn more about development approach at:
https://brainly.com/question/4326945
#SPJ1
To help insure that an HTML document renders well in many web browsers it is important to included which at top of file
Answer:
<!DOCTYPE html>
Explanation:
This tells the browseer that the code is HTML5 format
What are the challenges associated with not being ‘tech savvy’ in 2023?
In 2023, not being 'tech-savvy' can present several challenges due to the increasing reliance on technology in various aspects of life.
Some challenges associated with not being tech-savvyDigital Communication: Communication has largely shifted to digital platforms, such as email, messaging apps, and video conferencing. Not being tech-savvy can make it difficult to effectively communicate and connect with others, especially in professional settings where digital communication is prevalent.
Online Information and Resources: The internet is a primary source of information and resources for various purposes, including education, research, and everyday tasks. Not being tech-savvy may hinder the ability to navigate and access online information, limiting opportunities for learning, decision-making, and staying informed.
Digital Skills Gap: Many job roles and industries now require basic digital skills. Not being tech-savvy can create a skills gap, making it challenging to find employment or succeed in the workplace. Basic skills such as using productivity software, digital collaboration tools, and online research are increasingly expected in many job positions.
Learn more about tech savvy at
https://brainly.com/question/30419998
#SPJ1