All of the different devices on the internet have unique addresses.

Answers

Answer 1

Answer:

Yes

Explanation:

Just like a human fingerprint, no 2 computers are the same.


Related Questions

Kamal wants to display the total number

Answers

Kamal has the option to utilize the "SUM" function in Excel to showcase the total  amount.

What is the tool about?

Below is the way to use it:

Identify the specific cell preferred by Kamal to exhibit the overall count.Input the "=SUM(" equation in the formula bar, and input the set of cells that Kamal desires to calculate.Suppose Kamal intends to determine the sum of the values between cells A1 and A10; in that case, he can enter "=SUM(A1:A10)".Upon hitting the enter key, the designated cell, which Kamal entered the formula, will exhibit the cumulative value of the chosen cell range.

Lastly, Kamal has the option to utilize the "AutoSum" feature located on the Home tab to swiftly calculate the total of a selected group of cells. This is the way to utilize it:

Learn more about Excel from

https://brainly.com/question/24749457

#SPJ1

Which of these is not a valid form
layout in Microsoft Access?​

Answers

There’s nothing provided for me to chose from

Build an NFA that accepts strings over the digits 0-9 which do not contain 777 anywhere in the string.

Answers

To construct NFA that will accept strings over the digits 0-9 which do not contain the sequence "777" anywhere in the string we need the specific implementation of the NFA which will depend on the notation or tool used to represent NFAs, such as state diagrams or transition tables.

To build an NFA (Non-Deterministic Finite Automaton) that accepts strings over the digits 0-9 without containing the sequence "777" anywhere in the string, we can follow these steps:

Start by creating the initial state of the NFA.

Add transitions from the initial state to a set of states labeled with each digit from 0 to 9. These transitions represent the possibility of encountering any digit at the beginning of the string.

From each digit state, add transitions to the corresponding digit state for the next character in the string. This allows the NFA to read and accept any digit in the string.

Add transitions from each digit state to a separate state labeled "7" when encountering the digit 7. These transitions represent the possibility of encountering the first digit of the sequence "777".

From the "7" state, add transitions to another state labeled "77" when encountering another digit 7. This accounts for the second digit of the sequence "777".

From the "77" state, add transitions to a final state when encountering a third digit 7. This represents the completion of the sequence "777". The final state signifies that the string should not be accepted.

Finally, add transitions from all states to themselves for any other digit (0-6, 8, 9). This allows the NFA to continue reading the string without any constraints.

Ensure that the final state is non-accepting to reject strings that contain the sequence "777" anywhere in the string.

In conclusion, the constructed NFA will accept strings over the digits 0-9 that do not contain the sequence "777" anywhere in the string. The specific implementation of the NFA will depend on the notation or tool used to represent NFAs, such as state diagrams or transition tables.

For more such questions on NFA, click on:

https://brainly.com/question/30846815

#SPJ8

You sometimes hear, “You can’t add apples and oranges.” Show that we can and do add apples and oranges in the national accounts. Explain how.

Answers

The reason for the statement of You can’t add apples and oranges.” Show that we can and do add apples and oranges in the national accounts is that the expression "apples and oranges can't be added" is used to highlight the differences between two objects that economists believe are incomparable.

What is the expression about?

Due to the lack of an acceptable unit of measurement, it is particularly challenging to measure the national income in practice. Three approaches are used in economics to measure national income:

The Product Method, also known as the Value Output Method.The Income Method.The Expenditure Method.

Which are not enough. The national income or GDP is immaterial. Therefore, Real GDP includes thousands of other items and services that cannot be directly added in economics, in addition to apples and oranges, computers, as well as power, transportation, and also education.

Learn more about national accounts from

https://brainly.com/question/1098565
#SPJ1

Can someone tell me how to get rid of the the orange with blue and orange on the status bar

Please and thank you

Picture above

Can someone tell me how to get rid of the the orange with blue and orange on the status barPlease and

Answers

Answer:

Explanation:

i'm not sure how tho

Hover over it then you will see an X click that and it should go away, if that doesn’t work click with both sides of the of the mouse/ touch thingy and it should say close tab!

how do I explain the technique and solution I used o create the algorithm and algorithm as a flowchart of the area of a rectangle please help me the question itself says to include the explanation but how?

Answers

Answer:

