There are several vehicles in a parking lot. Some of them are motorcycles
(with 2 wheels), and some are cars (with 4 wheels). There are 11 vehicles in
the lot, and there are 34 wheels. How many vehicles of each type are in the
lot?
O A. 7 motorcycles and 5 cars
B. 5 motorcycles and 6 cars
C. 6 motorcycles and 5 cars
D. 4 motorcycles and 7 cars
Answer:
The answer is 34.
Explanation:
Look at the pic.
Answer:
B
Explanation:
5*2=10
6*4=24
24+10=34 wheels
5+6=11 vehicles
pls mark brainliest
What process is a project manager doing when she or he defines and documents the stakeholders' needs to meet the project objectives?
in javascript, what can I put after player. to make my character go in the center of the screen? like example:
to put it at the bottom of the screen you put player.bottom(): to put it to the right of the screen you put player.right(): please help me i will mark brainlyest for the 1st correct answer
i need to put my character in the center of the screen
Answer:
0,0
Explanation:
you could try to use the x-axis and y-axis to put your character in a certain place. I'm not totally sure if that is how javascript works, but for the x-axis and y-axis, the center is always(0,0).
Plz help me in this example
Answer:
import java.util.*;
public class calcarms
{
public static void main(String [] args)
{
Scanner input = new Scanner(System.in);
//Declare Variable
int num;
//Initialize num to 0
num = 0;
//Print heading
System.out.println("Armstrong Numbers\t\tDifference between Successive Armstrong Numbers");
//Call Armstrong method
boolean result = Armstrong(num);
}
public static boolean Armstrong(int num)
{
int nums;
//Initialize old_Arms and new_Arms to 0
int old_Arms =0; int new_Arms = 0;
for(int i = 0;i<=500;i++) //Iterate from 0 to 500
{
nums = i;
int temp,calc = 0;
temp = nums;
//Check individual digit of each number
while(nums > 0)
{
int a=nums%10;
nums/=10;
calc+=(a*a*a);//Find cube of number
}
if(temp == calc) //Check if number is armstrong
{
new_Arms = calc;
old_Arms = new_Arms - old_Arms;
System.out.println(calc+"\t\t\t"+old_Arms);//Print
old_Arms = calc;
}
}
return true;
};
}
Explanation:
Comments are used to explain difficult lines
Dell XPS 15 or MacBook pro 13?
Answer:
MacBook Pro 13
Explanation:
Mostly cause of the brand.
And also I have a MacBook pro
Answer:
I think I would pick a MacBook Pro 13
Explanation:
The reason why is because personally I like apple products alot and Im not saying that Dell products are bad but I think apple products are just better. Also they do look the same but its really up to you to decide which brand you like better. If you had more experince with one brand you might want to stick with it or if you have experinced with both brands you should decide which you liked better.
1. The precious metals needed to make computer chips, graphic cards, and transistors are found in only a small population of countries. What economic implications does this have for the countries that have these metals to mine?
Answer:
it means that they can charge companies to come mine it making them more wealthy they can also upscale the materials needed to make it as they are the only countries that sell it so they have no one to compete with
According to data from the UN, China produces the most semiconductor chips worldwide. China has developed into a significant worldwide production hub for microelectronics, and the electronics value chain, which encompasses consumer electronics and ICT, has become more regionalized over time.
Which industries are affected by chip shortages?Numerous industries are impacted by the scarcity of semiconductor chips, including automotive, data centers, video games, and others. You probably learned about the global scarcity of semiconductor chips or were personally impacted by it if you were considering buying a new or used car over the past 18 months.
In 2021, experts predict that the worldwide chip shortage will cost the American economy $240 billion. The Commerce Department reports that some American manufacturers have inventory that is only good for a few days. A chip scarcity is generating major problems at Optimal Design, which is located near Chicago.
Learn more about Computer Chips here:
https://brainly.com/question/23261568
#SPJ2