14. Video game legend Shigeru Miyamoto designed all EXCEPT which of the following games?
a) Donkey Kong
b) Mario Bros
c) The Legend of Zelda
d) Pac-Man

Answers

Answer 1
D pac man hope im right

Related Questions

The variable strFirst's scope is _____.

Answers

pretty sure it’s d, hope this helps

Answer:

- the usernameMaker function

Explanation:

When you look at the code, you can see it's located alongside the usernameMaker. It it only utilized then, therefore being it's scope. For reassurance, it's also correct on Edge.

I hope this helped!

Good luck <3

Which tab can be used to change the theme and background style of a presentation?
O Design
O Home
O Insert
O View

Answers

Answer:

Design

Explanation:

seems the most correct one..

I would say design as well.

I need help
I am thinking about coming out to my mom because we are going to the store today and I will be in the car, I dont know if I should or not

Answers

Answer:

do it! you will have to one day so why not now? hopefully she will understand and say nice things as well and be like mom ive

been thinking a lot and i really want to tell you something. Explanation:

Answer:most likely she is your parent that you live with so she might already know but has not said anything it also depends her personality but if your ready and know or think she would not hate you forever go for it

Explanation:

Two character strings may have many common substrings. Substrings are required to be contiguous in the original string. For example, photograph and tomography have several common substrings of length one (i.e., single letters), and common substrings ph, to, and ograph as well as all the substrings of ograph. The maximum common substring length is 6. Let X = X122 . Im and Y = yıy2 - - • Yn be two character strings. Using dynamic programming, design an algorithm to find the maximum common substring length for X and Y using dynamic programming. Please follow the general steps for designing a dynamic programming solution as in Q1 (other than the actual programming part).

Answers

Answer:

Explanation:

The following function is written in Java. It takes two strings as parameters and calculates the longest substring between both of them and returns that substring length.

import java.util.*;

class Test

{

   public static void main(String[] args)

   {

       String X = "photograph";

       String Y = "tomography";

       System.out.println(X + '\n' + Y);

       System.out.println("Longest common substring length: " + longestSub(X, Y));

   }

   static int longestSub(String X, String Y)

   {

       char[] word1 = X.toCharArray();

       char[] word2 = Y.toCharArray();

       

       int length1 = X.length();

       int length2 = Y.length();

       int substringArray[][] = new int[length1 + 1][length2 + 1];

       int longestSubstringLength = 0;

       

       for (int i = 0; i <= length1; i++)

       {

           for (int j = 0; j <= length2; j++)

           {

               if (i == 0 || j == 0)

                   substringArray[i][j] = 0;

               else if (word1[i - 1] == word2[j - 1])

               {

                   substringArray[i][j]

                           = substringArray[i - 1][j - 1] + 1;

                   longestSubstringLength = Integer.max(longestSubstringLength,

                           substringArray[i][j]);

               }

               else

                   substringArray[i][j] = 0;

           }

       }

       return longestSubstringLength;

   }

}

The Basic premise of____is that objects can be tagged, tracked, and monitored through a local network, or across the Internet.
The basic premise of
a. artificial intelligence
b. intelligent workspaces
c. the Internet of Things
d. the digital divide

Answers

Answer:

C.

Explanation:

Internet of things

The Basic premise of the Internet of Things is that objects can be tagged, tracked, and monitored through a local network, or across the Internet option (c) is correct.

What is IoT?

The term "Internet of things" refers to actual physical items that have sensors, computing power, software, and other innovations and can link to those other systems and gadgets via the Internet or other communication networks and share files with them.

As we know,

Using a local network or the Internet, things may be identified, tracked, and monitored is the fundamental tenet of the Internet of Things.

Thus, the Basic premise of the Internet of Things is that objects can be tagged, tracked, and monitored through a local network, or across the Internet option (c) is correct.

Learn more about the IoT here:

https://brainly.com/question/25703804

#SPJ2

Taran is concerned with the security of his macros in a database. Which security option could he use to provide protection?

digital signatures
hide database objects
start-up options
secure VBA code

Answers

Answer:security VBA code

Explanation:

Write an algorithm (pseudo-code) that takes an unsorted list of n integers and outputs a sorted list of all duplicate integers. There must be no duplicates in the output list, also the output list should be a sorted list. The algorithm must run in O(n) time. Show your analysis of the running time. Note: Assume that inputs are integer values from 0 to 255. (Hint: use the concept that being used in the separate chaining)

