If x + 3y = 7 and y = 2, then x equals​

Answers

Answer 1

Answer:

X=1

Explanation:

First, let's start by pushing x to the side. As of now, that variable doesn't matter, so that leaves us with 3y = 7.

It informs us already that y = 2, so we're going to multiply 2 x 3 , which gets us 6.

We're now going to flip the equation so we can subtract our total by 6.  7 - 6 gets us 1.

Bringing our x back and using process of elimination, we now know that x = 1.

Full Total Equation:

     1 + 3(2) = 7

           or

     1 + 6 = 7

Hope this helped!


Related Questions

9.4 code practice edhesive. PLEASE PLEASE PLEASE HELP

Answers

Answer:

a = [[34,38,50,44,39],  

    [42,36,40,43,44],  

    [24,31,46,40,45],  

    [43,47,35,31,26],

    [37,28,20,36,50]]

     

for r in range(len(a)):

   for c in range (len(a[r])):

       if (a[r][c]% 3 != 0):

           a[r][c]=0

for i in range(len(a)):

   for j in range (len(a[i])):

       print(a[i][j], end=" ")

   print(" ")

Explanation:

We start off by declaring an array called "a". As introduced in the previous lessons, we use two for loops to fully go through all the rows and columns of the two-dimensional arrays. We then add in the line that checks if the remainder of any of these is not equal to zero, then print them as zero on the grid.

(I also got 100%)

mark as brainliest pls hehe

In this exercise we have to use the knowledge in computational language in python to describe a code that best suits, so we have:

The code can be found in the attached image.

What is the function range?

The range() function returns a number series in the range sent as an argument. The returned series is an iterable range-type object and the contained elements will be generated on demand. It is common to use the range() function with the for loop structure. In this way we have that at each cycle the next element of the sequence will be used in such a way that it is possible to start from a point and go incrementing, decrementing x units.

To make it simpler we can write this code as:

a = [[34,38,50,44,39],  [42,36,40,43,44],  [24,31,46,40,45],  [43,47,35,31,26],

[37,28,20,36,50]]

for r in range(len(a)):

  for c in range (len(a[r])):

      if (a[r][c]% 3 != 0):

          a[r][c]=0

for i in range(len(a)):

  for j in range (len(a[i])):

      print(a[i][j], end=" ")

  print(" ")

See more about python at brainly.com/question/19705654

explain three tests that uses for tests normality​

Answers

Answer:

Methods used for test of normality of data. ... [10] There are various methods available to test the normality of the continuous data, out of them, most popular methods are Shapiro–Wilk test, Kolmogorov–Smirnov test, skewness, kurtosis, histogram, box plot, P–P Plot, Q–Q Plot, and mean with SD.

Explanation:

HOPE IT HELPS YOU

Answer:

123

Explanation:

it's very hard how can you know

Pleaseeeeee help!!!!

Answers

Answer:

1.klone

2.internet information services

3.nginx web server

4 apache HTTP

I hope you like it

PYTHON:
Defining a Figure of Merit
Consider a string-matching figure of merit. That is, it tells you how close to a given string another string is. Each matching letter in the same spot is worth one point. Only letters need be considered.
For instance, if the secret string reads 'BLACKBEARD', then 'BEACKBEARD' is worth 9 points, 'WHITEBEARD' is worth 5 points, 'BEARDBLACK' is worth 4 points, and 'CALICOJACK' is worth 1 point.
Compose a function pirate which accepts a string of characters guess and returns the number of characters which match the secret string 'BLACKBEARD'. It should be case-insensitive; that is, you should convert input to upper-case letters. It should return zero for strings which are not ten characters in length.
Your submission should include a function pirate( guess ) which returns a float or int representing the number of matching characters. (You should provide the secret string 'BLACKBEARD' inside the function, not outside of it.)
strings should not have same lengths

Answers

Answer:

figure of merit is a quantity used to characterize the performance of a device, system or method, relative to its alternatives. In engineering, figures of merit are often defined for particular materials or devices in order to determine their relative utility for an application.

Following are the Python program to find the string-matching figure:

Python Program:

