Which method finds the greatest common divisor of 14 and 35?

import math

math. ____ (14,35)

Answers

Answer 1

Answer:

gcd method

Explanation:

Given

The code snippet

Required

Which method completes the code

To return the gcd of numbers, simply use the gcd method.

So: the complete code is;

import math

math.gcd(14,35)

Answer 2

Answer:

gcd

Explanation:

it means greatest common divisor


Related Questions

KDS Company has 3 departments: 1. Dept X 2. Dept Y 3. Dept Z. Design a program that will read as input each department's sales for each quarter of the year, and display the result for all divisions.

Answers

Complete Question:

Design a program that will use a pair of nested loops to read the company's sales amounts. The details are as follows: -

KDS Company has 3 departments: 1. Dept X 2. Dept Y 3. Dept Z. Design a program that will read as input each department's sales for each quarter of the year and display the result for all divisions. Use a two-dimensional array that will have 3 rows and 4 columns

Answer:

In C++:

#include<iostream>  

using namespace std;  

int main() {  

   int depts[3][4];

   char dptcod [3] ={'X','Y','Z'};

   for (int rrw = 0; rrw < 3; rrw++) {  

       for (int cll = 0; cll < 4; cll++) {  

           cout<<"Dept "<<dptcod[rrw]<<" Q"<<(cll+1)<<": ";

           cin>>depts[rrw][cll];  }  }  

       for (int rrw = 0; rrw < 3; rrw++) {  

           int total = 0;

           for (int cll = 0; cll < 4; cll++) {  

               total+=depts[rrw][cll]; }

               cout<<"Dept "<<dptcod[rrw]<<" Total Sales: "<<total<<endl;}  

   return 0; }

Explanation:

This declares the 3 by 4 array which represents the sales of the 3 departments

   int depts[3][4];

This declares a character array which represents the character code of each array

   char dptcod [3] ={'X','Y','Z'};

This iterates through the row of the 2d array

   for (int rrw = 0; rrw < 3; rrw++) {  

This iterates through the column

       for (int cll = 0; cll < 4; cll++) {

This prompts the user for input

           cout<<"Dept "<<dptcod[rrw]<<" Q"<<(cll+1)<<": ";

This gets the input

           cin>>depts[rrw][cll];  }  }  

This iterates through the row of the array

       for (int rrw = 0; rrw < 3; rrw++) {

This initializes total sum to 0

           int total = 0;

This iterates through the column

           for (int cll = 0; cll < 4; cll++) {

This calculates the total sales of each department

               total+=depts[rrw][cll]; }

This prints the total sales of each department

               cout<<"Dept "<<dptcod[rrw]<<" Total Sales: "<<total<<endl;}  


When more open-ended questions are asked in a study group, discussions are more likely to
end quickly.
O result in all members agreeing.
be effective.
result in more disagreements.

Answers

Answer:

be effective.

Explanation:

A question can be defined as a statement that begs or requires an answer, response or reply.

Generally, there are four (4) main types of question and these includes;

I. Rhetorical question: this is a question that expresses a person's opinion but do not require an answer, reply or response.

II. Close-ended question: this type of question requires the respondent to give a yes or no answer.

III. Between the lines: it involves discovering an answer that is implied but not stated explicitly. Thus, the answer is hidden in the piece of information provided.

IV. Open-ended question: this type of question requires the respondent to give a detailed explanation rather than just a yes or no response.

When more open-ended questions are asked in a study group, discussions are more likely to be effective because the discussants get to share their opinions on the topic of discussion (subject matter) while considering other opinions or perspectives.

Answer:

be effective

Explanation:

just took the test

opposite word of reassembling​

Answers

OPPOSITE WORDS OF REASSEMBLING

dispersedisbandseparate
opposite word of reassembling is separate

What are some things that games were historically used for?

a
friendly competition
b
spending time with other people
c
practicing skills necessary for survival
d
all of the above

Answers

Answer:

D) All of the above

Explanation:

All of these options are true.

Hope it helps and is correct!

why do i like art in your own words can anyone help me plesssssssssssssss

Answers

Answer:

i like art because it can show feeling and inspire people the creativity that people show. The skill to make art is is outstanding and even those some of the most famous artist are not alive any more there art is still seen by other people today that's why i like art because art can show how a person feels. Here is an example if a person is deaf and cant hear then they don't speak but they can paint what they feel same thing for other people. painting can also help people did you know that painting is proven and effective way to reduce stress and that's why i like art

Explanation:

hope this helped

i like art because Art has allowed us to explore new ideas. It lets us freely express ourselves in many ways. From story telling, to painting, to song.

