10. Blender® allows users to duplicate an object simply by selecting it and pressing duplicate on the toolbar (shift+D). (1 point)true

false



11. According to the unit, which of the following is an important first step in any creative endeavor? (1 point)

pre-production

post-planning

delegating tasks

sending emails

Answers

Answer 1
Answer: 10. Blender® allows users to duplicate an object simply by selecting it and pressing duplicate on the toolbar (shift+D).
True

11. According to the unit, which of the following is an important first step in any creative endeavor?
pre-production

Hope this helps.


Related Questions

is the amount of variation between the lightest highlight and the darkest shadow in a particular image.
Which one of these are a valid IPv4 address? Check all that apply.A. 1.1.1.1B. 345.0.24.6C. 54.45.43.54D. 255.255.255.0
Develop a program that implements the POLYNOMIAL ADT using the LIST ADT. The POLYNOMIAL ADT is used to represent polynomials and the following operations defined on polynomials:1.Evaluate()(xp, z). Evaluates the polynomial )(xp at the point zx
What is probably the most revolutionary innovation since the printing press?
A(n) _____ is a harmful program that resides in the active memory of the computer and duplicates itself.WormVirusKeyloggerTimebomb

What makes a computer a computer?​

Answers

Answer:

A computer is an electronic device that manipulates information, or data. It has the ability to store, retrieve, and process data. You may already know that you can use a computer to type documents, send email, play games, and browse the Web

Explanation:

Follow me..............

central processor unit (CPU)

memory (ram)

input (mouse keyboard)

output (monitor or printer)

browse the web

ability to store retrieve and process data

I don't rlly know much about technology but I hope this helps

Write a program that takes user input describing a playing card in the following short-hand notation:А Ace
2... 10 Card values
J Jack
Q Queen
K King
D Diamonds
H Hearts
S Spades
C Clubs

Your program should print the full description of the card. For example, Enter the card notation: QS Queen of Spades
Implement a class Card whose constructor takes the card notation string and whose getDescription method returns a description of the card. If the notation string is not in the correct format, the getDescription method should return the string "Unknown".

Answers

Answer:

In python Language:

cardNotation = raw_input("Enter card notation: ")

 

# Create a dict for values

 

cardColors = {"D": "Diamonds",

             "H": "Hearts",

             "S": "Spades",

             "C": "Clubs"}

 

cardNumberValues = {"A": "Ace",

                   "J": "Jack",

                   "Q": "Queen",

                   "K": "King",

                   "2": "Two",

                   "3": "Three",

                   "4": "Four",

                   "5": "Five",

                   "6": "Six",

                   "7": "Seven",

                   "8": "Eight",

                   "9": "Nine",

                   "10": "Ten"}

 

# Handle cases when 10 comes in input

if len(cardNotation) == 3:

 

   number = cardNotation[:2]

   color = cardNotation[2:]

   print cardNumberValues.get(number) + " of " + cardColors.get(color)

 

elif len(cardNotation) == 2:

 

   number = cardNotation[:1]

   color = cardNotation[1:]

   print cardNumberValues.get(number) + " of " + cardColors.get(color)

 

else:

   print "INVALID VALUE"

What are the advantages and disadvantages of using the serial console connection compared to the usb console connection to a cisco router or switch?

Answers

It dеpеnds οn thе pοrt availability οn thе PC and thе rοutеr οr switch. If thе PC has a sеrial pοrt and a DB9-tο-RJ45 cablе is availablе, it is gеnеrally еasiеr tο cοnnеct tο thе rοutеr οr switch using thе sеrial cοnsοlе pοrt. If thе PC dοеs nοt havе a sеrial pοrt, a third party USB-tο-Sеrial adaptеr can bе usеd. Ciscο switchеs dο nοt havе mini-USB cοnsοlе pοrts, sο cοnnеcting via USB is nοt an οptiοn. If cοnnеcting frеquеntly tο a Ciscο rοutеr that has a Mini USB cοnsοlе pοrt, this can bе thе mοst еffеctivе mеthοd οncе thе Ciscο drivеrs arе installеd, bеcausе nеarly all nеwеr PCs havе USB pοrts.

Solution:

The advantages and disadvantages of using the serial console connection compared to the USB console connection to a cisco router or switch Re as follows:

USB stands for Universal Serial Bus. The advantages over serial and parallel connections are several and quite significant. The data transfer rate of a USB port is quite high I don't remember the specifics but it's something like 10MB/sec. Serial ports are significantly slower and while parallel ports are somewhat faster they are still very slow in comparison to a USB port.  The transfer rate is quite miser compared to USB.  

Another great difference is that with serial or parallel devices you must reboot the computer every time you change a device on the port. USB devices are hot-swappable, meaning you can change them out with the computer on, without having to reboot since the system will automatically detect when a device is plugged in (at least this is Micro$oft claims).  

A great advantage is that several devices to a single USB port through a port hub.  

The only disadvantage is in USB devices are limited to a distance of about 7ft from the port. Serial devices can be extended to a much greater distances.

Using your choice of pseudocode, C# or java, define a class for a Pig. A Pig object should have three attributes: a name, an age, and weight. Your class should have (i) a constructor that takes three arguments and copies them to the attributes; (ii) setters (mutators) and getter accessors) or properties (C#) for the attributes; (iii) a display method to display the Pig's attributes on screen; and (iv) a main() method that creates a Pig object, assigns values to its attributes, and displays them by calling the display method.

Answers

Answer:

Following are the code to this question:

public class Pig //Defining class Pig

{

private String name; //Defining string variable name

private int age; // Defining integer variable age

private double weight; // Defining double variable weight

Pig (String name, int age, double weight)  //Defining parameterized constructor  

{

super(); //using super key

this.name = name; //holding value in name variable

this.age = age;  // holding value in age variable

this.weight = weight; // holding value in weight variable

}

String getName() //Defining method getName

{

return name; //return name value

}

void setName(String name) // Defining method setName    

{

this.name = name; //hold name value

}

int getAge() // Defining method getAge

{

return age; //return value

}

void setAge(int age) // Defining method setAge  

{

this.age = age; // hold age value

}

double getWeight()  //Defining method getWeight

{

return weight; //return weight value

}

void setWeight(double weight) //Defining method setWeight  

{

this.weight = weight; //hold weight value

}

void display() //Defining method display

{

System.out.println("Name:" + name + " Age:" + age + " Weight:" + weight); //print value

}

public static void main(String[] ar) //Defining main method

{

Pig onc = new Pig("Jig",5,14.5); //creating class object and called parameterized constructor  

onc.display();//calling display method

}

}

Output:

please find the attachment.

Explanation:

In the given java program, a class "Pig" is declared, in which three name, age, and weight is defined which differs in datatypes, in the next step, parameterized constructor, get and set method, and display method declared, which can be described as follows:

  • In the parameterized constructor, uses super and this keyword to call and holds parameter value.  
  • In the get method three methods "getName, getAge, and getWeight" are defined, that return method values, and the set method "setName, setAge, and setWeight" uses this keyword to hold value in its variables.
  • The display method is used to print all method store values by its variables name.
  • Inside the main method, class object "onc" is created, which stores the value in it and calls the display method that print value with a message.

Which feature in Access is used to control data entry into database tables to help ensure consistency and reduce errors?O subroutines
O search
O forms
O queries

Answers

To control data entry into database tables to help ensure consistency and reduce errors will be known as forms in data entry.

What are forms in data entry?

A form is a panel or panel in a database that has many fields or regions for data input.

To control data entry into database tables to help ensure consistency and reduce errors will be forms.

Then the correct option is C.

More about the forms in data entry link is given below.

brainly.com/question/10268767

#SPJ2

The answer is: Forms

An example of negative self-talk is:

Answers

Answer:

when you call yourself fat or ugly......but that was my answer but pls dont ever be negative abt yalls selfs i love yall the way u are and if u eva wanna talk ill do it in the comments

Explanation:

Answer:

for example, when there is a bad driver on the road near you does something dumb and the little voice in your head always says you idiot watch where you are going. It also can be when you put yourself down like saying that you are dumb or that you will never get a job