To explain the technique and solution used to create the algorithm and flowchart for the area of a rectangle, you can follow these steps:

Begin by stating the problem or task that the algorithm is intended to solve, which in this case is calculating the area of a rectangle.

Explain the inputs required for the algorithm, which are the length and width of the rectangle.

Discuss the process used to calculate the area of the rectangle, which is multiplying the length by the width.

Explain the solution to the problem in a step-by-step manner, which involves taking the user input for the length and width, multiplying them, and then outputting the result as the area of the rectangle.

Finally, create a flowchart that visually represents the steps of the algorithm. Use symbols and shapes to represent each step, and connect them in a logical sequence to illustrate how the algorithm works.

To include the explanation, you can either provide a written explanation alongside the flowchart or incorporate the explanation into the flowchart itself by adding annotations or labels to each symbol or shape. This will help readers understand how the algorithm works and how it solves the problem of calculating the area of a rectangle.

Explanation:

Current Tetra Shillings user accounts are management from the company's on-premises Active Directory. Tetra Shillings employees sign-in into the company network using their Active Directory username and password.

Answers

Employees log into the corporate network using their Active Directory login credentials, which are maintained by Tetra Shillings' on-premises Active Directory.

Which collection of Azure Active Directory features allows businesses to secure and manage any external user, including clients and partners?

Customers, partners, and other external users can all be secured and managed by enterprises using a set of tools called external identities. External Identities expands on B2B collaboration by giving you new options to communicate and collaborate with users outside of your company.

What are the three activities that Azure Active Directory Azure AD identity protection can be used for?

Three crucial duties are made possible for businesses by identity protection: Automate the identification and elimination of threats based on identity. Use the portal's data to research dangers.

To know more about network visit:-

https://brainly.com/question/14276789

#SPJ1

Which tab will you use to format data in cells?

Answers

Answer:

Right Click and select Format Cells (CTRL + 1)

Explanation:

To format cells in Excel, you select the cell(s) you want to format, right click, and in the dialogue box that appears select 'Format Cells'.

Answer:

b

Explanation:

trust me

In Python:

“a” will move the turtle backward 5 pixels

“d” will move the turtle forward 5 pixels

“r” will rotate the turtle left 2 degrees

“f” will rotate the turtle left 5 degrees

“u” will lift the turtle’s pen

“i” will lower the turtle’s pen

Answers

Answer:

The instructions you provided describe how to move and rotate a turtle in the turtle graphics module of Python. The turtle graphics module is a popular way to introduce beginners to programming in Python. It allows users to draw simple graphics by controlling a turtle with commands.

To move the turtle backward 5 pixels, you would use the following code:

import turtle

# Move the turtle backward 5 pixels

turtle.backward(5)

Similarly, to move the turtle forward 5 pixels, you would use the following code:

import turtle

# Move the turtle forward 5 pixels

turtle.forward(5)

To rotate the turtle left 2 degrees, you would use the following code:

import turtle

# Rotate the turtle left 2 degrees

turtle.left(2)

To rotate the turtle left 5 degrees, you would use the following code:

import turtle

# Rotate the turtle left 5 degrees

turtle.left(5)

To lift the turtle's pen, you would use the following code:

import turtle

# Lift the turtle's pen

turtle.penup()

To lower the turtle's pen, you would use the following code:

import turtle

# Lower the turtle's pen

turtle.pendown()

Explanation:

Keep in mind that these instructions assume that you have already created a turtle object and that the turtle is currently positioned at the starting point of your drawing. You can learn more about the turtle graphics module and how to use it in the Python documentation.

I just need question 2 answered. Someone please help I’m on a test!

I just need question 2 answered. Someone please help Im on a test!

Answers

Answer:

Principal photography

Explanation:

hi i need milk can you give me some please. good job

Answers

Answer:

Sure, might take me a few years

Explanation:

I have to get the top quality melk

which app is best for coding in pc​

Answers

My  choice of the best app for coding on a PC are

Visual Studio CodeJetBrains IntelliJ IDEA

What is the application?

Choosing the best program for coding on a computer depends on what you like and the computer language you're working with. These are some computer programs that many people use for writing code on a PC: code editors and integrated development environments (IDEs).

Visual Studio Code is a type of computer software that lets people edit code. It was made by Microsoft and many people like to use it because it can do many things. It can work with many different ways of writing code and you can change it a lot to suit your needs.

