1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Helen [10]
3 years ago
13

What are possible penalties if a designer is caught breaking copyright laws?

Computers and Technology
1 answer:
Dominik [7]3 years ago
3 0

Answer:

1 and 4 are the correct answers.

Explanation:

You might be interested in
How do i add an answer on brainly i click to add an answer and it sends me to the home page
cricket20 [7]

Answer:  try to just add as little as possible then add the answser or just reload your browser

Explanation:

7 0
3 years ago
This indicates the number of elements, or values, the array can hold.
tiny-mole [99]

Answer:

Option B is the correct answer for the above question.

Explanation:

The array is a user-defined data type that is used to define the multiple variables of the same type which can store in the contiguous memory location. If a user wants to define the array then he can do this by the following syntax in c-programming language-- "int a[7];", where a is an array of 7 variables of the integer type which holds the integer data. The 7 is also called the size of the array 'a'. It states that the array named a can hold the 7 integer value. The above -question also asked about the term which defines how much variables an array can hold. The answer is the size of the array which is stated from the option B. Hence B is the correct answer while the other is not because--

  • Option A states about the new operator which is not the correct option.
  • Option C states about the data type of the array which is not the correct option.
  • Option D states about the version of java which is not the correct option.

8 0
3 years ago
Hey, I am in need of urgent help! My teacher is REALLY bad at his job (no exaggeration) and if I dont get a 100 on this lab, I w
anygoal [31]

Answer:

public class CircularList

{

  private ListNode head; // front of the LinkedList

  private ListNode tail; // last node of the LinkedList

  private int size; // size of the LinkedList

   

  // constructs a new CircularList

  public CircularList()

  {

    head = tail = null;

    size = 0;

  }

   

  // returns the size of the array

  public int size()

  {

     return size;

  }

   

  // returns whether the list is empty

  public boolean isEmpty()

  {

     return (size == 0);

  }

   

  // returns the value of the first node

  public Integer first()

  {

     if (head != null) {

       return head.getValue();

     }

     return -1;

  }

   

  // returns the value of the last node

  public Integer last()

  {

     if (tail != null) {

       return tail.getValue();

     }

     return -1;

  }

  // adds a node to the front of the list

  public void addFirst(Integer value)

  {

    head = new ListNode(value, head);

    if (tail == null) {

      tail = head;

    }

    size++;

  }

   

  // adds a node to the end of the list

  public void addLast(Integer value)

  {

    ListNode newTail = new ListNode(value, null);

    if (tail != null) {

      tail.setNext(newTail);

      tail = newTail;

    } else {

      head = tail = newTail;

    }

     

    size++;

  }

   

  // adds a node at the position pos  

  public void addAtPos(int pos, Integer value)

  {

     if (pos == 0) { // Add at the start

       addFirst(value);

       return;

     }

     if (pos <= 0 || pos > size) { // Ignore attempts to add beyond the ends

       return;

     }

     if (pos == size) { // Special case, tail has to be adjusted

       addLast(value);

       return;

     }

     // size and pos are guaranteed both non-zero

     ListNode ptr = head; // ptr is the node before the new one

     for(int i=0; i<pos-1; i++) {

       ptr = ptr.getNext();

     }

     ListNode newNode = new ListNode(value, ptr.getNext());

     ptr.setNext(newNode);

     size++;

  }

   

  // removes the first node and returns the value of the removed node or -1 if the list is empty

  public Integer removeFirst()

  {

     Integer retVal = -1;

     if (head != null) {

       retVal = head.getValue();

       head = head.getNext();

       size--;

     }

     if (size == 0) {

       head = tail = null;

     }

     return retVal;

  }

   

  // removes the node at position pos and returns the value of the removed node or -1 if pos is not a valid position

  public Integer removeNode(int pos)

  {

     Integer retVal = -1;

     if (head == null || pos < 0 || pos >= size) {

       return retVal;

     }

     if (pos == 0) {

       return removeFirst();

     }

     ListNode ptr = head; // ptr is the node before the deleted

     for(int i=0; i<pos-1; i++) {

       ptr = ptr.getNext();

     }

     retVal = ptr.getNext().getValue();

     if (pos == size-1) { // Is it the last element?      

       tail = ptr;

       tail.setNext(null);

     } else {

       ptr.setNext(ptr.getNext().getNext());

     }

     

     size--;

     return retVal;

  }  

   

  // finds and returns the position of find, or -1 if not found

  public int findNode(Integer find)

  {

     ListNode ptr = head;

     for(int pos=0; pos<size; pos++) {

       if (ptr.getValue() == find) {

         return pos;

       }

       ptr = ptr.getNext();

     }

     return -1;

  }  

   

  // rotates the list by placing the first element at the end

  public void rotate()

  {

     addLast(removeFirst());

  }

   

  // returns the list of values in the LinkedList

  public String toString()

  {

     String output = "";

     ListNode iter = head;

     while(iter != null) {

       output += String.format("%d ", iter.getValue());

       iter = iter.getNext();

     }

     return output;

  }

         

}

Explanation:

Enjoy. Linked list are always more complex than you expect. It is a good exercise to try once, then start using libraries. Life is too short to debug linked lists!

7 0
3 years ago
Why is compression a "hard problem" for computers? draw on your own experience compressing text with the text compression widget
mestny [16]

Compression in computer terms is a process of re-encoding binary data into a form that uses lesser bits than the original data. It helps save storage capacity, decrease cost for network and hardware bandwidth and speeds up file transfer. 

Since it involves replacing symbols for larger patterns of data, it can be a “hard problem” for computers because it becomes hard to find out whether or not the compression found is optimal. By optimal, I mean, if you kept on trying, would it get better?

I once had an experience compressing an assigned poem that was given as a class assignment. I realized how progressively easy it was compressing, but at a certain point, the dictionary and the scale tips started to get so big that I lost the benefit of having it.

It is difficult to know when to stop and difficult as well to verify when you have compressed it the most because it would take an unreasonable amount of time. However, you can use “heuristic” to identify some rules when the solution becomes good enough.

4 0
4 years ago
PLEASE HELP I WILL GIVE BRAINLIEST IFFFF CORRECT!!!!! Kyra needs help deciding which colors she should use on her web page. What
Cloud [144]

Answer:

Storyboarding

Explanation:

5 0
3 years ago
Read 2 more answers
Other questions:
  • github Portfolio Balances An investor opens a new account and wants to invest in a number of assets. Each asset begins with a ba
    11·1 answer
  • A(n) ____ is a collection of one or more program statements combined to perform some action
    14·1 answer
  • Which of the following must be included in the disaster recovery plan? Select one: a. Business functions b. Critical support fun
    12·1 answer
  • U.S. cybersecurity experts and government officials are increasingly concerned about breaches from __________ into corporate net
    15·1 answer
  • The first thing you should select if you're using an Address Block or Greeting Line is
    11·1 answer
  • You are troubleshooting a mobile device with no sound output from the headset or external speakers.
    6·1 answer
  • A wireless networking technician has completed a survey of a wireless network and documented the detected signal strengths in va
    6·1 answer
  • A multi-national retail company has multiple business divisions with each division having its own AWS account. The engineering t
    9·1 answer
  • When you install the ipam server feature you will be prompted to install which other features? (choose all that apply.)
    11·1 answer
  • Complete each sentence. To add a graphic to a Word document, start by clicking the tab. Next, click . Then, navigate to the grap
    14·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!