hope it helped!!

Which of the following is a strategy used to enhance communication in a presentation?
using as few slides as possible by increasing the amount of information on each slide
using bullets to break up text and to highlight important talking points
using a large variety of background colors and slide transitions
using images to fill up unused space on each slide

Answers

Answer: using bullets to break up text and to highlight important talking points

Explanation:

When making a presentation, it is vital for one to communicate properly with the audience and pass the message across to them well and clearly.

Using bullets to break up text and to highlight important talking points can be used to enhance communication in a presentation. This makes communication easier.

We should note that every other options given aren't appropriate and won't enhance communication.

Answer: using bullets to break up text and to highlight important talking points

Explanation:

Does anyone know how to do Python Essentials 5.7.1.6 because i am completely lost

Answers

Answer:

create a 2d array of "#" for each letter, and use string manipulation or regular expressions to print each letter

Explanation:

Noise can be a barrier to communication. True or False ​

Answers

Answer:

True

Explanation:

This is true because noise is one of the most common communication barriers.

Answer:

True!

Explanation:

Noise is a strong barrier that makes it hard to communicate!

What is the first step in finding a solution to a problem? (5 points)
Choose a solution.
Think of options to solve the problem.
Try the solution.
Turn the problem into a question.

Answers

Answer:

Turn the problem into a question.

Explanation:

Sean Cody is a website most known for what?

Answers

Answer:

Sean Cody is a website most known for to translate English to Portuguese.

is an website from the portugués

what is biological diversity?​

Answers

Answer:

The term biodiversity (from “biological diversity”) refers to the variety of life on Earth at all its levels, from genes to ecosystems, and can encompass the evolutionary, ecological, and cultural processes that sustain life.

Explanation:

Hurrryyyy it’s either a or c

How does the use of modules provide flexibility in a structured programming design?

Modules enable multiple programmers to work on a program at the same time
Modules enable a linear approach to software development
Modules ensure the reuse of code variables.
Modules ensure that a program will be completed on time.

Answers

Answer and Explanation:

I believe its A. Modularity enables multiple programmers to work on a program at the same time..

Let me know if I'm wrong..

I'm getting pretty desperate plz help me, I'll give brainiest, and ill make a free question worth 100 points this is for coding FLVS fine ill put it 100 plz help meee





Part 1: Plan and Write the Pseudocode
Using pseudocode, write an algorithm that someone else can follow.
Decide on a question to ask the user. Some ideas include:
What grade are you in?
What sport do you play?
Where did you go on vacation?
Use one variable to store the response.
Use one if-else statement to make a decision based on the user's input.
Display two messages; one for each condition (True and False).
Insert your pseudocode here: (you only need to do one)
Flowchart
Write it out

Get input:

If statement:

Print if true:

Print if false:


Part 2: Code the Program
Use the following guidelines to code your program.
Use the Python IDLE to write your program.
Using comments, type a heading that includes your name, today’s date, and a short description.
Set up your def main(): statement. (Don’t forget the parentheses and colon.)
Write one if-else statement using user input.
Include a print message for both conditions (True and False).
Conclude the program with the main() statement.
Follow the Python style conventions regarding indentation in your program.
Run your program to ensure it is working properly. Fix any errors you may observe.
When you've completed writing your program code, save your work by selecting 'Save' in the Python IDLE. When you submit your assignment, you will attach this Python file separately.

Part 3: Post Mortem Review (PMR)
Using complete sentences, respond to all the questions in the PMR chart.
Review Question
Response
What was the purpose of your program?

How could your program be useful in the real world?

What is a problem you ran into, and how did you fix it?

Describe one thing you would do differently the next time you write a program.




Part 4: Save Your Work
Don't forget to save this worksheet. You will submit it for your assessment.

you can also give me a link to your work and ill use it as a guide I will not copy
my g mail is my user name

Answers

Answer:

give other guy brainliest

HELP PLEASE ive literally been here for hours
Binh has a few hours' time to create a presentation. She has most of the text and pictures she intends to use. Which feature can help her to quickly transfer the content into an attractive presentation?

A.
slide layout
B.
slide themes
C.
Slide Master
D.
Slide pane

Answers

It’s D...................................

Answer:slide layout

Explanation:

I'm getting pretty desperate plz help me, I'll give brainiest, and ill make a free question worth 100 points this is for coding FLVS



