Wendy Patel is entering college and plans to take the necessary classes to obtain a degree in architecture. Research the programs and apps that Wendy might use in her degree program and recommend a computer with sufficient hardware specifications to adequately support her through the degree program. Provide a link to the computer you locate and justify why you feel the computer will best meet her needs. Why did you choose the central processing unit? Why did you choose the amount of RAM? Why did you choose the storage device?

Answers

Answer 1

Some of the programs and apps that Wendy might use in her degree program of architecture are:

AutoCAD Mobile AppMorpholio Trace Pro.ARki. ArchiSnapper 5.MagicPlan.Shapr3D

A recommended computer that Wendy Patel can use in her university study of obtaining a degree in architecture is an ASUS ZenBook S Ultra Slim Flip Laptop.

The RAM is 16GB RAM and the CPU is an 11th Generation Core i7-1165G7 chip that would help her navigate through her design projects.

What is Architecture?

This refers to the process of designing and constructing buildings with the aid of software.

Hence, we can see that Some of the programs and apps that Wendy might use in her degree program of architecture are:

AutoCAD Mobile AppMorpholio Trace Pro.ARki. ArchiSnapper 5.MagicPlan.Shapr3D

A recommended computer that Wendy Patel can use in her university study of obtaining a degree in architecture is an ASUS ZenBook S Ultra Slim Flip Laptop.

The RAM is 16GB RAM and the CPU is an 11th Generation Core i7-1165G7 chip that would help her navigate through her design projects.

Read more about architecture here:

https://brainly.com/question/9760486

#SPJ1


Related Questions

Heat travels from a substance to a substance

Answers

Answer:

Heat is transferred from one object to another by the collision of the particles in the two substances.

Explanation:

Heat is transferred from one object to another by the collision of the particles in the two substances.

Bruno works in a food processing plant. One of his jobs is to monitor the refrigeration equipment so that all the foods are being stored at a safe temperature. He inspects the thermometers on the 10 refrigerators that hold packaged meat ready for shipment. Which refrigerator needs Bruno’s attention?

A.
the one reading 38°F.

B.
the one reading 37.7°F.

C.
the one reading 40°F.

D.
the one reading 42.8°F.

Answers

The refrigerator that needs Bruno’s attention is option D. the one reading 42.8°F.

Check more about Temperature  below

What Is the Best Temperature for My Refrigerator?

There are different kinds of temperature for any  refrigerator. The Food and Drug Administration states that 40 degrees Fahrenheit or lower is the recommended refrigerator temperature (FDA).

Note that Salmonella, E. coli, and listeria, three bacteria are those that can result in foodborne diseases, and thus cannot grow at these temperatures.

Therefore, based on the above, The refrigerator that needs Bruno’s attention is option D. the one reading 42.8°F.

Learn more about refrigerator from

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

Write a C++ program which reads a given integer n and prints its twin
prime.
"A twin prime is a prime number that is either 2 less or 2 more than another prime
number" for example, either member of the twin prime pair (41, 43). In other
words, a twin prime is a prime that has a prime gap of two".
Sample Output:
Enter an integer:
11
Twin prime number of 11 is:
13

Answers

The C++ program that reads a given integer n and prints its twin prime is given below:

The Program

#include <iostream>

#include <cmath>

using namespace std;

int main() {

   const int num_primes = 10005;

   bool primes[num_primes];

   for (int i = 2; i != num_primes; ++i) {

       primes[i] = true;

   }

   for (int i = 2; i != int(sqrt(num_primes)); ++i) {

       if (primes[i]) {        

           for (int j = 2; i * j < num_primes; ++j) {

               primes[i*j] = false;

           }

       }

   }

   int n;

cout << "Input an integer:\n";

   cin >> n;

cout << "Twin primes are:\n";

       for (int i = n; i - 2 >= 0; --i) {

           if (primes[i] && primes[i-2]) {

               cout << i-2 << " " << i << endl;

               break;

           }

   }

   return 0;

}

The Output

Input an integer:

Twin primes are:

11 13

Read more about programming here:

https://brainly.com/question/23275071

#SPJ1