def pirate(g):#defining the method pirate that takes one variable in parameter

 if len(g)!= 10:#defining if block that check the parameter length value that is not equal to 10

   return 0   #using the return keyword that return a value that is 0

 else:#defining else block

   g= g.upper()#defining g variable that converts the parameter value into upper value

   secretString = "BLACKBEARD"#defining string variable secretString that holds string value

   c = 0#defining integer variable c that holds integer value

 for i in range(0, len(g)):#defining loop that counts and check value is in string variable

   if g[i] == secretString[i]:#defining if block that checks value in secretString variable

     c += 1; #defining c variable that increments its value

   return c;#using return keyword that return c value

print(pirate("BEACKBEARD"))#using print method that calls pirate method and prints its value

print(pirate("WHITEBEARD"))#using print method that calls pirate method and prints its value

print(pirate("BEARDBLACK"))#using print method that calls pirate method and prints its value

print(pirate("CALICOJACK"))#using print method that calls pirate method and prints its value

Output:

Please find the attached file.

Program Explanation:

Defining the method "pirate" that takes one variable "g" in parameter.Inside the method an if block that checks the parameter length value that is not equal to 10, and uses the return keyword that returns a value that is 0In the else block, define the "g" variable that converts the parameter value into the upper value, and use a string variable "secretString" that holds the string value. In the next step, define an integer variable "c" that holds an integer value, and define a loop that counts and checks the value in a string variable.Inside this, define if block that checks the value in the "secretString" variable, increments the "c" value, and returns the "c" value.Outside the method, a print method that calls the "pirate" method prints its value.

Find out more about the string-matching here:

brainly.com/question/16717135

public class Dog
{
/* code not shown */
}
public class Dachshund extends Dog
{
/* code not shown */
}
Assuming that each class has a default constructor, which of the following are valid
declarations?
I. Dog sadie = new Dachshund();
II. Dachshund aldo = new Dachshund();
III. Dachshund doug = new Dog();

Answers

Answer:

dog=1/3=1/4

Explanation:

What should the expression include for validation when allowing for an empty field? a null value a true value a false value an error value

Answers

Answer:

a null value

Explanation:

EDGE 2021

(var count2 = 0; count2 < 3; count2++)

Answers

Answer:

3 times

Explanation:

Given

The above loop

Required [Missing from the question]

Times the loop is executed

From the question, we have:

count2 = 0 ----- Start

count2 < 3 ----- End. This means (2) because 2 < 3

coun2++ ----- Increment of 1

This means that count2 will be incremented by 1 from 0 to 2.

So, the values of count2 at each loop is:

count2 = 0, 1, 2

Hence, the loop is executed 3 times

java program question- when I type letter then the txt file1 can read to txt file2 and the output file2 answer. For example, btw in file1 and By the way in txt file2. When I type btw use dialog box and output will show By the way in the console but words come from txt file2.

Answers

Don’t use that link!! They always comment under my stuff and other people have told me that’s just to get your information and location and stuff like that! Be safe and have a nice day

the largest network in tje world is​

Answers

the largest network in the world is the internet.

Answer:

it should be the internet


Write the Flowchart to find Even number between 1 to 50

Answers

Answer:

See attachment for flowchart

Explanation:

Required

Flowchart to fine even from 1 to 50

The flowchart has been attached.

The rough algorithm (explanation) of the flowchart is as follows.

1. Start

2. Initialize num to 1

3. Check if num is less than or equal to 50

  3.1 If yes

      3.1.1 Check if num is even

      3.1.1.1 If yes

         3.1.1.2 Print num

  3.1.3 Increase num by 1

 3.2 If num is greater than 50

    3.2.1 Stop

4. Goto 3

