Answer:
The answer is "a design proposal
"
Explanation:
The brochure is just a paper document that could be embedded in design, poster, and flyer. It is also often used for advertising purposes. Its design process, which becomes an imaginative process through which requirements were identified and process designed for the desires, that's why the above-given option is a correct and wrong choice can be defined as follows:
- The choice design brief is wrong because it is a written explanation.
- The choice design critique is wrong because it used to analyze the design.
- In choice design medium, it is processed in which design is prepared, that's why it is wrong.
Time management is very essential
The software firm design for the VR sample at Museum is a 360-degree video that shows a walk through of the virtual studio of a famous artist that is aided by a narration about the various piece of art that the user wants to focus on.
<h3>How is VR used in museums?</h3>
VR is known to be a technology that puts the user inside the experience they are viewing. It is known to be a kind of interactive or it is one that take the shape of 360-degree video.
The use of VR is done so as to form or create museum tours, so that exhibits in the museum can be interactive, and to bring the different scenes to reality.
Learn more about museums from
brainly.com/question/95815
The code to calculate the number of characters and the size of words is as follows:
x = input("Enter your text here: ")
char=0
word=1
for i in x:
char = char+1
if(i==' '):
word=word+1
print("Number of words in the given string ",word)
print("Number of characters in the given string ",char)
<h3>Code explanation:</h3>
The code is written in python
- The first line of code, we store the users input in a variable called x.
- Then we initialise the variable char to zero.
- The variable word is also initialise to zero
- The we loop through the user's input and count the character
- We also look for space to know the word, then count the words .
- Finally, we print the number of word and the number of character.
learn more on python code here: brainly.com/question/20379340