Answer:
multiplier = 0
while multiplier <= 12:
print(f'4 times {multiplier} = ' + str(4 * multiplier))
multiplier += 1
Explanation:
The multiplier is just a variable
while the variable is equal to or less than 12, the program will print "4 times (multiplier value) = (4 times the multiplier value)"
the multiplier value then is increased each time the while loop is completed(which is 12 times)
And when the multiplier value is equal to 12, the program will stop, hope this helps! A simpler version would just be
multiplier = 0
while multiplier <= 12:
print(4 * multiplier)
multiplier += 1
Answer:
Use the code below
it is a set of computer instructions
Answer:
computer software is a set of computer instructions
Answer:
computer software is a set of computer instructions
Which comparison operator means ‘is not equal to’?
!=
==
=#
%
Answer:
A. !=
Explanation:
== Means equal, != is like a block of that, meaning NOT EQUAL
As per the operators, the comparison operator that means 'is not equal to' is !=.
The comparison operator!= is used to detect whether two values are not equal. It is often used to assess conditions in programming languages and logical expressions.
When used, the operator determines if the values on each side of it are not equal. The expression evaluates to true if they are not equal.
This operator is useful for comparing data and executing various code blocks based on their inequality.
Thus, programmers may use the!= operator to generate branching logic and make decisions depending on the equality or inequality of values, increasing the flexibility and control of their program.
For more details regarding operators, visit:
https://brainly.com/question/29949119
#SPJ6
Brandon realized that his program wasn’t running properly because he used a colon instead of a semi-colon. What kind of error did Brandon make?
syntax error
Boolean error?
logic error?
iteration error?
Answer:
Syntax Error
Explanation:
Syntax Errors a simple errors where you could forget something simple like a comma or maybe misspell a word.
Answer:
The error Brandon made by using a colon instead of a semi-colon is Syntax error
What output is generated by this for loop?
String str = "";
for (int i = 0; i <= str.length() - 1; i++)
{
System.out.println(str.charAt(i) + "-");
}
Group of answer choices
---
No output is generated.
--
-
Answer:
No output is generated
Explanation:
(1) The first line initialized an empty string, str
(2) The for loop attempts to iterate through the empty string. Since it is an empty string, no iteration will be done.
This implies that, the print statement within the loop block will not be executed.
Hence:
No output is generated
In object-oriented programming, what is an instance of a class? A. A code used to create multiple classes B. An individual object of a class C. The attributes and behaviors of one class D. The moment an object becomes a class
Answer:
I'm thinking it's B. An individual object of a class
Sorry if I'm wrong :(
What is considered appropriate dress for men and women in the workplace? Select all that apply.
Answer:
I guess clean, pressured pants or skirt
and
dress shirts and ties
Answer:
the first and last
Explanation:
because you don't want to reveal any things that are inappropriate but you still want to be comfortarible.
How are online sources used? Check all that apply.
as a way to learn from others
as a way to play games
as a way to find information
as a way to socialize with others
as a way to copy the work of others
Answer:
As a way to learn from others, as a way to find information
Explanation:
When you read about lets say how to make a certain cookie mix you like your learning from someone else. The source is also helping you find information about that topic you want. Its not supposed to be a way for entertainment or games, its not a platform for you to talk to others, and not made for you to just copy and take credit.
Answer: a, c, d
Explanation: edge 2021
Does anybody play nba2k21 On ps4
Answer:
yeah but I gotta re-download it
Answer:
Nope but can i get it on switch
Explanation:
What is full form of Computer ?
Answer:
Computer is not an acronym, it is a word derived from a word "compute" which means to calculate. Some people say that COMPUTER stands for Common Operating Machine Purposely Used for Technological and Educational Research.
Which one of these is a common result of good peer communication in the workplace?
an increased number of coworkers
a decreased number of coworkers
decreased product
increased product
Answer:
increased product.
Hope you have a nice day.
can you guys help me??
Answer:
a = int(input("Enter number: " ))
print("Product (x12) = " + str(a * 12))
except:
print("Entered not a number")
Plz help
Match each engineering job role to its description
Answer:
Check image, correct on PLATO
Explanation:
The correct matches of each engineering job role to its description are mentioned below.
What is engineering?Engineering is the application of science and mathematics to problem-solving. While scientists and innovators create new ideas, it is engineers that put these ideas into practice.
It is the integration of scientific concepts to the design and construction of machinery, structures, and other objects such as bridges, tunnels, roads, automobiles, and buildings.
Each engineering job role's correct match to its description is shown here.
Heads the engineering department and ensures that it operates smoothly - chief engineerperforms administrative work to ensure projects comply with engineering codes and standards - office engineerperforms a variety of onsite tasks, such as supervision and equipment installation - field engineerensures projects end on time through careful planning and organization - project engineerensures proper sequencing of events to minimize project duration - planning engineer.Learn more about engineering here:
https://brainly.com/question/19117846
#SPJ2
Backing up your data on a regular basis is a part of the ___ process.
A. insurance
B. troubleshooting
C. maintenance
D. regulatory
Backing up your data on a regular basis is a part of the maintenance process.
What is data backup?The term data backup is known to be a term that entails the act of copying of physical or virtual files or databases to nay kind of secondary location for safe keep or preservation.
In any organization, the backing up of system files as well as documents and organisation information are very important in terms of system failure or breakdown.
Hence, Backing up your data on a regular basis is a part of the maintenance process because it entails a preservation way of keeping data.
Learn more about maintenance process from
https://brainly.com/question/23545233
#SPJ1
Greg is looking around an art exhibition displaying American art from different ages. He spots the works of some famous artists. Match the
artists to the era of which they belong.
Benjamin West
Georgia O'Keeffe
Native Americans
Thomas Crawford
Answer:
Benjamin west is 18th century
Thomas Crawford is 19th century
Native Americans is pre-18th century
Georgia O'Keeffe is 20th century
Explanation:
Question # 1
Dropdown
Choose the word that matches each definition.
[ ] is the study of designing and building computers and computer-based systems.
Answer:
Computer engineering
Explanation:
Computer engineering is the answer
I could've been somebody, you know? Esperanza, you go to school. Study hard. . . . Got to take care all your own, she says shaking her head. —"A Smart Cookie," Sandra Cisneros Which inference can you make about Esperanza’s mother based on her words? She believes that good things happen by chance. She believes that people must take responsibility for their futures. She believes that to be somebody, you need to have talent.
Answer:
B or She believes that people must take responsibility for their futures.
Explanation:
mark me brainliest plz?:)
Answer:
B
Explanation:
i hope you know you are worth it
Which keyboard shortcut is used to move the cursor one cell to the right of the insertion point?
Tab
Shift+Tab
Down arrow
Shift+Left Arrow
Answer:
Tab
Explanation:
Pressing the tab button moves the cursor one cell to the right of the insertion point
Answer:
A. Tab
Explanation:
edge
Each time you use an object in a program, you must write the class program code from scratch.
True or False?
Describe white blood cells you see at 10X?
Answer:
White blood cells are part of the body's immune system. They help the body fight infection and other diseases. Types of white blood cells are granulocytes (neutrophils, eosinophils, and basophils), monocytes, and lymphocytes (T cells and B cells). ... Also called leukocyte and WBC.
Explanation:
input data that can be accepted by a function in Python is called as
Answer:
Getting User Input from Keyboard
Explanation:
There are two functions that can be used to read data or input from the user in python: raw_input() and input(). The results can be stored into a variable.
Answer:
also know as IDE
Explanation:
1 2
3 4
Question #4
Multiple Choice
Which statement is true about the random and secrets modules?
O Only the secrets module can generate random numbers.
O Both modules can generate random numbers.
Neither module can generate random numbers.
O Only the random module can generate random numbers.
Answer:
Both modules can generate random numbers.
Explanation:
Both the random and secrete modules are builtin programming modules used for generating random number variables. The random module consists of a number of methods in its module for random. number generation such as seed() ; getstate() ; random() ; choice() ; randrange() ; randint() and so on. Random methids are best for generating random numbers which are to be adopted for simulation or modeling. The secrete modules does the same however, numbers generated are stronger and less predictable than the random number modules. Secrete modules are usually adopted in the generation of authentication token and security pins.
Answer:
Neither module can generate random numbers.
Explanation:
Because I took the quiz and that's the right answer.
write a Python function that join the two string and print it
Answer:
string1 = "this is string 1"
string2 = " this is string 2"
print(string1 + string2)
Explanation:
the string1 variable is assigned with a string value(aka. str)
string2 is also a variable assigned with a slightly different string value
the 3rd line then prints string 1 and 2 to the console.
Answer:
Nothing complicated
See attached images
Briana designs a science fair experiment where she drops a basketball, tennis ball and golf ball from three different heights. She conducts ten trials where she drops each type of ball from a height of 100 cm, 80 cm, and 50 cm. She records the height of each ball after it bounces off the ground. Briana's teacher hands her science fair proposal back to her and asks her to fix her mistake. How should she fix her experiment?
Which one way in which using infrared in game console controllers could affect the experience of a person playing the game?
Please answer asap I need it now
What type of computer is used in ATM?
Prompt
What is a column?
Answer:
A column is a vertical group of values within a table. It contains values from a single field in multiple rows. ...
A column is a vertical group of values within a table. It contains values from a single field in multiple rows.
Why prompt is used?Since we can choose only one of the prompts, let's work with prompt A. We can answer it in the following manner edgar Allan Poe believed that a good short story must have a single, unifying effect. He did apply that concept to his own short stories. Let's briefly analyze "The Fall of the House of Usher."
In the story, every element contributes to the story's effect: the setting, the characters, the dialogue, the word choice and the mood, among others. From the beginning, the narrator describes an "oppressive" weather. He proceeds to let us know that his friend Usher looks sick and strange. The house where Usher lives is also quite eerie. And to top it all, Usher's sister, who was buried alive, has returned for revenge.
Poe believed a good short story should possess a single, unifying effect, and that everything in the story should contribute to that effect. He achieves that in his short stories, where every element (characters, setting, imagery, word choice, etc.) contributes to the feeling of tension, anxiety, even horror.
Therefore, A column is a vertical group of values within a table. It contains values from a single field in multiple rows.
Learn more about element on:
https://brainly.com/question/14347616
#SPJ2
What is the relation, if any, between a web master and a web developer?
A) They are simply different titles that different companies may use for the exact same job.
B) While a web developer maintains a company's websites, the web master creates them in the first place.
C) There is no relation between them as they handle entirely different aspects of a company's web presence
D) While a web master maintains a company's websites, the web developer creates them in the first place.
Answer:
a)
Explanation:
they are the same
which tools is used to bundle cables neatly inside and outside of a computer?
Answer:
Cable Ties
Explanation:
Display the IP address of the default gateway of this device.
Answer:
ipconfig
Explanation:
Type ipconfig and look for a Default Gateway entry that is not blank.
HELP ASAP!!!!!!!
Which one of these is an example of soft skills?
coding in Python
creating a flowchart
having a good work ethic
using project management software