Using the supplied file (lab10.json), write a program that prints each personâs name, along with their friendsâ LAST names. For example, the first line should look like this:Daisy Ingram is friends with Chase, Horton, Rollins.Hint: This particular JSON file starts with a square bracket [. That means that when you load it using the JSON library, it will be a list, rather than a dict.

Answers

How How How How How How How How

Kenneth bought a new phone and added two of his friends' numbers to his phonebook. However, he forgot to transfer the phonebook from his previous phone beforehand. Help Kenneth keep the most up-to-date phone numbers for all his friends on his new device. That is, if there is a number saved on both old and new devices for the same friend, you should keep the number saved on the new phone; or if there is only one phone number for a friend, you should keep it, regardless of which device contains it.

Answers

Answer:

The program in Python is as follows:

phonedirs = {'Maegan': 1 , 'McCulloch': 2, 'Cindy': 3}

for i in range(2):

   name = input("Name: ")

   phonenum = int(input("Phone: "))

   phonedirs [name] = phonenum

   

print(phonedirs)

Explanation:

Given

The instruction in the question is incomplete.

See attachment for complete question

Required

Write a code that carries out the 4 instructions in the attachment

See answer section for solution.

The explanation is as follows:

(1) This initializes the phone book

phonedirs = {'Maegan': 1 , 'McCulloch': 2, 'Cindy': 3}

The following is repeated for the two friends

for i in range(2):

(2) This gets the name of each friend

   name = input("Name: ")

(2) This gets the phone number of each friend

   phonenum = int(input("Phone: "))

(3) This updates the phone book with the inputs from the user

   phonedirs[name] = phonenum

(4) This displays the updated phone book    

print(phonedirs)

One of your start-ups uses error-correcting codes, which can recover the original message as long as at least 1000 packets are received (not erased). Each packet gets erased independently with probability 0.8. How many packets should you send such that you can recover the message with probability at least 99%

Answers

Answer:

Number of packets ≈ 5339

Explanation:

let

X = no of packets that is not erased.

P ( each packet getting erased ) = 0.8

P ( each packet not getting erased ) = 0.2

P ( X ≥ 1000 ) = 0.99

E(x) = n * 0.2

var ( x ) = n * 0.2 * 0.8

∴ Z = X - ( n * 0.2 ) / [tex]\sqrt{n*0.2*0.8}[/tex]   ~ N ( 0.1 )

attached below is the remaining part of the solution

note : For the value of n take the positive number

Write a program asks the user for an integer N and then adds up the first N odd integers. For example, if the user asks the sum of the first 10 odd integers, the program computes: Use a loop for this. Use instructions and pseudo instructions up to chapter 24. Use exception handler services for input and output. How many odd numbers: 10 The sum: 100 If the user enters a negative integer or non-integer, just print a zero. Start your source file with comments that describe it:

Answers

Answer:

The program in Python is as follows:

while True:

   try:

       num = input("Number of odds: ")

       num = int(num)

       break

   except ValueError:

       print("Invalid integer! ...")

sum = 0

odd = 1

if num > 0:

   for i in range(num):

       sum+=odd

       odd+=2

print("Total:",sum)

Explanation:

This is repeated until a valid integer is inputted

while True:

This uses exception

   try:

This gets the number of odd numbers

       num = input("Number of odds: ")

This converts the input to integer

       num = int(num)

       break

If input is invalid, this catches the exception

   except ValueError:

       print("Invalid integer! ...")

This initializes sum to 0

sum = 0

This initializes odd to 1

odd = 1

If input is positive

if num > 0:

This add the first num odd numbers

   for i in range(num):

       sum+=odd

       odd+=2

This prints the total

print("Total:",sum)

What is a common use for append queries?
combining two databases together
mailing payment information to employees
archiving data from live tables to archive tables
sending customers receipts that show their orders

Answers

Answer:

You use an append query when you need to add new records to an existing table by using data from other sources. If you need to change data in an existing set of records, such as updating the value of a field, you can use an update query.

Answer:

The answer is C)archiving data from live tables to archive tables

Explanation:

edg 2021

What is the main difference between sequential and parallel computing?

Answers

Answer:

In sequential composition, different program components execute in sequence on all processors. In parallel composition, different program components execute concurrently on different processors. In concurrent composition, different program components execute concurrently on the same processors.

The differences is that in sequential, a lot of program parts exist that help execute in stages on all given processors. While in parallel a lot of program parts execute concurrently on more than one processors.

What is the difference between parallel and sequential?

Parallel computing is one where a given processes that is running do not wait for the former process to be done before it runs.

While Sequential is one where the process are said to be executed only by doing  one at a time.

Therefore, the differences is that in sequential, a lot of program parts exist that help execute in stages on all given processors. While in parallel a lot of program parts execute concurrently on more than one processors.

Learn more about processors from

https://brainly.com/question/614196

Why might you want to consider organizational scope in setting up a network?

A) to determine the physical layout of network components

b) to determine the
communication medium that transports the data

