PLEASE HELP!!!For this activity, you will create two designs for the same project. For example, you might choose to create a CD cover for your favorite band’s newest release, or you might want to design a menu for the local deli. No matter what you decide for your subject matter, the two designs must involve different media. One of these media will be an image-editing program, such as Inkscape. You will learn more about the basic tools available in Inkscape later in this lesson. The two designs should incorporate different techniques. For example, you might make one design abstract, while making the other more realistic. Be sure to save both of your designs. Scan or take a picture of the design that wasn’t created in an image-editing program. You will submit this item later in this lesson as your portfolio item. Select the link to access the Techniques Activity Rubric.

Answers

Answer 1
Answer:

Answer:

I'm not exactly sure on what the question is, but from reading it, I determined that you'll be creating 2 different designs using Inkscape/Photoshop. I'm leaving 2 of my designs in here for you to use on your project. Unknown on what to do about the design that wasn't created in an image-editing program.


Related Questions

In ____________, a large address block could be divided into several contiguous groups and each group be assigned to smaller networks.
Jimmy Fallon's persona when he is outside the White House can best be characterized as:A. humble and excited.B. outrageous and crazy.C. stern and authoritative.D. dark and serious.
To return the value of the cell D8, the formula should be OFFSETA1=________.
)Which of following can be thrown using the throwstatement?? Error? Throwable? Exception? RuntimeException? All of Given? None of given
In an e-credit card transaction the clearinghouse plays the following role:A. validates and verifies the sellers payment informationB. initiates the transfer of moneyC. transfers funds between the sellers bank and the buyers bankD. all of the above

Why is a bedroom considered a poor study environment?Bedrooms are dimly lit.
Bedrooms are too small.
Bedrooms are too comfortable.
Bedrooms are messy and cluttered.

Answers

Bedrooms are too comfortable, I'm not sure if this is the answer

Answer:

It would basically be based on how you study and what your room is like. But my opinion would be

Bedrooms are Too Comfortable- which causes you to want to sleep or not due your work

Bedrooms are dimly lit- Which makes it hard for you to see your work and see anything

Bedrooms are too small- You will fell crushed and hard to focus (I would most likely choose this answer)

Bedrooms are messy and cluttered- You will not be able to concentrate and make it hard to study or do school work. ( I would choose this because I have experienced with this and I score higher in a cleaner environment and able to focus more)

Explanation: This would all depend on how you best work.

Hope this Helps!!

Decode the following string of hex numbers using the ASCII code:0x54

0x68

0x65 0x63

0x61

0x6b

0x65 0x69

0x73 0x61 0x6c

0x69

0x65

0x2e

Answers

Answer:

0x54 - T

0x68  - h

0x65 0x63  - e c

0x61  - a

0x6b  - k

0x65 0x69  - e i

0x73 0x61 0x6c  - s a l

0x69  - i

0x65 - e

0x2e - .

Explanation:

ASCII ( American Standard Code for Information Interchange) is a standardized one byte representation for characters.

For example, character 'a' has an ascii representation of 0x61.

'c' has a ascii representation of 0x63.

Converting the given hex representations to their respective characters using standard ascii tables, we get:

0x54 - T

0x68  - h

0x65 0x63  - e c

0x61  - a

0x6b  - k

0x65 0x69  - e i

0x73 0x61 0x6c  - s a l

0x69  - i

0x65 - e

0x2e - .

1. Write an expression whose value is the result of converting the str value associated with s to an int value. So if s were associated with "41" then the resulting int would be 41.2. Write an expression whose value is the last character in the str associated with s.3. Given variables first and last, each of which is associated with a str, representing a first and a last name, respectively. Write an expression whose value is a str that is a full name of the form "Last, First". So, if first were associated with "alan" and last with "turing", then your expression would be "Turing,Alan". (Note the capitalization! Note: no spaces!) And if first and last were "Florean" and "fortescue" respectively, then your expression’s value would be "Fortescue,Florean".

4. Write an expression whose value is the result of converting the int value associated with x to a str. So if 582 was the int associated with x you would be converting it to the str "582".

5. Write an expression whose value is the str consisting of all the characters (starting with the sixth) of the str associated with s.

Answers