Read more about application here:

https://brainly.com/question/24264599

#SPJ1

Tim Berners-Lee cultivated a way to interconnect and self-index data. He made a major contribution to the development of the Internet by creating _____.
A. graphic data
B. emoticons
C. the hyperlink
D. digital data

Answers

Answer: D. Digital data

17
Select the correct answer.
What is the key length of each key in triple DES?
OA 168 bits
ОВ.
56 bits
128 bits
OD
256 bits
OE.
192 bits

Answers

Answer:

OB

Explanation:

bc i said lol

bc i said lol to be 128 bits

What is the HIE? What is its purpose?

Answers

Answer:

Electronic health information exchange (HIE) allows doctors, nurses, pharmacists, other health care providers and patients to appropriately access and securely share a patient's vital medical information electronically—improving the speed, quality, safety and cost of patient care.

Explanation:

Answer:

HIE is a system that helps tansport patients when it becomes overwhelmed.

Explanation:

At the point when medical services suppliers approach total and exact data, patients get better clinical consideration. Electronic wellbeing records (EHRs) can improve the capacity to analyze illnesses and lessen risks. Doing this helps patients get timely care. More severe cases can be treated quickly.

What is the purpose of extent in lines in engineering drawing

What is the purpose of extent in lines in engineering drawing

Answers

Answer:

Extension lines are used to indicate the extension of a surface or point to a location preferably outside the part outline.

Explanation:

0.6 tenths of an hour would be how many minutes?

Answers

Answer: 3.6 minutes

Explanation:

Write a short note on the topic ,' My Brother'.​

Answers

Answer:

I have an older brother whose name is Michael.

He is two years older than me and studies in Class 3.

My brother has a round face with black hair and brown eyes.

He is very caring, loving and outgoing by nature.

He takes care of me, whenever my parents are not at home.

He shares his toys with me, whenever we are playing indoors.

My brother is a well-mannered boy who is loved by everyone.

He is very good in his studies and helps me in my studies too.

He is very sincere and intelligent and never misses his school.

I love my brother and always pray to God to help us maintain a strong bond forever.

Explanation:

Answer:

Explanation:

To begin with, a brother is an important member of the family because he loves his siblings like a father, cares like a mother and sometimes annoys his sister(s). Sibling relationships usually tend to be emotionally powerful. Therefore, building a strong brother-sister relationship is important not only in childhood, but for the entire lifetime. Siblings learn social skills from each other like negotiating power and managing conflicts among themselves.

user intent refers to what the user was trying to accomplish by issuing the query

Answers

Answer:

: User intent is a major factor in search engine optimisation and conversation optimisation. Most of them talk about customer intent ,however is focused on SEO not CRO

Explanation:

Can you think of ways to use social engineering in order to make people less likely to do things that would spread viruses

Answers

Ways to use social engineering to make people less likely to do things that would spread viruses are:

1. Education and Awareness Campaigns

2. Social Norms and Peer Influence

3. Authority Figures and Trusted Sources

4. Gamification and Incentives

5. Positive Reinforcement and Social Recognition

Ways to use social engineering in order to make people less likely to do things that would spread viruses

Below are the ways to use social engineering to make people less likely to do things that would spread viruses:

1. Education and Awareness Campaigns: Develop targeted educational campaigns that use persuasive messaging to inform people about the risks associated with virus transmission and the importance of preventive measures.

2. Social Norms and Peer Influence: Leverage the power of social norms and peer influence to encourage positive behaviors.

3. Authority Figures and Trusted Sources: Utilize authoritative figures, experts, and trusted sources to convey messages about virus prevention.

4. Gamification and Incentives: Incorporate gamification elements and incentives to motivate individuals to adopt preventive behaviors.

5. Positive Reinforcement and Social Recognition: Implement systems that provide positive reinforcement and social recognition for individuals who consistently practice virus prevention measures.

Learn more about social engineering on:

https://brainly.com/question/26072214

#SPJ1

How could I change the hexadecimal number C7 to decimal

Answers

Answer:

199

Explanation:

C7

C is 12 in hexadecimal.

Convert hexadecimal to decimal use base 16.

(12x16^1) + (7x16^0) = 192+7=199