C) to determine who gets to access certain parts of the network

D) to determine the scale and reach of the network

Answers

Answer:

D) to determine the scale and reach of network

Explanation:

What is the purpose of the Zoom dialog box? to put the selected range in ascending order in a query to put the selected range in descending order in a query to increase the view size of the selected range in a query to decrease the view size of the selected range in a query

Answers

Answer: To increase the view size of the selected range in a query.

Explanation:

The purpose of the Zoom dialog box is to increase the view size of the selected range in a query.

What is dialog box?

A dialog box is a window which generally open on clicking an option.

Zoom dialog box can be opened by right clicking on the text box and select Zoom, or press Shift+F2. In order to format by using the Mini toolbar, first choose the text and then click an option on the toolbar.

Zoom dialog box is used to increase the view size of the selected range in a query.

Learn more about Zoom dialog box.

https://brainly.com/question/13042438

#SPJ2

Write a program, TwoDimentionalGrid. Ask the user to enter the size of the 2 dimensional array. Here we are not doing any input validation. We are assuming, user is going to enter a number greater than 1. Create a 2D array with the same row and column number. Now print the array as a number grid starting at 1. Example: At place row number 3 and column number 2, number would be 6 (3*2). Any number would be the product of it's row number and column number. Hint: Use setw 5. Expected Output: Here I am attaching 2 expected output. Make sure your code is running for both input.

Answers

Answer:

The program in Java is as follows:

import java.util.*;

public class Main{

public static void main(String[] args) {

 Scanner input = new Scanner(System.in);

 System.out.print("Array size: ");

 int n = input.nextInt();

 int[][] myarray = new int[n][n];

 for(int i =0;i<n;i++){

     for(int j =0;j<n;j++){

         myarray[i][j] = i * j;      }  }

 for(int i =0;i<n;i++){

     for(int j =0;j<n;j++){

         System.out.print(myarray[i][j]+" ");      }

     System.out.println();  }

}}

Explanation:

This prompts the user for the array size

 System.out.print("Array size: ");

This gets input for the array size

 int n = input.nextInt();

This declares the array

 int[][] myarray = new int[n][n];

This iterates through the rows

 for(int i =0;i<n;i++){

This iterates through the columns

     for(int j =0;j<n;j++){

This populates the array by multiplying the row and column

         myarray[i][j] = i * j;      }  }

This iterates through the rows

 for(int i =0;i<n;i++){

This iterates through the columns

     for(int j =0;j<n;j++){

This prints each array element

        System.out.print(myarray[i][j]+" ");      }

This prints a new line at the end of each row

     System.out.println();  }

}

What does collate means?

Answers

Collate means to compare something or someone
1. collect and combine (texts, information, or sets of figures) in proper order

*came from the dictionary*

Which Word 2016 views are located on the Ribbon and the status bar? Choose three answers.

Answers

Answer:

I. Print layout.

II. Read mode.

III. Web layout.

Explanation:

Microsoft Word refers to a word processing software application or program developed by Microsoft Inc. to enable its users to type, format and save text-based documents.

In Microsoft Word, the users are availed with the ability to view the word document in the following modes;

a. Print layout.

b. Web layout.

c. Read mode (Full screen reading).

d. Outline.

e. Draft.

For Microsoft Word 2016, the views that are located on the Ribbon and the status bar include the following;

I. Print layout: this is the default view for Microsoft Word when a compatible document is opened.

II. Read mode: this presents the document in an e-book like manner.

III. Web layout: it displays the document like a web page.

What are the individual presentation objects that are found in the PowerPoint program and used to display content to an audience?

files
slides
cells
charts

Answers

Answer:

The answer is slides

Explanation:

If the pictures are not the same size when they are selected from a file,

PowerPoint will use AutoCorrect so they are the same size.
the picture will be overcorrected.
these pictures will remain the size as in the file.
the layout should be fit to the slide.

Answers

Answer:

The correct answer is C) the pictures will remain the size as in the file

Explanation:

Microsoft Office PowerPoint is a multi-media presentation tool. It supports, videos, pictures, and hyperlinks.

When a picture is inserted by selection from a file, PowerPoint does not automatically resize. The editor or user will need to manually adjust the size(s) of the picture(s) to fit the dimensions they require.

