Answer: A. target audience for the brochure.
Before even starting the design of the brochure, Amanda needs to get information on who the target audience are going to be. Amanda will need to conduct a quick research on what the audience of their community likes and does not like. By understanding the target audience, Amanda will be able to get an idea of what design, colors, and format she would make that will attract the attention of their audience.
<u>Extensible Markup Language (XML)</u> is a markup language designed to transport and store data on the Web.
Explanation:
- Extensible Markup Language (XML) is a markup language that defines a set of rules for encoding documents in a format that is both human-readable and machine-readable
- Extensible means that the language is a shell, or skeleton that can be extended by anyone who wants to create additional ways to use XML.
- Markup means that XML's primary task is to give definition to text and symbols.
- It is a textual data format with strong support, Unicode for different human languages.
- Extensible Markup Language (XML) is used to describe data.
- The design goals of XML emphasize simplicity, generality, and usability across the Internet.
- It is a text-based markup language derived from Standard Generalized Markup Language (SGML).
Answer:
see attached
Vin -5V- +5V
Input current : 500 x 10^-6 A
V_r: 0V 5V
I_r: 1 mA
Explanation:
Step 1: Circuit Designing: you have to address the question what is your proposed circuit going to do (its function).
Step 2: Decide on circuit components that can address each such circuit functions.
Step 3: Decide on the operational specification for the circuit: voltages, currents, frequencies etc.
Step 4: Simulate your circuit to confirm if it works as expected with simulation software such as Multisim.
Answer:
Following are the program in the Python Programming Language.
# define function.
def return_second_word(sentence):
#remove all the spaces from the sentence
sentence=' '.join(sentence.split())
#the list is split from spaces
my_list = sentence.split(" ")
#return the list
return my_list[1]
#define main function
def main():
#get input from the user
se = input("Enter the sentence: ")
#print and call the function
print(return_second_word(se))
#condition to execute the main function
if __name__ == "__main__":
#call main function
main()
<u>Output:</u>
Enter the sentence: I love python
love
Explanation:
Here, we define the function i.e., "return_second_word()" and pass an argument "sentence", inside the function.
- Remove all the spaces from the variable "sentence" and again store in the variable "sentence".
- Set the variable "my_list" that store the split value of the variable "sentence".
- Return the list and close the function.
Finally, we define the main function and inside the main function.
- Get input from the user in the variable "se"
- And pass the variable "se" in the argument list during the calling of the function "return_second_word()".
- Then, print and call the function "return_second_word()".
- Set the if statement to call the main function then, call the main function.
Explanation:
A three way handshake is a method to create a connection between host and server.It is used in a TCP/IP network.
To establish a connection three steps are followed which are as following:-
- The host or sender sends a data packet called SYN to the server or receiver.It's purpose is to as if the receiver is open for new connections.
- When the receiver receives the SYN packet it responds with an ACK or SYN/ACK packet as a confirmation for the connection.
- When the sender receives the SYN/ACK packet and it respond with ACK packet.