Write a program with a loop that repeatedly reads a string as input, where the string is either "duck" or "goose". The loop terminates when "goose" is entered. After the loop, your code should print out the number of "duck" strings that were read. NOTE: When reading the input, do not display a prompt for the user. Use the input()function with no prompt string. Here is an example: bird = input()

Answers

We use an indefinite while loop to keep the user entering a string. In the loop, we use if-else structure to check the string. If it is "duck", we increment the count by 1. If it is "goose", we stop the loop using a break.

Comments are used to explain each line of the code.

You may see the output in the attachment.

#variable to count the number of duck string entered

count = 0

#create an indefinite while loop. In the loop,

# if the bird is duck, increment the count by 1

# if the bird is goose stop the loop

while True:

   bird = input()

   

   if bird == "duck":

       count += 1

   elif bird == "goose":

       break

#print the count

print("Number of duck(s)", count)

Here is another question related to the loops:

https://brainly.com/question/13642794

Write a program with a loop that repeatedly reads a string as input, where the string is either "duck"

David Karp is credited with the invention of which microblogging service?

Answers

Answer:

On February 19, 2007, the first version of the Tumblr microblogging service was founded by David Karp and Marco Arment. They launched a more complete version in April 2007.

Explanation:

More than 100 million blogs will be online in 2007. The count continues to double every 5.5 months. About half of the blogs created are ever maintained after being created. And fewer than 15% of blogs are updated at least once a week. (Technorati)

….Yeah, it’s still a blog. But it’s a new philosophy. It’s free of noise, requirements, and commitments. And it’s finally here.

let me know if that is good enough

Paul entered the following formula into a cell but it keeps popping up with an error. The formula he entered is: =IF(B9>500,IF(F9="Yes",B9*B20,B9*B21)"Empty"). Which of the following is the corrected version?

Answers

Excel formulas are expressions used to perform computation.

The corrected version of the formula is =IF(B9>500,IF(F9="Yes",B9*B20,B9*B21),"Empty")

How to determine the correct formula

The formula that returns an error is given as:

=IF(B9>500,IF(F9="Yes",B9*B20,B9*B21)"Empty")

The format of an IF function is:

=IF(condition, "value if true", "value if false")

In the given formula, we have:

Condition: B9 > 500

Value if true: IF(F9="Yes",B9*B20,B9*B21)

Value if false: Empty

The above means that, there is a missing comma between the values if true and false

Hence, the corrected version of the formula is =IF(B9>500,IF(F9="Yes",B9*B20,B9*B21),"Empty")

Read more about Excel formulas at:

https://brainly.com/question/14820723

3.6 Code Practice on Edhesive

** Python Language **

This is an algorithm code problem but we didn't learn anything in this lesson. Please keep it simple and not super complicated because I and many people who need to know this are new coders to Python. Thanks!

3.6 Code Practice on Edhesive** Python Language **This is an algorithm code problem but we didn't learn

Answers

I've included my code in the picture below. Best of luck.

3.6 Code Practice on Edhesive** Python Language **This is an algorithm code problem but we didn't learn

What is number of maximum number of virtual processors for each of the
following Hyper-V client?
Answer by a number such as 16.
1. Windows 7
2. Windows 8
3. Open SUSE 12.1

Answers

The number of maximum number of virtual processors for each of the

following Hyper-V client are:

Windows 7 - 4 virtual processorsWindows 8 - 32 virtual processorsOpen SUSE 12.1 - 64 virtual processors

What is the virtual processors?

Hyper-V is a hypervisor-located virtualization platform that allows diversified virtual machines to gossip a single physical apparatus. One of the key advantages of virtualization is the skill to allocate virtual processors for each virtual system, which allows the computer software for basic operation running inside the virtual tool.

The maximum number of in essence processors that can be filling a place a virtual machine depends on various factors, containing the capabilities of the physical main part of computer and the version of the computer software for basic operation running inside the virtual machine.

Learn more about virtual processors from

https://brainly.com/question/30628655

#SPJ1

What is the stdio.h header file ?​

Answers

Sorry I’m confused wdym?

working with the tkinter(python) library



make the window you create always appear on top of other windows. You can do this with lift() or root.attributes('-topmost', ...), but this does not apply to full-screen windows. What can i do?

Answers

To make a tkinter window always appear on top of other windows, including full-screen windows, you must use the wm_attributes method with the topmost attribute set to True.