A design team is working on a design project for an event ticketing app to reduce paper tickets. They suggest the following design problem statement: Ricki is an avid sports fan and wants to avoid printing tickets that will be discarded once they’re in the stadium. What element is missing in the problem statement? (UX)

User name

User need

Insight

User characteristics

Answers

The element that is missing here are users characteristics. The correct option is D.

What is problem statement?

A problem statement is a succinct description of an issue that needs to be addressed or a condition that needs to be improved.

It determines the difference between the current and desired states of a process or product. The problem statement should address the Five Ws while focusing on the facts.

The problem itself, plainly stated and with enough please start to establish why it is crucial; the method of solving the problem, often asserted as a claim or a working thesis; and the purpose, statement of objective, and scope of the document the author is preparing.

As in the given scenario, Ricki is an avid sports fan and wants to avoid printing tickets that will be discarded once they’re in the stadium it requires user characteristics.

Thus, the correct option is D.

For more details regarding problem statement, visit:

https://brainly.com/question/11657822

#SPJ1

Let T = {3, 5, 7, 9, 11, 22, 44}. Which of the following statements
are true?

Answers

Answer:

None of them, cause theres no statements and please let us know the language

what is network security and why we need it?​

Answers

Answer:

Network Security protects your network and data from breaches, intrusions and other threats. This is a vast and overarching term that describes hardware and software solutions as well as processes or rules and configurations relating to network use, accessibility, and overall threat protection.

Explanation:

brainliest please

Write the contribution of baise pascal and dr herman hollerith in the histroy of computer

Answers

Answer:Computers truly became a revolutionized invention during the last part of the 20th century. They have already helped win wars, solve seemingly insoluble problems, saved lives and launched us into space. Their history spans more than 2500 years to the creation of the abacus. This resource provides a brief history of computers.The Pascaline

In 1642, an eighteen year old French scientist, writer and philosopher, Blaise Pascal (1623–1662), invented the very first mechanical calculator. It was named the Pascaline.

It had been created as an aid for Pascal’s father, who was a tax collector. Pascal built fifty of these gear driven calculating machines and couldn’t manage to sell many due to their expensive cost.

Explanation:

Write an expression that computes the sum of two double variables total1 and total2, which have been already declared and assigned values.

Answers

The expression that computes the sum of two double variables total1 and total2, which have been already declared and assigned values is total1+total2.

What is double variable?

The double data type is built into the compiler and is used to define numeric variables that hold numbers with decimal points.

Many programming languages, including C, C++, C#, and others, recognize the double as a type.

A variable can be declared as double by prefixing it with the double keyword. You mostly used this data type, which has 14 or 15 decimal digits.

However, it must be used with caution because it requires 8 bytes of memory storage and is an expensive method.

total1+total2 is the expression that computes the sum of two double variables total1 and total2, which have already been declared and assigned values.

Thus, this can be the expression that computes the sum of two double variables total1 and total2.

For more details regarding double variable, visit:

https://brainly.com/question/1979738

#SPJ1

Benefits of Time Management include all EXCEPT the following

A. You are more efficient

B. You feel more stressed

C. You have more energy

D. You develop more qualities

Answers

Answer:
B.

Explanation: With good time management you feel less stress or little to no stress.

Answer:

The only disadvantage of time management is b), you feel more stressed.

Explanation:

Because you have made a plan and have to respect it, it puts pressure on you so you can feel stressed.

I hope this helps!

As the network administrator for a growing ISP, you want to make efficient use of your network addresses. One of the network addresses IANA assigned to you is a Class C network of 197.14.88.0. You have decided to use the addresses in this Class C network to satisfy the IP address requirements of 16 corporate customers who need between 10 and 14 addresses each. Calculate a subnet mask that meets their needs. List the subnet mask and the first four subnet addresses the mask will create.

Answers

The List of the subnet mask and the first four subnet addresses the mask will create  are:

IP 197.14.88.0Subnet 255.255.255.240First 4 host addresses 197.14.88.1, 197.14.88.2, 197.14.88.3, 197.14.88.4/20 (255.255.255.240) is 16 addresses with 14 usable IP addresses All of the corporate customer can have 20 starting with 197.14.88 and each of the IP addresses in that scope will be utilized.