Answers

Answer:

brainliest if it did help you

Explanation:

Given array : A[0...n-1]Now, create a count array Cnt[0...n-1]then, initialize Cnt to zero

for(i=0...n-1)

Cnt[i]=0 ---------O(n) time

Linearly traverse the list and increment the count of respected number in count array.

for(i=0...n-1)

Cnt[A[i]]++; ---------O(n) time

Check in the count array if duplicates exist.

for(i=0...n-1){

if(C[i]>1)

output (i); -----------O(n) time

}

analysis of the above algorithm:

Algorithm takes = O(1 + n + n + n)

                           = O(n)          

//java code

public class SortIntegers {

  public static void sort(int[] arr) {

    int min = arr[0];

    int max = arr[0];

    for (int i = 0; i < arr.length; ++i) {

      if (arr[i] > max) {

        max = arr[i];

      }

      if (arr[i] < min) {

        min = arr[i];

      }

    }

    int counts[] = new int[max - min + 1];

    for (int i = 0; i < arr.length; ++i) {

      counts[arr[i] - min]++;

    }

    for (int i = 0; i < counts.length; ++i) {

      if (counts[i] > 1) {

        System.out.print((i + min) + " ");

      }

    }

    

    System.out.println();

  }

  public static void main(String[] args) {

    sort(new int[] { 5, 4, 10, 2, 4, 10, 5, 3, 1 });

  }

}

Other Questions
Which of the following sets of numbers could not represent the three sides of a righttriangle?{20, 48,52} {40, 75, 85} {14, 47,50}{13, 84, 85} how does carbon dioxide react with starch in plants? In 2002, the manufacturers of M&M's surveyed people from around the world and asked them to vote for a new color: purple, aqua, or pink. In the United States, 42% of those who voted said purple, 37% said aqua, and 19% said pink. What's the probability that a randomly picked survey respondent from the United States preferred purple or pink? helppppppppppppppppppppppppppppppppppppppppppppppppppp The probability that the patient recovers from a rare deadly disease is 40% and failure to recover is 60%.If 15 people contracted this disease what is the probability that a. 5 will survive? b. 8 will survive? c.12 will survive?(complete solution) Choose an influential figure of Asian American/Pacific Islander heritageweve provided some suggestions below to help you, but feel free to choose someone else if youd prefer!Research that persons life and accomplishments. Jot down any details that you found interesting, impressive, or surprising.Write 12 paragraphs sharing what you learned about that persons life, accomplishments, and contribution to society. Help plz asap. DONT GIVE LINKS What else do I do? (btw I'm The one with the black and white pfp! What is the measure of ZB?A34B[?] degreesEnter HelpppppppppppppppppWrite a story using this wordsmail male minor miner one won pain pane pause paws piece peace please help, the answer below is a option but i need a answer for the question Matching the following terms with the correct definition.Question 1 options:search enginessocial mediadigital televisionsatellitestelevision setsAdvanced Research Projects AgencyArtificial IntelligenceWorld Wide Web1. Devices that can receive audio and visual signals.2. Machines launched into space to orbit the earth.3. Websites in which people type terms and names.4. Created by Dwight D. Eisenhower, it developed new technology.5. Device using digital signals to transmit improved broadcast images.6. Site that allows people to find and connect with others online.7. A network of websites.8. Machines that can learn like humans. how is hydro electricity produced step by step explanation Harry received a package for his birthday. The package weighed 350,000 centigrams. Select the conversions that are equivalent to 350,000 centigrams. Select all that apply.35 kilograms 3,500 decigrams 350 dekagrams 3,500 grams PLEASE ANSWER PLEASE A box holds 12 markers. Nan takes out 6. Then she puts 2 back. Are there enough markers in the box for Fen to take out 10? Pls help with this its 3:44 AM for me, Im in my study room trying to figure out how to solve this and I still didnt finish My math work cuz I didnt know howw ( due tomorrow ) and its getting rlly late so can u guys help me?? ty Pls help with trig A different pack has 72 cards.5/9 are yellowWork out the number of yellow cards. brainliest for brainliest anyone down for trade u make the question Describe your virtual trip on the Silk Road.