Option C, "Reprogrammed operating systems during freshman internship," most effectively features the skill of programming.
Why is option C correct?This statement not only mentions the skill of programming but also specifies the application of the skill and the level of proficiency achieved (i.e., reprogramming operating systems).
This provides more context and detail compared to option A, which is too general, and options B and D, which are less specific and don't provide as much detail about the applicant's level of proficiency.
Read more about resumes here:
https://brainly.com/question/30208587
#SPJ1
Computer science;
What is an Algorithm? B: Mention five attributes of a properly prepared Algorithm. C: The roots of a quadratic equation ax2+b×+c=0 can be gotten using the almighty formular Using a properly designed algorithm, write a pseudocode and draw a flowchart to take quadratic equation coefficients as input and calculate their roots using the almighty formular, and display result according to value of the discriminant d, d=square root b rest to power 2 minus 4ac, i.e when d=o, when's o. Note when d
Answer:
Flowchart of an algorithm (Euclid's algorithm) for calculating the greatest common divisor (g.c.d.) of two numbers a and b in locations named A and B. The algorithm proceeds by successive subtractions in two loops: IF the test B ≥ A yields "yes" or "true" (more accurately, the number b in location B is greater than or equal to the number a in location A) THEN, the algorithm specifies B ← B − A (meaning the number b − a replaces the old b). Similarly, IF A > B, THEN A ← A − B. The process terminates when (the contents of) B is 0, yielding the g.c.d. in A. (Algorithm derived from Scott 2009:13; symbols and drawing style from Tausworthe 1977).
Explanation:
Flowchart of an algorithm (Euclid's algorithm) for calculating the greatest common divisor (g.c.d.) of two numbers a and b in locations named A and B. The algorithm proceeds by successive subtractions in two loops: IF the test B ≥ A yields "yes" or "true" (more accurately, the number b in location B is greater than or equal to the number a in location A) THEN, the algorithm specifies B ← B − A (meaning the number b − a replaces the old b). Similarly, IF A > B, THEN A ← A − B. The process terminates when (the contents of) B is 0, yielding the g.c.d. in A. (Algorithm derived from Scott 2009:13; symbols and drawing style from Tausworthe 1977).
Write a SELECT statement that answers this question: What is the total quantity
purchased for each product within each category? Return these columns:
The category_name column from the category table
The product_name column from the products table
The total quantity purchased for each product with orders in the Order_Items
table
Use the WITH ROLLUP operator to include rows that give a summary for each
category name as well as a row that gives the grand total.
Use the IF and GROUPING functions to replace null values in the category_name
and product_name columns with literal values if they’re for summary rows.
Based on the complete question, the following information is provided:
SELECT product _ name, SUM ( ( item _ price - discount _ amount ) * quantity ) AS Total _ quanity _ purchased
FROM products p
JOIN order _ items ori ON p.product _ id = ori . product _ id \
GROUP BY product _ name WITH ROLLUP
The SELECT statementSELECT
if( c . category _ name is null, 'All Categories', c.category_name) Category,
if( p . product _ name is null, 'All Products', p.product_name ) Product,
SUM( ori . quantity ) as Total _ Qty _ Purchased,
SUM(( ori.item _ price - ori.discount _ amount) * ori.quantity)
AS Total _ Purchase _ Sales
FROM
products p
JOIN Category c
on p.category _ id = c.category _ id
JOIN order _ items ori
on p.product_id = ori.product_id
GROUP BY
c.category _ name ,
p.product _ name ,
WITH ROLLUP
Read more about SQL here:
https://brainly.com/question/25694408
#SPJ1
Dawn is trying to find out how much weight she can push across the room. She is really trying to find her __________. A. flexibility B. muscular endurance C. cardiovascular fitness D. muscular strength
The correct answer is d. muscular strength.
Explanation :
The maximal force a muscle can create when it contracts is referred to as muscular strength. When compared to someone with lower physical strength, someone with better muscular strength can lift heavier weights. Lifting progressively larger weights over time and eating a diet rich in protein-based foods can help a person's physical strength gradually grow.
I hope this helps. Please mark "Brainliest" if you can.
In cell G5, enter a formula without using a function that subtracts the actual dollars billed from the estimated amount to determine the remaining amount of the estimate for general administrative services
Using the appropriate excel syntax, the formula which calculates the actual amount from estimated amount is : =C10 - D10
Using the cells thus :
Actual dollar billed = C10Estimated amount = D10Using the cell values defined above ; the required excel syntax is as follows :
=C10 - D10Note : All excel formulas begin with the equal to sign.
Learn more : https://brainly.com/question/25644130
Select the correct answer.
Which section of a research paper contains all the sources that are cited in the paper?
ОА.
abstract
OB.
bibliography
OC.
review of literature
OD
analysis
thing
Reset
Next
Answer:
abstract
Explanation:
as it includes the main finding of the work, usually in research papers References cited is where that information would be.
SOMEONE PLEASE HELP
I need to draw a stickfigure riding a skateboard in python
Answer:
Sure, I can provide some Python code that uses the `turtle` module to draw a stick figure riding a skateboard. Please note that this will be a very simplistic drawing.
```
import turtle
# Set up the screen
win = turtle.Screen()
win.bgcolor("white")
# Create a turtle to draw the skateboard
skateboard = turtle.Turtle()
skateboard.color("black")
# Draw the skateboard
skateboard.penup()
skateboard.goto(-50, -30)
skateboard.pendown()
skateboard.forward(100)
skateboard.right(90)
skateboard.forward(10)
skateboard.right(90)
skateboard.forward(20)
skateboard.left(90)
skateboard.forward(20)
skateboard.left(90)
skateboard.forward(60)
skateboard.left(90)
skateboard.forward(20)
skateboard.left(90)
skateboard.forward(20)
# Create a turtle to draw the stick figure
stickfigure = turtle.Turtle()
stickfigure.color("black")
# Draw the stick figure
stickfigure.penup()
stickfigure.goto(0, -20)
stickfigure.pendown()
stickfigure.circle(20) # Head
stickfigure.right(90)
stickfigure.forward(60) # Body
stickfigure.right(180)
stickfigure.forward(30)
stickfigure.left(45)
stickfigure.forward(30) # Left arm
stickfigure.right(180)
stickfigure.forward(30)
stickfigure.left(90)
stickfigure.forward(30) # Right arm
stickfigure.right(180)
stickfigure.forward(30)
stickfigure.right(45)
stickfigure.forward(30)
stickfigure.right(30)
stickfigure.forward(30) # Left leg
stickfigure.right(180)
stickfigure.forward(30)
stickfigure.left(60)
stickfigure.forward(30) # Right leg
turtle.done()
```
This Python script first draws a rough representation of a skateboard, then a stick figure standing on it. The stick figure consists of a circular head, a straight body, two arms, and two legs. Please note that this is a very simple representation, and the proportions might not be perfect. The `turtle` module allows for much more complex and proportional drawings if you need them.
Answer:
Answer:
Sure, I can provide some Python code that uses the `turtle` module to draw a stick figure riding a skateboard. Please note that this will be a very simplistic drawing.
```
import turtle
# Set up the screen
win = turtle.Screen()
win.bgcolor("white")
# Create a turtle to draw the skateboard
skateboard = turtle.Turtle()
skateboard.color("black")
# Draw the skateboard
skateboard.penup()
skateboard.goto(-50, -30)
skateboard.pendown()
skateboard.forward(100)
skateboard.right(90)
skateboard.forward(10)
skateboard.right(90)
skateboard.forward(20)
skateboard.left(90)
skateboard.forward(20)
skateboard.left(90)
skateboard.forward(60)
skateboard.left(90)
skateboard.forward(20)
skateboard.left(90)
skateboard.forward(20)
# Create a turtle to draw the stick figure
stickfigure = turtle.Turtle()
stickfigure.color("black")
# Draw the stick figure
stickfigure.penup()
stickfigure.goto(0, -20)
stickfigure.pendown()
stickfigure.circle(20) # Head
stickfigure.right(90)
stickfigure.forward(60) # Body
stickfigure.right(180)
stickfigure.forward(30)
stickfigure.left(45)
stickfigure.forward(30) # Left arm
stickfigure.right(180)
stickfigure.forward(30)
stickfigure.left(90)
stickfigure.forward(30) # Right arm
stickfigure.right(180)
stickfigure.forward(30)
stickfigure.right(45)
stickfigure.forward(30)
stickfigure.right(30)
stickfigure.forward(30) # Left leg
stickfigure.right(180)
stickfigure.forward(30)
stickfigure.left(60)
stickfigure.forward(30) # Right leg
Explanation:
Create a python program that will input their name and their age. It will show an output "Hi, {name} ! How are you? I know you are {age} old."
I WILL MARK YOU AS BRAINLIEST
Answer:
age = 10
name = Cynthia
make an f string so the variables appear in the string. There are other ways to do this but I prefer f strings instead of using string concatenation. It causes problems adding 2 strings together most of the time.
print(f'Hi, {name} ! How are you? I know you are {age} old.')
PLS HELP!! TAKINT TEST
A _____ is a network geographically confined to one building.
A) VPN
B) MAN
C) LAN
D) WAN
ABC incorporated wants to implement a TCP/IP network for its only site. It has 180 employees and two buildings and requires Internet access for an e-mail server, a single Web server, a single FTP server, and two routers, each with a single high speed Internet interface. If the company wants to hold ISP costs to an absulate minumum, what kind of IP addresses should they primarily use
Answer:
A private IP address should be implemented but a PAT and a static NAT should be configured for the computers and the intermediate devices respectively.
Explanation:
There are two types of IP addresses, they are public and private addresses. The public address is an IP4 address routable on the internet while the private address is not routable.
Internet service providers do charge for the use of public IP addresses they render, which can be very costly. To reduce the company's expenses on the internet, the company is networked with private addresses and are mapped for network address translation ( NAT) which assigns a public global address to devices accessing the internet.
672.2The internet 24A buffer is 2MiB in size. The lower limit of the buffer is set at 200KiB and the higher limit is set at 1.8MiB.Data is being streamed at 1.5Mbps and the media player is taking data at the rate 600kbps.You may assume a megabit is 1048576bits and a kilobit is 1024bits.a)Explain why the buffer is needed.[2]b)i)Calculate the amount of data stored in the buffer after 2 seconds of streaming and playback.You may assume that the buffer already contains 200KiB of data.[4]ii)By using different time values (such as 4 secs, 6 secs, 8 secs, and so on) determine how long it will take before the buffer reaches its higher limit (1.8MiB).[5]c)Describe how the problem calculated in part b) ii) can be overcome so that a 30-minute video can be watched without frequent pausing of playback
a) The buffer is needed to ensure smooth playback of streamed media by storing a certain amount of data in advance. This is done to prevent interruptions due to network congestion or variations in the streaming rate.
How to calculate the datab) i) The amount of data streamed in 2 seconds is (1.5Mbps * 2s) = 3MB. The amount of data played back in 2 seconds is (600kbps * 2s) = 150KB. Therefore, the amount of data stored in the buffer after 2 seconds is (3MB - 150KB - 200KiB) = 2.6MB.
ii) To determine how long it will take before the buffer reaches its higher limit of 1.8MiB, we can use the following formula:
Time to reach limit = (higher limit - lower limit - current buffer size) / streaming rate
= (1.8MiB - 200KiB - 2MiB) / 1.5Mbps
= 8 seconds
Therefore, it will take 8 seconds for the buffer to reach its higher limit.
c) To overcome the problem of frequent pausing of playback, a larger buffer can be used. This will allow more data to be stored in advance, reducing the impact of network congestion or variations in the streaming rate.'
Additionally, adaptive bitrate streaming can be used, where the streaming rate is dynamically adjusted based on the available network bandwidth, to ensure a more consistent streaming experience. Finally, a content delivery network (CDN) can be used to deliver the media from servers located closer to the viewer, reducing the impact of network latency and improving overall streaming performance.
Read more about buffer sizes here:
https://brainly.com/question/30557054
#SJP1
convert inches to centimeters in html and javascript.
Answer:
Here is some simple code written in javascript that should do the job
Explanation:
var input = readInt("Enter the number of Inches")
//Gets the number of inches
var result = input * 2.54
// One inch is equal to 2.54 centimeters
print(result+ " Centimeters")
//Returns the resulting number of centimeters
. Write a program to calculate the square of 20 by using a loop
that adds 20 to the accumulator 20 times.
The program to calculate the square of 20 by using a loop
that adds 20 to the accumulator 20 times is given:
The Programaccumulator = 0
for _ in range(20):
accumulator += 20
square_of_20 = accumulator
print(square_of_20)
Algorithm:
Initialize an accumulator variable to 0.
Start a loop that iterates 20 times.
Inside the loop, add 20 to the accumulator.
After the loop, the accumulator will hold the square of 20.
Output the value of the accumulator (square of 20).
Read more about algorithm here:
https://brainly.com/question/29674035
#SPJ1
Find the maker(s) of the PC(s) with the fastest processor among all the PCs that have the smallest amount of RAM.
Answer:
the makers of PC is Charles's babbage.analog is has small amount of ram
Which part of the Result block should you evaluate to determine the needs met rating for that result
To know the "Needs Met" rating for a specific result in the Result block, you should evaluate the metadata section of that result.
What is the Result blockThe assessment of the metadata section is necessary to determine the rating of "Needs Met" for a particular outcome listed in the Result block.
The metadata includes a field called needs_met, which evaluates the level of satisfaction with the result in terms of meeting the user's requirements. The needs_met category usually has a score between zero and ten, with ten implying that the outcome entirely fulfills the user's demands.
Learn more about Result block from
https://brainly.com/question/14510310
#SPJ1
What is used to prevent all vlans from going across a trunk?
Walmart store wants to compare the sales of five of its stores. Write a complete program to ask the user to enter the sales for 5 stores. Create a bar chart displaying stars representing the sale amount for the day. must follow the requirements main method calls the print method. a for loop is required print method accepts an integer as its parameter representing the sale for the day. display stars based on the sale. one star represents $100 sale. a for loop is required Sample output:
Answer:
Here is the C++ program.
#include <iostream> //to use input output functions
using namespace std; //to identify objects cin cout
void print(int sales){ //method that accepts integer as its parameter representing the sale for the day
for(int i=0;i<(sales/100);i++){ //loop to create a bar chart
cout<<"*"; } } //prints stars representing the sale amount for the day
int main(){
int sales1; // stores the sales of store 1
int sales2; // stores the sales of store 2
int sales3; // stores the sales of store 3
int sales4; // stores the sales of store 4
int sales5; // stores the sales for store 5
cout<<"Enter the sales for store 1: "; //prompts user to enter sales for store 1
cin >>sales1; //reads the value of sales for store 1 and stores it in sales1
print(sales1); //calls print method to display start representing the sales amount for the day for store 1
cout<<"\nEnter the sales for store 2: "; //prompts user to enter sales for store 2
cin >>sales2; //reads the value of sales for store 2 and stores it in sales2
print(sales2); //calls print method to display start representing the sales amount for the day for store 2
cout<<"\nEnter the sales for store 3: "; //prompts user to enter sales for store 3
cin >>sales3; //reads the value of sales for store 3 and stores it in sales3
print(sales3); //calls print method to display start representing the sales amount for the day for store 3
cout<<"\nEnter the sales for store 4: "; //prompts user to enter sales for store 4
cin >>sales4; //reads the value of sales for store 4 and stores it in sales4
print(sales4); //calls print method to display start representing the sales amount for the day for store 4
cout<<"\nEnter the sales for store 5: "; //prompts user to enter sales for store 5
cin >>sales5; //reads the value of sales for store 5 and stores it in sales5
print(sales5); } //calls print method to display start representing the sales amount for the day for store 5
Explanation:
The program is well explained in the comments attached with each line of the program. Lets say user enters 100 as sales for store 1. Then the for loop works as follows:
for(int i=0;i<(sales/100);i++)
At first iteration:
i = 0
i<(sales/100) is true because 0 is less than 100/100 = 1
so the program moves to the body of loop which has the statement:
cout<<"*"
This prints one asterisk one output screen. Next the loop breaks when i = 1. So this only prints one asterisk in output since one star represents $100 sale. The screenshot of the program along with its output is attached.
Allows computers users to download software and share files______
Answer:
Internet
Explanation:
What changes have occurred over the last 25 years impacting how we use information systems and that increasingly require using encryption to meet our security requirements
Answer:
Follows are the solution to this question:
Explanation:
Throughout the presence of third-party companies that is attackers, cryptography is indeed a method of protecting information and communication.
Its cryptographic techniques are numerous, which are used for data security and encryption levels were defines, throughout all protocols.
Encryption - was its method for encoding a message and information. So, it can be viewed only by authorized parties.
They can search online for various data encryption. The changes over the last 25 years also actually occurred:
Cryptography is all around. Each time you make a phone call, buy something like that in a store or even on the Internet with a credit or debit card or receive money from an Atm is an authentication that helps secure and secures the payment.
Tausend years ago, codes or encryption were used to protect information. These encryption schemes have evolved from the past 25 years or say we are getting far better than that of the preceding one But cryptography was far more advanced with both the advent of computers than it used to be.
World War II would also see Enigma code, the perfect example of analog encryption.
Its computer design technology had also finally been enough to break its Enigma cipher, as well as Enigma texts, still are regarded as just a necessary component of the probable Affiliated successes.
Mathematical 128-bit cryptography has become a standard for several sensible computers and portable structures, far greater than every prehistoric or ancient plasterboard.
Without it.
AES - Another of our safest cryptography techniques is the Intensive Encryption System. The state-government uses it to protect classified information, that is used by all of our phones.
Which type of programming language is used in Unity?
Question 32 options:
object-oriented programming
functional programming
sequential programming
input-oriented programming
Answer:
Object Oriented Programming
Explanation:
This is for school. What links would you follow to see if a famous individual is alive or dead, and if dead, where the grave can be found?
To know if a person is alive or dead, you first need to know if that person is famous or not and then use some websites that can identify the date of death, and the grave, among other information.
Which websites can be used?Wikipedia.Find a Grave.Legacy.Billion Graves.To find the graves, you'll need to know some basic information about the person, such as full name, stage name, date of birth, and any other information that might specify the person you're looking for.
In addition, it is necessary to know that not all people will be found using these sites, as information about them can be scarce and difficult to locate.
Learn more about graves:
https://brainly.com/question/7225358
#SPJ1
solve this simple question 1) Let S = {a, bb, bab, abaab} be a set of strings. Are abbabaabab and baabbbabbaabb in S*? Does any word in S* have odd number of b’s?
Answer: a.
S = {aa ab ba bb}
This clearly shows that that every string that belongs to this language has an even length including 0 length.
This language can be depicted as following
S* = {∧ aa ab ba bb aaaa aaab aaba aabb bbaa . . .}
Regular Expression for this can be
RE = (aa+ab+ba+bb)*
So S* contains all the strings of a's and b's that have even length. This means all strings of even length.
Explanation:
b.
S* contains all possible strings of a's and b's that have length divisible by 3
This means some of the possible strings examples are:
aaa, bbb, aaabbb, aaaaaa, bbbbbb and so on.
Length divisible by 3 means the length of string such as aaa is 3 which is divisible by 3, also aaaaaa has length 6 which is divisible by 3
This should be something like this:
(( a + b ) ^3)*
For example a^3 = aaa which is divisible by 3
Regular expression can be:
RE of S* = (aaa + bbb)*
For example string bbbbbbbbb has length 9 which is divisible by 3
So the language is
S* = { ∧ aaa bbb aaabbb aaaaaa aaaaaabbb...}
Explanation:
I don't know how to fix this, but it needs me to do something to install a game.
If you encounter an error message stating that the feature you're trying to use is unavailable while installing the game,it may be related to the missing or corrupted Microsoft Visual C++ redistributable package.
How is this so ?To resolve this issue, you can try installing the Microsoft Visual C++ 2015-2022 Redistributable (x64)- 14.36.32532 manually.
Visit the official Microsoft website,download the package, and follow the installation instructions provided to fix the issue and successfully install the game.
Learn more about Microsoft Visual C++ at:
https://brainly.com/question/30743358
#SPJ1
Question 24 Multiple Choice Worth 5 points)
(01.04 MC)
Zavier needs to compress several files. Which file type will allow him to do this?
ODOC
GIF
OJPG
O ZIP
Answer:
ZIP
Explanation:
ZIP is a type of compression file as Jpg is a picture file, Gif is a picture file, and ODOC stands for Oklahoma Department of Corrections
TBH:
it may be O ZIP but i've never heard of it.
Answer:
Zip (D)
Explanation:
Took The Test
Question # 5
Which term best describes the operating system of a computer?
O Motherboard
O Application Software
O System Software
O Output Device
Answer:
system software.
Explanation:
a motherboard is a piece of hardware so thats out.
an applications software is software for an app or websie so that can't run an entire machine.
and an output device is like a speaker or monitor so thats not running the show.
that only leaves the system software. or operating system
The term that best describes the operating system of a computer is System Software.
The best phrase to describe a computer's operating system is "System Software." The operating system is a critical piece of software that maintains and controls the computer's hardware and serves as a platform for executing applications.
It functions as a bridge between the hardware and the user, allowing activities like resource management, file system operations, memory allocation, process scheduling, and user interface interaction to be performed.
Thus, the operating system is critical in allowing the computer to execute various duties and in laying the groundwork for other software, such as application software, to operate on the system.
For more details regarding operating system, visit:
https://brainly.com/question/6689423
#SPJ6
Arrange the given binary numbers in increasing order of their decimal equivalent. 110111 101101 110010 111110
Answer:
101101 < 110010<110111 <111110
Explanation:
We will convert binary number to their decimal equivalent
110111 - (1 × 2⁵) + (1 × 2⁴) + (0 × 2³) + (1 × 2²) + (1 × 2¹) + (1 × 2⁰) = (55)₁₀
101101 - (1 × 2⁵) + (0 × 2⁴) + (1 × 2³) + (1 × 2²) + (0 × 2¹) + (1 × 2⁰) = (45)₁₀
110010 - (1 × 2⁵) + (1 × 2⁴) + (0 × 2³) + (0 × 2²) + (1 × 2¹) + (0 × 2⁰) = (50)₁₀
111110 - (1 × 2⁵) + (1 × 2⁴) + (1 × 2³) + (1 × 2²) + (1 × 2¹) + (0 × 2⁰) = (62)₁₀
Now, arranging the given binary numbers in increasing order of their decimal equivalent , we get -
101101 < 110010<110111 <111110
Answer: 101101<110010<110111<111011<111110
used a binary translator.
Explanation:
Write an acronym for the following set of information. The pieces of information can be remembered in any order. Your
acronym can be a real word or a nonsense word you are able to pronounce.
Native American Tribes: Apache, Comanche, Pequot, Sioux
Save and Exit
Next
Submit
ACOPS stands for "Apache, Comanche, Pequot, Sioux," representing four Native American tribes. Each tribe has a rich cultural heritage and historical significance.
What is the Apache tribe known for?The Apache tribe is known for their resilience and warrior tradition, while the Comanche tribe is recognized for their horsemanship and dominance in the Great Plains.
The Pequot tribe has a notable history in the northeastern region, particularly their interactions with European settlers.
The Sioux tribe encompasses various subgroups, such as the Lakota, Dakota, and Nakota, and played a significant role in the history of the American West. ACOPS provides a concise acronym to remember these diverse Native American tribes.
Read more about Native American tribes here:
https://brainly.com/question/3271247
#SPJ1
A(an)_______is built-in preset calculation.
formula
function
equation
AutoSum
Answer:
Hello! The answer to your question is function I had the same question and got it right!
Explanation:
Hope this helped:)
#define DIRECTN 100
#define INDIRECT1 20
#define INDIRECT2 5
#define PTRBLOCKS 200
typedef struct {
filename[MAXFILELEN];
attributesType attributes; // file attributes
uint32 reference_count; // Number of hard links
uint64 size; // size of file
uint64 direct[DIRECTN]; // direct data blocks
uint64 indirect[INDIRECT1]; // single indirect blocks
uint64 indirect2[INDIRECT2]; // double indirect
} InodeType;
Single and double indirect inodes have the following structure:
typedef struct
{
uint64 block_ptr[PTRBLOCKS];
}
IndirectNodeType;
Required:
Assuming a block size of 0x1000 bytes, write pseudocode to return the block number associated with an offset of N bytes into the file.
Answer:
WOW! that does not look easy!
Explanation:
I wish i could help but i have no idea how to do that lol
What does cpu mean
Answer:
CPU or Central processing unit is the principal part of any digital computer system, generally composed of the main memory, control unit, and arithmetic-logic unit.
Hope this helps and if you could mark this as brainliest. Thanks!
a rectangle is 12 cm long and 9 cm wide.Its perimeter is doubled when each of its sides is increased by a fixed length.what is the length?
Answer:
length = 12 cm
breadth = 9 cm.
perimeter of rectangle = 2( l+b)
= 2(12+9) = 2(21) = 42cm.
New length = (12+x) cm
New breath = (9+x) cm
2(12+x+9+x) = 42×2
2(21+x) = 84
21+ x = 84/2
21+x = 42
x= 42-21= 21
x= 21.
Therefore, length = (12+x)cm
=( 12+21) cm = 33cm.
Explanation:
Firstly we have written the length and breadth of the rectangle.
And the perimeter of rectangle i.e. 2(l+b)
Then, as it is in question we have doubled the perimeter
And at last, we have got the value of x.
and by putting the value in the new length we will get our answer.
hope you have got your answer dear.