What are subnet addresses?

It is known to be a kind of an autonomous system that is said to be made up of several networks can use subnet addressing to share an Internet address.

Therefore, The List of the subnet mask and the first four subnet addresses the mask will create  are:

IP 197.14.88.0Subnet 255.255.255.240First 4 host addresses 197.14.88.1, 197.14.88.2, 197.14.88.3, 197.14.88.4/20 (255.255.255.240) is 16 addresses with 14 usable IP addresses All of the corporate customer can have 20 starting with 197.14.88 and each of the IP addresses in that scope will be utilized.

Learn more about subnet addresses from

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

How does technology effect ecological, social, practical, moral, ethical, political, andaesthetic values in the society?

Answers

The technology effect ecological, social, practical, moral, ethical, political, and aesthetic values in the society is it is one that has influenced the way individuals often communicate, as well as learn, and think.

How does technology affect moral values?

The use of technology  is one that helps a a lot of people to a lot of healthier, more educated, as well as  making a lot of work decision.

The technology effect  is one that affect the ways that humans do communicate, learn, and as well as think. It helps to shape the human society and also to know how people talk with each other on a consistent basis.

Since Technology plays a key role in society today. It is one that has both positive and negative effects on the world as well as human lives.

Hence, The technology effect ecological, social, practical, moral, ethical, political, and aesthetic values in the society is it is one that has influenced the way individuals often communicate, as well as learn, and think.

Learn more about technology from

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

The three statements that take the problem-solving process to another level are
AND, OR, and THEN
IF, THEN, and ELSE
THIS, THAT, and OTHER
TRUE, FALSE, and POSSIBLE

Answers

The three statements that take the problem-solving process to another level are:

IF, THEN,  ELSE

In computer programming, they are known as conditional statements that give alternate commands to the computer system if a condition is not satisfied.

For example, a sample algorithm is given below:

Ask for student scores

If score > 70

THEN

Print "You have an A"

ELSE

IF score greater than or equals to 60 and < 70

THEN

Print "You have a B"

What is a Conditional Statement?

This refers to the types of statements that give alternate commands to the computer system if a condition is not satisfied.

Hence, we can see The three statements that take the problem-solving process to another level are:

IF, THEN,  ELSE

In computer programming, they are known as conditional statements that give alternate commands to the computer system if a condition is not satisfied.

For example, a sample algorithm is given below:

Ask for student scores

If score > 70

THEN

Print "You have an A"

ELSE

IF score greater than or equals to 60 and < 70

THEN

Print "You have a B"

Read more about conditional statements here:

https://brainly.com/question/18736215

#SPJ1

What question should you ask when deciding which device to design for first? (UX)


Where will users go once they access the app or website?

Where will users be when they access the product?

When will users access the product?

How much do users pay for internet access, cellular access, or wi-fi signal?

Answers

Answer:

I think it's either "Where will users go once they access the app or website?" or "How much do users pay for internet access, cellular access, or wi-fi signal?"

This one's tricky

Why might a programmer use a "linked list" instead of an "array" to store data in a computer program?

Answers

The programmer uses a “linked list” instead of an “array” to store data due to its dynamic nature and quicker insertion/deletion time complexity, linked lists.

What is a linked list?

A linked list is a linear line or collection of data whose data is not organized in a way in a physical memory. A data structure consists of collecting nodes.

The array is also a collection of data of elements. They are identified by an array index and array key.

Thus, the programmer used a “linked list” instead of an “array” because It is the quick and easy way.

To learn more about the linked list, refer to the link:

https://brainly.com/question/13144722

#SPJ1

how to print name 100 times in python

Answers

Answer:

How do you print a name 100 times in python? Use range () to print a string multiple times. Use range (stop) to create a range of 0 to stop where stop is the number of lines desired. Use a for-loop to iterate through this range. In each iteration, concatenate the string to itself by the number of times desired and print the result.

Explanation:

Given a variable fraction that contains a double value, write a statement that writes the value of fraction to standard output.