Answer:

The solution or expression for each part is given below:

  1. int(s)
  2. s[len(s)-1]
  3. last.capitalize()+','+first.capitalize()
  4. str(x)
  5. s[5:]

Explanation:

Following are attached the images that show how these expressions will be used. I hope they will make the concept clear.

All the images below are respective to the questions given.

An 'array palindrome' is an array, which, when its elements are reversed, remains the same. Write a recursive function, isPalindrome, that accepts a tuple and returns whether the tuple is a palindrome. A tuple is a palindrome if: the tuple is empty or contains one element the first and last elements of the tuple are the same, and the rest of the tuple is a palindrome

Answers

Answer:

Following are the program in the Python Programming Language.

#define function

def isPalindrome(test):

#set the if condition to check tuple is empty

 if(len(test)==0):

   return True

#Check the tuple contain 1 element

 elif(len(test)==1):

   return True

#check the element of tuple is palindrome or not

 else:        

   lenth=len(test)

   #check first last element is equal or not

   if(test[0]==test[lenth-1] and isPalindrome(test[1:lenth-1] ) ):

   #then, return true

     return True

   #otherwise

   else:

   #Return False,

     return False

#define tuple type variable and initialize

test=(1,2,3,4,3,2,1)

#print and call the function

print(isPalindrome(test))

Output:

True

Explanation:

Here, we define a function "palindrome()" and pass an argument in its parameter, inside the function.

  • Set the if conditional statement to check the following tuple is empty or not if the tuple is empty then, it returns true.
  • Set the elif conditional statement to check the following tuple containing one element, then it returns True.
  • Otherwise, we set the length of the tuple in the variable "lenth".
  • Then, set if conditional statement to check the first and the last element of the tuple is the same then, returns true.
  • Otherwise, it return false.

For each of the following algorithms medicate their worst-case running time complexity using Big-Oh notation, and give a brief (3-4 sentences each) summary of the worst-case running time analysis. (a) Construction of a heap of size n , where the keys are not known in advance.
(b) Selection-sort on a sequence of size n.
(c) Merge-sort on a sequence of size n.
(d) Radix sort on a sequence of n integer keys, each in the range of[ 0, (n^3) -1]
(e) Find an element in a red-black tree that has n distinct keys.

Answers

Answer:

Answers explained below

Explanation:

(a) Construction of a heap of size n , where the keys are not known in advance.

Worst Case Time complexity - O(n log n)

Two procedures - build heap, heapify

Build_heap takes O(n) time and heapify takes O(log n) time. Every time when an element is inserted into the heap, it calls heapify procedure.

=> O(n log n)

(b) Selection-sort on a sequence of size n.

Worst Case Time complexity - O(n^2)

Selection sort finds smallest element in an array repeatedly. So in every iteration it picks the minimum element by comparing it with the other unsorted elements in the array.

=> O(n^2)

(c) Merge-sort on a sequence of size n.

Worst Case Time complexity - O(n log n)

Merge sort has two parts - divide and conquer. First the array is divided (takes O(1) time) into two halves and recursively each half is sorted (takes O(log n) time). Then both halves are combines (takes O(n) time).

=> O(n log n)

(d) Radix sort on a sequence of n integer keys, each in the range of[ 0 , (n^3) -1]

Worst Case Time complexity - O (n log b (a))

b - base of the number system, a - largest number in that range, n - elements in array

Radix sort is based on the number of digits present in an element of an array A. If it has 'd' digits, then it'll loop d times.

(e) Find an element in a red-black tree that has n distinct keys.

Worst Case Time complexity - O (log n)

Red-black tree is a self-balancing binary tree => The time taken to insert, delete, search an element in this tree will always be with respect to its height.

=> O(log n)

Which toplogy is common in these days? and justify atleast fivereason

Answers

Answer: Star topology is commonly used these days.

Explanation:

  • As, start topology is the reliable network topology because the failure of a central node or a node cable does not affect the remaining other nodes.
  • In star topology, if the computer fails you can still access your data by using backup folder in your private file or folder.  
  • In this network topology it is easy to find faults and correct it timely.
  • The start topology is cost effective and easy to maintain.  
  • We can also connect multiple communication channels.