How can I make a tkinter window always appear on top of other windows?

By using the wm_attributes method in tkinter and setting the topmost attribute to True, you can ensure that your tkinter window stays on top of other windows, even when they are in full-screen mode.

This attribute allows you to maintain the window's visibility and prominence regardless of the current state of other windows on your screen.

Read more about python

brainly.com/question/26497128

#SPJ1

Enter a formula using the COUNTIF function that counts the number of proposed commercial projects, using proposedprojects[project type] as the range and cell I2 as the criteria

Answers

The formula using the COUNTIF function that counts the number of proposed commercial projects is =COUNTIF($D$2:$D$13,$I$2).

What is the COUNTIF function?

The COUNTIF function counts the number of cells in a range that satisfy one or more criteria. The COUNTIF function is a premade function in Excel, which counts cells as specified.

It is typed =COUNTIF

Excel's COUNTIF function is a popular and frequently used one. It is able to count cells that have dates, numbers, and text in them.

Therefore, the formula is  =COUNTIF($D$2:$D$13,$I$2).

To learn more about COUNTIF function, refer to the link:

https://brainly.com/question/29476384

#SPJ1

The question is incomplete. The complete question is given below:

For A. I put =COUNTIF(D2:D13, I2) *It marked me wrong

For C. I put =SUMIF(D2:D13, I2, F2:F13) *It marked me wrong

For E. I put =AVERAGEIF(D2:D13, I2, F2:F13) *It marked me wrong

Dean wants to summarize the number of projects proposed by the project type and calculate their funding amounts and average funding amounts. Calculate this information for Dean as follows:

a. In cell J2, enter a formula using the COUNTIF function that counts the number of proposed Commercial projects, using Proposed Projects[Project Type] as the range and cell 12 as the criteria.

Enter a formula using the COUNTIF function that counts the number of proposed commercial projects, using

A user can easily moved to the end of document by pressing what key combination?
Ctrl+Down
Ctrl+end
Ctrl+E
Alr+end

Answers

Which element is located on the top left of the Word screen? Quick Access toolbar

Which key combination will move the user to the beginning of the document? Ctrl+Home

A user can easily move to the end of a document by pressing the _____ key combination. Ctrl+End

