Blender questions
8. When adding objects, remember the object will always be placed at the position of the 3-D curser, so if the curser is off screen the object will also appear off screen. (1 point)
true
false
9. The 3-D curser is a powerful tool and a pivot point for all transformation. (1 point)
true
false
The icons to insert footnotes and endnotes in a document are located in the _____ tab.
Answer:
Answer: Reference
Explanation:
Write a program that reads three numbers and prints "increasing" if they are in increasing order, "decreasing" if they are in decreasing order, and "neither" otherwise. here, "increasing" means "strictly increasing", with each value larger than its predecessor. the sequence 3 4 4 would not be considered increasing
Following are C++ programs to input value and print the message.
Program Explanation:
Defining header file.Defining the main method.Defining integer variable "a,b,c" that uses the input method to the input value.Defining if block that checks first variable value is less than second and third value, if it's true it will print "increasing" as a message.Defining else if block that checks second variable value is greater than first and third value, if it's true it will print "decreasing" as a message. In the else block, it will print the "neither" as a message.Program:
#include <iostream>//header file
using namespace std;
int main()//main method
{
int a,b,c;//defining integer variable
cout<<"Enter numbers: "<<endl;//print message
cin>>a>>b>>c;//imput value
if (a < b && a < c)//using if block that check first variable value is less than second and third value
{
cout<<"increasing";//print message
}
else if(b>a&&b>c)//using else if block that check second variable value is greater than first and third value
{
cout<<"decreasing";//print message
}
else//else block
{
cout<<"neither";//print message
}
return 0;
}
Output:
Please find the attached file.
Learn more:
brainly.com/question/13143685
Naomi is giving a presentation on historical figures. She has all the pictures of the people she wants to talk about. After each picture, she wants to write a summary of the accomplishments of each person. Which represent the process for making her presentation?
A Click on File/Disk, select all pictures using the Shift key, and select New Text Box after each person.
B Click on New Text Box, select File/Disk, select a picture, then repeat for each one.
C Click on File/Disk, select each picture, then add captions to each slide.
D Click on New Text Box, select all pictures using the Shift key, then add captions to each slide.
How many amps are in a 3v battery?
I am having trouble with logic gates(AND NOR,etc)
Can someone give me some advice to remember most logic gates
A logic gate is an elementary building block of a digital circuit. Most logic gates have two inputs and one output. At any given moment, every terminal is in one of the two binary conditions low (0) or high (1), represented by different voltage levels.
There are seven basic logic gates: AND, OR, XOR, NOT, NAND, NOR, and XNOR.
The AND gate is so named because, if 0 is called "false" and 1 is called "true," the gate acts in the same way as the logical "and" operator. The following illustration and table show the circuit symbol and logic combinations for an AND gate. (In the symbol, the input terminals are at left and the output terminal is at right.) The output is "true" when both inputs are "true." Otherwise, the output is "false."
The OR gate gets its name from the fact that it behaves after the fashion of the logical inclusive "or." The output is "true" if either or both of the inputs are "true." If both inputs are "false," then the output is "false."
he XOR ( exclusive-OR ) gate acts in the same way as the logical "either/or." The output is "true" if either, but not both, of the inputs are "true." The output is "false" if both inputs are "false" or if both inputs are "true." Another way of looking at this circuit is to observe that the output is 1 if the inputs are different, but 0 if the inputs are the same.
The NAND gate operates as an AND gate followed by a NOT gate. It acts in the manner of the logical operation "and" followed by negation. The output is "false" if both inputs are "true." Otherwise, the output is "true."
The NOR gate is a combination OR gate followed by an inverter. Its output is "true" if both inputs are "false." Otherwise, the output is "false."
The XNOR (exclusive-NOR) gate is a combination XOR gate followed by an inverter. Its output is "true" if the inputs are the same, and"false" if the inputs are different.
What two types of icmp messages are received at the sending host executing the traceroute program?
Port unreachable and TTL (Time to Live) Expired messages are received at the sending host.
In cases when a packet reaches an end-host destined for a UDP port for which no host is associated, it generates an ICMP port unreachable in response. Also, an ICMP Port unreachable message can be generated in instances where the router could not find the server.
TTL expired on the other hand is used upon the execution of traceroute command. An ICMP message is sent out with a TTL value of 1 set in the IP header. The end host receiving a traceroute probe would send a TTL Expired ICMP when a single probe finally reaches it.
Final answer:
The "Time Exceeded" and "Destination Unreachable" messages are two types of ICMP messages received by a host running traceroute when a packet's TTL expires or the packet cannot be delivered.
Explanation:
The two types of ICMP messages received at the sending host executing the traceroute program are "Time Exceeded" messages and "Destination Unreachable" messages. The "Time Exceeded" message is received when a packet's time-to-live (TTL) value has reached zero before reaching its destination, prompting the intermediary router to send this message back to the source. The "Destination Unreachable" message is sent back if, for some reason, the packet could not be delivered to the destination host or if a communication port is not available.