Cheers

 

What are the disadvantages of using a series circuit in a lighting system?

Answers

Answer:

Throughout the following segment, the disadvantages of the given topic are summarized.

Explanation:

It's indeed impossible to monitor each unit, but the entire series can be switched open or closed.Unless the series-connected components vary in any way, they include varying voltages through themselves which could create difficulty when you both need a certain voltage.Working with such positive and negative sequence loads on sequence is extremely challenging.


In which views can a user add comments to a presentation? Check all that apply.
Outline view
Normal view
Protected view
Slide Sorter view
Notes Page view

Answers

Note that the view that a user can add comments to in a presentation ar:

Normal View;(Option B) and

Notes Page View. (Option E).

How are the above views defined?


Microsoft PowerPoint affords users three possible approaches for adding comments to their presentations:  Normal view, Notes Page veiw, and Slide Show view via pointer annotations.

In Normal view, users can create straightforward slide-specific feedback by selecting a slide and clicking the "New Comment" buton in the Comments section.

Meanwhile, Notes Page view enables users to enter more detailed feedback by adding notes specifically for each slide's notes section.

Learn more about presentations:
https://brainly.com/question/649397
#SPJ1

Answer: outline & normal view

Explanation:

find each of the following products using distributive property a) 735 × 16​

Answers

Answer:

[tex]735 * 16 = 11760[/tex]

Explanation:

Given

[tex]735 * 16[/tex]

Required

The product using distributive property

Express 16 as 10 + 6

[tex]735 * 16 = 735 * (10 + 6)[/tex]

Distributive property states that:

[tex]a * (b + c) = a * b + a * c[/tex]

So, the expression becomes

[tex]735 * 16 = 735 * 10 + 735 *6[/tex]

Evaluate each product

[tex]735 * 16 = 7350 + 4410[/tex]

[tex]735 * 16 = 11760[/tex]

a predecessor of a work processor is​

Answers

Answer: Printing of documents was initially accomplished using IBM Selectric typewriters modified for ASCII-character input. These were later replaced by application-specific daisy wheel printers, first developed by Diablo, which became a Xerox company, and later by Qume.

Explanation:

Draw a chart showing the crossing between red and white flowered pea plants till F2 generation. Find out the genotypic and phenotypic ratio of F2 generation. When the mating of black and white rats takes place, all the offspring produced in first generation are black. Why there are no white rats?

Answers

Answer:

part 1

F1 cross -

RR * rr

Rr, Rr, Rr, Rr

F2 Cross

Rr * Rr

RR, Rr, Rr, rr

Part 2

Black is dominant over white

Explanation:

Let the allele for red color trait be R and white color trait be r

Red is dominant over white

Genotype of true breeding parents

Red - RR

white - rr

F1 cross -

RR * rr

Rr, Rr, Rr, Rr

All the offspring are red and of genotype Rr

F2 Cross

Rr * Rr

RR, Rr, Rr, rr

RR: Rr: rr = 1:2:1

Phenotype ration

red (RR, Rr) : white (rr)

3:1

part 2

Black is dominant over white

hence, in first generation cross all mice become white

what are examples of widgets

Answers

some examples of widgets are event countdowns, website visitors counter, clocks, daily weather report, etc.

8. Write a sentence that gives the name of the first web page you visited and one fact
about your career you learned there. Write another sentence about how you knew the
website was trustworthy.
9. Write a sentence that gives the name of the second web page you visited and one fact
about your career you learned there. Write another sentence about how you knew the
website was trustworthy.
10.Write a sentence that gives the name of the third web page you visited and one fact
about your career you learned there. Write another sentence about how you knew the
website was trustworthy.
11.Write a sentence that explains the action required from the person reading the e-mail.
You could tell your instructor to ask you if they have questions, or to set up a time to
meet to talk about the information in the e-mail. TIP: The action required section will be
just for practice. You won't actually need to set up a time to meet.
12.Write a clear, professional closing.

Answers

Answer:

Explanation:

8. The first web page is careers  ggle  . I learn that working for ggle is fun. The site is trustworthy because it is ggle.

9. The second web page is money  usnews  the-100-best-jobs. It talks about many different jobs and they are all very good. The site is trustworthy because US News is a famous newspaper.