Part 1: Plan and Write the Pseudocode
Using pseudocode, write an algorithm that someone else can follow.
Decide on a question to ask the user. Some ideas include:
What grade are you in?
What sport do you play?
Where did you go on vacation?
Use one variable to store the response.
Use one if-else statement to make a decision based on the user's input.
Display two messages; one for each condition (True and False).
Insert your pseudocode here: (you only need to do one)
Flowchart
Write it out

Get input:

If statement:

Print if true:

Print if false:


Part 2: Code the Program
Use the following guidelines to code your program.
Use the Python IDLE to write your program.
Using comments, type a heading that includes your name, today’s date, and a short description.
Set up your def main(): statement. (Don’t forget the parentheses and colon.)
Write one if-else statement using user input.
Include a print message for both conditions (True and False).
Conclude the program with the main() statement.
Follow the Python style conventions regarding indentation in your program.
Run your program to ensure it is working properly. Fix any errors you may observe.
When you've completed writing your program code, save your work by selecting 'Save' in the Python IDLE. When you submit your assignment, you will attach this Python file separately.

Part 3: Post Mortem Review (PMR)
Using complete sentences, respond to all the questions in the PMR chart.
Review Question
Response
What was the purpose of your program?

How could your program be useful in the real world?

What is a problem you ran into, and how did you fix it?

Describe one thing you would do differently the next time you write a program.




Part 4: Save Your Work
Don't forget to save this worksheet. You will submit it for your assessment.

you can also give me a link to your work and ill use it as a guide I will not copy
my g mail is my user name

Answers

Answer:

Pseudocode:

import random

fetch user input on a lucky number

insert input into variable - "response"

new variable, random = randint

condition to check wheather random is our response

display results

Python Code:

import random

def main():

response = int(input("Guess my lucky number, its between 1 and 100: "))

lucky_number = random.randint(1,100)

if response == lucky_number:

print(f"Wow you're right, it is {lucky_number}")

else:

print("Sorry, Try Again")

main()

Reminder:

intended for python3 as i included the format f

also it could be done without the import, just manually insert a number

i'll leave the post mortum to you

Explanation:

what does not stand for​

Answers

not stands for Naczelna Organizacja Techniczna.
Normal Operating Temperature

Am I missing something?

Answers

Shshahw auehebehej jagehevehe suene she e e r r d f g g g e de w ehehejenebe e e where

What happens when the screen comes off the keyboard for an HP laptop?? Its just a question!

Answers

Answer:

If the screen comes off, its probably broken  

Explanation:

I don't really know anything about computers, but that really sounds bad

I need help 50 points and brainiest if you answer

Answers

Answer:

200

hope this helps

Explanation:

What is the other name of iterative staatement ​

Answers

Answer:

An loop statement

Explanation:

An iteration statement, loop, repeatedly executes a statement, know as a loop body,until the controlling expression is false

What advantage does PNG offer over JPEG?


PNG files can have multiple layers for easy editing.


PNG images can have transparency.


PNG images can have brighter colors.

Answers

Answer:

In addition to those, PNG is also saved as a vector image and is saved as shapes, rather than as a raster, where it is saved as pixels

Explanation:

This is especially useful in graphic design and other applications, where PNG is able to have an infinite resolution because it is not composed of pixels.

List 10 ways how can graphic design help the community

Answers

Explanation:

Boosts brand awareness and name recognition. Saves time and money in the long run. Builds your brand's visual identity. Boosts employee morale, pride and productivity. Makes you stand out from the competition. Reinforces professionalism. Improves the readability, structuring and presentation of heavy content.

Which is an example of the operation of a game?

a
The character has to jump over lava to travel through the level.
b
The character dies whenever the bear bites it.
c
The game has sounds to signify the approaching danger.
d
The player uses a joystick to control the character.

Answers

Answer:

D.  

The player uses a joystick to control the character.

Explanation:

The MEANING of operation is: "The fact or condition of functioning or being active."

This explains that the answer is D because you are using the joystick to control the character. Hope the helps.

Answer:

I'll say it's A. If it's not A I know it has to be B. Because nobody uses joysticks anymore were talking about examples of a operation of a game! I hope this helps! and if the answer's are wrong, just tell me.

Explanation:

Why do companies collect information about consumers? A. Because they want to meet new friends on social networks B. Because they take consumers' best interests to heart C. Because they want to effectively advertise to consumers D. Because they are looking for good employees to hire​

Answers

Answer:

C. Because they want to effectively advertise to consumers.

Explanation:

Companies collect info for more accurate advertisements, which are designed to make people interact with them more commonly.

Which of the follow efficiencies would be considered unreasonable?

Answers

Answer:

Exponential or factorial efficiencies algorithms

Explanation:

In a computer engineering system, the efficiencies that would be considered unreasonable is the "Exponential or factorial efficiencies algorithms"

This is unlike Algorithms with a polynomial efficiency that is considered to have Reasonable Time.

what legislation relating was introduced in rsa in 2003​

Answers

Answer:

 The amended Plastic Bags Regulations that repealed the May 2002 Regulations were gazetted on 9 April 2003 (RSA, 2003a) and passed into law in the gazette of 9 May 2003 (RSA, 2003b).

Can someone pls help with this (20 points)

Answers

Answer:

1. A

2. D

3. C

4. B

Explanation:

Hope this helps! Not sure if this is correct but im pretty sure the answers I gave are accurate. If Im wrong about any of the answers i put someone please correct me in the comments! :)

You develop an app, and you don't want anyone to resell it or modify it. This is an example of: A an operating system. B open source software. C proprietary software.

Answers

The answer is C. Proprietary software is when the publisher reserves rights from licensees to modify or share the software.
C: property software
I think because I’m pretty sure if you develop the app its your property

***ASAP***
OpenOffice.org software is what type of software?

A. Event planning software

B. Productivity software

C. Internet software

D. Collaboration software

Answers

An internet software im guessing

Answer:

im guessing A. event planning software...

Explanation:

Apache OpenOffice is the leading open-source office software suite for word processing, spreadsheets, presentations, graphics, databases, and more. It is available in many languages and works on all common computers.

Which term defines and describes data and its relationship?

data requirements

project modeling

project infrastructure

data modeling

Answers

Answer:

data modeling

Explanation:

Data model. A formal method of describing data and data relationships. Entity-relationship (ER) modeling. A conceptual database design method that describes relationships between entities.

Other Questions
will give brainliest if right Striker Company estimates its expected cash receipts for the period to be $80,000 and its expected cash disbursements to be $70,000. The beginning cash balance for the period was $5,000. The management wants to maintain a minimum cash balance of $40,000. Knowledge Check 01 How much cash will the company need to borrow Find the length of the missing side. what is the difference between a freshwater ecosystem and a aquatic ecosystem? I need help ASAP will mark the brainliest 1 questions about transcendentalism Do cells shrink or swell until they become isotonic? I am referring to osmosis, hypotonic and hypertonic solutions. Thank you for the help. a triangle has one angle that measures 32 degrees and one angle that measures 102degrees. the measure of the triangle's thrid angle is what degrees? What percent of a dollar is a nickel and a penny?It is ______% of a dollar. a boy has $5 coins and a $10 coins they are eight coins all together and their value is $55 how many of each kind does he have He was flying a kite. (Change from active into passiveO A kite was flown by himO A kite was being flown by himO A kite was flew by himO A Kite has been flown by him Look at the picture and answer, Please show work as well The temperature in Virginia fellfrom 12.3C to -4.7c. What isthe difference between the twotemperatures? When given a system of equations in slope-intercept form, is graphing or substitution the most efficient method to solve? Explain.Choose the best answer below.A.Substitution is the only method that should be used if the answer involves integer values. If the answer involves values that are not integers, graphing would be more efficient because an exact answer can be obtained. It is easier to read graphs when the point of intersection does not occur at integer values.B.Graphing is the only method that would be appropriate to use here because it is not possible to use the substitution method if both equations are in slope-intercept form.C.Substitution is the only method that would be appropriate to use here because it is not possible to use the graphing method if both equations are in slope-intercept form.D.Graphing and substitution are appropriate to use if the answer involves integer values. If the answer involves values that are not integers, substitution would be more efficient because an exact answer can be obtained. It can be difficult to read graphs if the intersection point does not have integer values so this would be an inefficient method to solve with.PLEASE HELPPPPP Completa las oraciones con la forma correcta del verbo en pretrito. Sigue el modelo.1 O el timbre del telfono, ustedes tambin lo ___ ? find the product 240 * 5.07 There are four people in a family-a father, a mother and two children-and they have won two tickets to go to Disneyland for a week. They decide to select a sample of two people for the trip as follows: the mother and father flip a coin to see which of the two of them will go, and they then flip a coin to see which of the two children will go. Which of the following is true? Factor the polynomial: x^7 - x^5Select one:a. x^5(1 - x)b. x^5(1 - 2x)c. x^5(x^2 - 2x)d. x^5(x^2 - 1) what is the correct equation of the line shown at the right? Read the following passage from The First Men in the Moon."The net result of the great experiment presented itself as an absolute failure. It was a rout, and I was the sole survivor."Which element of plot is represented in the passage above?rising actionsettingresolutionconflict