Answers

Given a variable fraction that contains a double value, a statement that writes the value of the fraction to standard output is print(float(fraction))

What is a Println?

This is an output command that is used to print a line in a programming sequence that contains a variable.

Hence, we can see that Given a variable fraction that contains a double value, a statement that writes the value of the fraction to standard output is print(float(fraction))

This is because it is meant to contain decimal numbers when doing calculations so print(float(fraction)) is used.

Read more about println here:

https://brainly.com/question/14467221

#SPJ1

"As a busy professional and avid book lover, I want to be able to reserve books in advance, so that I can pick them up based on my schedule.” (ux)

What component of the user story addresses the persona’s goal to access books they want to read when they arrive at the library?


Demographic

Benefit

Action

Role

Answers

Answer:

The answer is benefit

that it

What is the advantages of using Emails compared to postal Emails.​

Answers

There is a chance you will not receive the postal email because it could get lost while coming but an email that is electronic couldn’t get lost unless you give them the incorrect email, but then again that could happen with postal emails. Though there are cons of using electronic email the pros will always out weigh the cons.

A Triforce number is a number that is divisible by at least one out of three other numbers. Write the Python statements using the For Loop to print the triforce numbers between two numbers A and B, inclusive. The numbers must be divisible by at least one of the three other numbers provided by the user.

#The program will receive five numbers as input, the first number (A), the last number (B), and the three numbers (let’s say num1, num2 and num3) to determine whether it is divisible or not. Do not print any number outside the range [A, B].

Answers

A program that will receive five numbers as input, the first number (A), the last number (B), and the three numbers (let’s say num1, num2 and num3) to determine whether it is divisible or not is given below:

The Program

a = input()

first = int(a)

b = input()

second = int(b)

c = input()

third = int(c)

d = input()

fourth = int(d)

if a > b or a > c or a > d:

 print ('the larges number' + a)

elif a < b or a < c or a < d:

 print ('the smallest number' +a )

elif b > a or b > c or b > d:

 print ('the larges number' + b)

elif b < a or b < c or b < d:

 print ('the smallest number is' + b )

elif d > a or d > b or d > c:

 print ('the biggest number is' + d )

elif d < a or d < b or d < c:

 print ('the smallest numbet is'+ d)

else:

Using a While Loop

loopcount = 0

largest = -float('inf')  # smallest possible value

smallest = float('inf')  # largest possible value

while loopcount < 5:

   loopcount = loopcount + 1

  given = input()

   given_as_integer = int(given)

   # Compare to the current smallest and largest value

   if given_as_integer < smallest:

       smallest = given_as_integer

   if given_as_integer > largest:

       largest = given_as_integer

print('the largest number is', largest)

print('the smallest number is', smallest)

Read more about programming here:

https://brainly.com/question/23275071

#SPJ1

Which is best app to create websites​

Answers

Answer:

Wix.

Explanation:

Wix is a cloud-based website builder that includes web hosting and design services.

Its user-friendly drag-and-drop tools and over 500+ ready-made templates help you build your website without either having specialist skills or hiring a web developer. Wix accelerates the web development process and gives you the creative freedom to build the website you desire.

Wix is an ideal website builder for small and medium eCommerce businesses. It has over 200 million registered users across the world and is available in 17 languages (Wix).

According to Enlyft, Wix’s largest customer base is in the US (57%), followed by the UK (6%) and Canada (6%). Is Wix the Best eCommerce Platform? Wix eCommerce is an eCommerce website builder that lets you create a custom online store, sell products, and scale your business to the next level.

It’s also an excellent eCommerce platform for small and medium businesses that’s easy to use, customize, and relatively affordable. However, whether it’s the best eCommerce platform for you will depend largely on your specific business needs.

Which of the following is NOT a computer hardware?

Question 2 options:

Monitor


Internet


Keyboard


Mouse

Answers

Answer:

Internet

Explanation:

please make my answer as brainelist

explain the features of the first operational stored - program computer
?​

Answers

Answer:

The first stored-program computers. It featured the first rotating drum storage device. Manchester Baby, a developmental, fully electronic computer that successfully ran a stored program on June . It was subsequently developed into the Manchester Mark , which ran its first program in early April .

4.15 LAB: Convert to reverse binary
Write a program that takes in a positive integer as input, and outputs a string of 1's and 0's representing the integer in reverse binary. For an integer x, the algorithm is:

As long as x is greater than 0
Output x % 2 (remainder is either 0 or 1)
x = x / 2

Please help me!!

Answers

A program that takes in a positive integer as input, and outputs a string of 1's and 0's representing the integer in reverse binary is

num = int(input())

while num > 0:

   y =(num % 2)

   print(y, end='')

   num = (num//2)

print()

num = int(input("Enter a number"))

string = ""

while num > 0:

   y =str(num % 2)

   string+=y

   num = (num//2)

reverse=string[::-1]

print(reverse)

Read more about programming here:

https://brainly.com/question/23275071

#SPJ1

What types of traffic can still fool stateful firewalls?

Answers

The types of traffic can still fool stateful firewalls incude the following:

Packets containing hazardous contents.Normal protocols that are running on non-standard ports.

What is a firewall?

A firewall can be defined as a network security protocol that monitors and controls inbound and outbound traffic based on set aside security rules.

In Computer technology, a firewall is typically used to control access to a computer or network, as it creates a barrier between a computer or a network and the internet in order to protect against unauthorized access.

Additionally, the other functionality which would influence a decision to deploy a stateless, rather than stateful firewall are:

Block TCP portsAllow network protocols.

In this context, we can reasonably infer and logically deduce that the types of traffic can still fool stateful firewalls incude the following:

Packets containing hazardous contents.Normal protocols that are running on non-standard ports.

Read more on stateful firewall here: brainly.com/question/16157439

#SPJ1

what is a computer and explain it's features


Answers

Answer: A computer is a technological device usually used for storing or transferring data, usually in binary form. The features of a computer now are outstanding from say an old Macintosh, or anything before Windows 7 really, some of its features are for programming like PLC Robots, and what most people would use it for is internet access, a way to communicate with friends or my personal favorite gaming an entire world of games on applications like Steam or Epic Games, and even if you're not a gamer you can still appreciate the fast speeds and FPS I run at a standard 120FPS because it keeps most games running smooth and still has high-quality graphics.

HELP PLEASE

Which member of the game design team writes the step-by-step computer
instructions, or code, required to create games?


Game designer

Programmer

IT specialist

Sound engineer

Answers

It should be the game designer cause they designed the game

Answer:

Programmer

Explanation:

When a computer is being developed, it is usually first simulated by a program that runs one instruction at a time. Even multiprocessors are simulated strictly sequentially like this. Is it possible for a race condition to occur when there are no simultaneous events like this?

Answers

My response is Yes, the simulated computer is one that can be multiprogram med.

What is meant by computer simulations?

A computer simulation is known to be a kind of a program that is known to often run on a computer and it is said to be one that uses a form of  step-by-step mechanism to examine or look through the  behavior of a mathematical model.

Note that this is said to be a model of a real-world system and as such, My response is Yes, the simulated computer is one that can be multiprogram med.

Learn more about simulated computer from

https://brainly.com/question/24912812

#SPJ1

# Activity 1
# This activity has the objective of practicing
# how to write if statements.
# For this example there are four kinds of flowers:
# 1. Blue and small ( less than 2 inches in size)
# 2. Blue and large ( >= inches in size)
# 3. Red and small
# 4. Red and large
# The user is prompted to enter the color and
# the size of the flower and you will
# print the corresponding kind of flower

Answers

The If-statement that is made up for the given activity is given below:

How to write an IF Statement

# 1. Blue and small ( less than 2 inches in size)

If Blue is less than 2 inches in size

Print "This is blue and small"

# 2. Blue and large ( >= inches in size)

If Blue is greater than 6 inches in size

Print "This is blue and large"

# 3. Red and small

Loop

# 4. Red and large

End

Read more about if statements here:

https://brainly.com/question/11073037

#SPJ1

Find the following measures of central tendency for the given set of data. {1, 3, 9, 11, 2}

Answers

Answer:

(1+3+9+11+2)/5=26/5=5.2

Which type of memory management system is feasible for mobile computing?

Answers

The  type of memory management system is feasible for mobile computing is known to be built in memory (RAM).


What is memory management in mobile computing?

The term Memory Management is known to be the act of controlling as well as coordinating computer memory.

It  is one that tends to share some parts known as blocks to a lot of running programs to be able to optimize the total  performance of the system.

Therefore, based on the above, The  type of memory management system is feasible for mobile computing is known to be built in memory (RAM).

Learn more about memory management from

https://brainly.com/question/27993984

#SPJ1

Other Questions
what is the setting of All Summer In A Day? 35Fatema is volunteering at her sons schools parent-teachers organization. This year, the PTO wants to buy new playground equipment and an extra computer for the lab. For the PTO to reach the goals it has in mind, it will take some heavy donations from parents. Fatema is asked to perform that duty, as well as calculating the costs and revenues of the projects. Which position is Fatema MOST likely being asked to take on?A. presidentB. vice presidentC. secretaryD. treasurer Two spheres have surface areas of 100 \pi square centimeters and 16 square centimeters. What is the ratio of the volume of the large sphere to the volume of the small sphere? Construct an equilateral triangle. Verify your construction using measurement and justify it using mathematics. (Hint: Use the construction for copying a segment.) ...Sorry................ Which of the following inferences about Hrothgar is best supported by the following passage (paragraph 1)?Inspired by winds (or whatever you please), the old man sang of a glorious meadhall whose light would shine to the ends of the ragged world. The thought took seed in Hrothgars mind. It grew. He called all his people together and told them his daring scheme. He would build a magnificent meadhall high on a hill, with a view of the western sea, a victory-seat near the giants work, old ruined fortress from the worlds first war, to stand forever as a sign of the glory and justice of Hrothgars Danes. There he would sit and give treasures out, all wealth but the lives of men and the peoples land. And so his sons would do after him, and his sons sons, to the final generation.Answer choices for the above questionA. Hrothgar believes that Grendel is the most important giant to beat in battle.B. Hrothgar believes victory should be displayed so the strength of a people can be acknowledged.C. Hrothgar believes that wealth taken from giants and distributed to workmen causes unnecessary conflict.D. Hrothgar believes that power should not be handed down from generation to generation. The rectangle shown has an area of 84 square inches. Find the dimensions of the rectangle. Determine whether the statement is always, sometimes, or never true. Explain you reasoning. If point A lies in plane P , then AB lies in plane P. what examples can you give for formal and informal social control HELP ASAP!!!!!!!Which expression is equivalent to 5 + 8 6x 8x?1.) 14x + 132.)-14x - 33.)-14x + 34.)-14x + 13 Has there been anything in America like "Total War" to solve a problem or fight a common enemy since World War II? ExplainWorld War II is a great historical example of "Total War" which is the full dedication of a nation's people, resources, and efforts.Has there been anything in America like "Total War" to solve a problem or fight a common enemy since World War II? Explain If the charges doubled to 2q and electric field is now measured at a distance of two r from the charge, the new measured value of the field will be:________ What is the purpose of scientific argumentation? What structure is being shown in the following quote? Due to the garbage men strike, people are unsure what to do with their trash. A. Cause/effect B. Comparison C. Problem/solution D. Sequence In what way does the author convey the emotional intensity of his experience in the battle of athens? include at least two supporting details in your answer. The nurse is assisting a primigravida on calculating the due date of her baby using naegele rule. the most important information provided by the mother is:________ how did the tea act of 1773 affect the colonists? An automobile company decides to improve the quality of its products and bring more variety into its entire product line. The company has decided to adopt ________. What is the mass of a cylinder of lead that is 1.80 in diameter, and 4.12 in long? How did the slave trade make Africa vulnerable to the invading powers of Europe? a. Evened out the population and helped contribute to better negotiations with the Europeans. b. Greatly increased the population resulting in less wealth. c. Greatly reduced the population and contributed to inter-tribal warfare.