10. The third web page is careers organisation. I learn that there are a lot of resources online to help you find jobs. It is a non-profit so it is trustworthy.

Other Questions
What does it mean to analyze a character?to examine a character as a wholeto compare one character to another to see how they differto look at the details that make up a characterto only look at how others view the character Please help quickly!What are some things that your friends did this week? Write 5 complete Spanish sentences describing what they did. Don't forget to conjugate your verbs in the preterite tense! (Use only -AR verbs) 3.Anong kilusan sa india ang itinatag noong 1970A) self- Employed Women" s AssociationB) Shahada Shramik Sangatan C) Bharat Mahila Parshad D)Women" s Indian Association 2.5+2.5+2.5+2.5-2.5+2.5/2+4.6+2.3-4+2.8-3+.2 At the clothing store, 1/8 of the clothes are shirts. Of the shirts 1/4 are green. What fraction of the clothing in the store are green shirts? Every 2 seconds, the distance the mouse travels ___by ___feet! Please help with 1 , and 2 I really dont understand this! If you are analyzing the nutrients in a food, how would you decide if the food is healthy or not? Support your claim. Please someone help me on these 4 questions. Please dont put a link. Please someone help me. PLEASE HELP DONT COMMENT IF YOU DONT HAVE THE ANSWER I WOULD REALLY A APPRECIATE IT IF YOU ANSWER I NEEED HELP!!!!!PLEASE Examine the data table for optimal ranges of environmental conditions for aquatic species. A student wants tomaximize the number of species that are able to be maintained in the freshwater aquarium in the laboratory. Theconditions of the aquarium have been adjusted to be at 6.4 pH, 18 degrees Celsius, and less than 3 mg/liter forammonia. Assess which species will thrive in these conditions and select ALL that apply as your answers. Ten less than three times a number is 25. what's the number? Quadrilateral FLAG has coordinates F(1,5), L(6,3), A(3,-1), and G(-2,1). Whichstatement is true?Quadrilateral FLAG is a rhombus because all sides are congruent.Quadrilateral FLAG is a parallelogram because opposite sides are parallel.Quadrilateral FLAG is only a quadrilateral because no sides are congruent and nosides are parallel.Quadrilateral FLAG is a trapezoid because only one pair of sides are parallel. Calculate the Volume Formulas: Prism - V=Bh Pyramids - V=1/3Bh 14. How can heritability affect a person's intelligence? 15. How can fluid intelligence change over time? what was the most challenging activity why MFT spoke to math teacher Dave I. Ding to see how he uses PowerPoint presentations to teach math drillsto his students. It's a pretty short interview because it's just so simple to use.MFT. So, Mr. Ding. I hear you've been using PowerPoint to create drill cards. Tell me more?Dave: Well, there's not much to tell, really. You just set PowerPoint onto automated presentation and it runsitself. Then you have some extra time for marking and lesson planning while students watch yourpresentation.MFT: Oh. So, what kind of presentations do you do?Dave: I like to use it for the good old multiplication tables, mostly. Sometimes I like to record myselfreading them, because I have to admit to a great fondness for my own voice. I know some language artsteachers who like to use the automated presentation for teaching students to pronounce the vowels andother phonetics. It's really great.MFT. I see... Well, uh, is there anything else you have to say about it?Dave: Uhhhh... Not really... Nothing I can think of because well uh-ya - it's just so simple that I think I'veexplained it already.Read the interview above and choose the best summary below:a. A brief overview of how to create flashcards using PowerPoint.b. A math teacher explains how he uses PowerPoint in his class.C. An English teacher explains how he uses PowerPoint in his class.d. A brief overview of how to record your own voice in a PowerPoint presentation Jeremiah paid $29.52 for a pair of boots thatwere on sale. The original price of the boots was$36.00. Enter the percentage discount for thecost of the boots Jeremiah paid $29.52 for a pair of boots thatwere on sale. The original price of the boots was$36.00. Enter the percentage discount for thecost of the boots Serotonin, like acetylcholine, is a neurotransmitter. However, if serotonin were released from the nerve cell above, it would not be able to communicate with the muscle cell. Why is this? Given a glucose standard concentration of 200 mg/dL, with an absorbance of .640. Your patient's serum has an absorbance of .252. Calculate the concentration of glucose in this patient's serum.