Other Questions
Workers gave the park bench a fresh coat of paint removing all of the gum. Identify the verbs What mass of ammonium chloride, NH4Cl, (Ka = 5.6 x 10^-10) must be added to exactly 500mL of 0.10M NH3 solution to give a solution with a pH of 9.00? In an argumentative essay, an effective claim will take a clear stance on a position. True False simplify this fraction is the only pathogenthat can grow without oxygen.a. E-Colib. Salmonellosisc. Botulismd. Shigellosis Why is it important to invest for your retirement? please explain :p For the given functions f and g, find the indicated composition. f(x)=4x+7,g(x)=3x+9(gf)(x)12x+4312x1212x+3012x+30 5. A ball is thrown into the air from the edge of a 48-foot-high cliff so that it eventually landson the ground. The graph below shows the height, y, of the ball from the ground after xsecondsFor which interval is the ball's height always decreasing?A. 0B. 0C. 2.5 D.) 2 So i have to write a two page narrative essay on an "event that formed my identity"..my question is...what does that even mean? Sanjay is standing on level ground 70 meters away from a flag pole. The angle of elevation to the flagpole is 38 degrees. The height of Sanjay's eyes are 167cm from the ground. How tall is the flag pole in meters? What is the area of the region between the graph of y=5tan1(x) and the x-axis over the interval [2,6]?Select the correct answer below:[30tan1(6)10tan1(2)+10ln3710ln5] units2[30tan1(6)10tan1(2)10ln37+10ln5] units2[30tan1(6)10tan1(2)+52ln3752ln5] units2[30tan1(6)10tan1(2)52ln37+52ln5] units2 the____associated with syphilis are small, painless, firm, round lesions that usually last three to six weeks and heal without treatment. PLEASE HELP ME I REALLY NEED HELPThis passage is taken from a book that chronicles a man's exploration of Alaska.(1)It was now near dark, and I made haste to make up my flimsy little tent. The ground was desperately rocky. I made out, however, to level down a strip large enough to lie on, and by means of slim alder stems bent over it and tied together soon had a home. While thus busily engaged I was startled by a thundering roar across the lake. Running to the top of the moraine, I discovered that the tremendous noise was only the outcry of a newborn berg about fifty or sixty feet in diameter, rocking and wallowing in the waves it had raised as if enjoying its freedom after its long grinding work as part of the glacier. After this fine last lesson I managed to make a small fire out of wet twigs, got a cup of tea, stripped off my dripping clothing, wrapped myself in a blanket and lay brooding on the gains of the day and plans for the morrow, glad, rich, and almost comfortable.(2)It was raining hard when I awoke, but I made up my mind to disregard the weather, put on my dripping clothing, glad to know it was fresh and clean; ate biscuits and a piece of dried salmon without attempting to make a tea fire; filled a bag with hardtack, slung it over my shoulder, and with my indispensable ice-axe plunged once more into the dripping jungle. I found my bridge holding bravely in place against the swollen torrent, crossed it and beat my way around pools and logs and through two hours of tangle back to the moraine on the north side of the outlet,a wet, weary battle but not without enjoyment. The smell of the washed ground and vegetation made every breath a pleasure, and I found Calypso borealis1, the first I had seen on this side of the continent, one of my darlings, worth any amount of hardship; and I saw one of my Douglas squirrels on the margin of the grassy pool. The drip of the rain on the various leaves was pleasant to hear. More especially marked were the flat low-toned bumps and splashes of large drops from the trees on the broad horizontal leaves of Echinopanax horridum2, like the drumming of thundershower drops on veratrum and palm leaves, while the mosses were indescribably beautiful, so fresh, so bright, so cheerily green, and all so low and calm and silent, however heavy and wild the wind and the rain blowing and pouring above them. Surely never a particle of dust has touched leaf or crown of all these blessed mosses; and how bright were the red rims of the cladonia cups beside them, and the fruit of the dwarf cornel! And the wet berries, Nature's precious jewelry, how beautiful they were!huckleberries with pale bloom and a crystal drop on each; red and yellow salmon-berries, with clusters of smaller drops; and the glittering, berry-like raindrops adorning the interlacing arches of bent grasses and sedges around the edges of the pools, every drop a mirror with all the landscape in it. A' that and a' that and twice as muckle's a' that in this glorious Alaska day3, recalling, however different, George Herbert's "Sweet day, so cool, so calm, so bright.4"(3)In the gardens and forests of this wonderful moraine one might spend a whole joyful life.1 A rare orchid found in northern, mountainous areas.2Also called Devil's Club, Echinopanax is a large-leafed shrub that grows in moist, dense forests mostly in the Pacific Northwest of the United States.3 Reference to Scottish poet, Robert Burns's poem that rejoices over the wide variety of positive traits in his wife.4 Reference to a George Herbert poem that celebrates the glory found in nature and mourns the fact that it all must die.What is the effect of the author's use of "my" in the excerpt, " and I saw one of my Douglas squirrels on the margin of the grassy pool "?A. It convinces the reader that he owns the land he is exploring.B. It supports the notion that nature should be shared by all.C. It shows that he rejects the notion that nature can be owned.D. It reveals his desire to keep others away from his paradise.E. It demonstrates his personal connection with nature. How was the American Dream symbolized in the California Gold Rush? Kate was drinking grape juice one morning at breakfast. she had been learning about solutions, so she started thinking about what the juice was made of. read the definitions and examples. then, determine whether each refers to a solution, a solvent, or a solute. 1.the substance that is dissolved [ select ] 2.the liquid in which a substance is dissolved [ select ] 3.a homogeneous mixture in which a substance is dissolved in a liquid [ select ] 4.sugar [ select ] 5.water [ select ] 6.grape juice [ select ] if the price of gasoline increases, it will encourage oil suppliers to open more gas stations or keep existing gas stations open longer hours. group of answer choices true false A CRC is constructed to generate a 4-bit FCS for an 11-bit message.The generatorpolynomial is X^4+X^3+1.a. Draw the shift register circuit that would perform this task. PLEASE HELP ME! THANK YOU how much work did the movers do horizontally pushing a 46 kg crate 10.3 across a rough floor without acceleration, if the effective coefficient of friction was 0.5 Select the nonlinear function from the list of the following: Select one:a. 4x 5y = 3b.4xy + 3 / x = 12 c.x + 3y = 2d.5x + 6y = 2 / 3