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
Ulleksa [173]
3 years ago
7

One who is trained in math, science and physics in order to work in a branch of engineering

Engineering
2 answers:
slava [35]3 years ago
8 0
Mechanical engineer I’m pretty sure
yanalaym [24]3 years ago
8 0
Yes it is mechanical engineering
You might be interested in
Write a function: def solution (S) that, given a string S of letters "L" and "R", denoting the types of shoes in line (left or r
denpristay [2]

Answer:

Please look at attachment. Thanks

3 0
3 years ago
Read 3 more answers
Describe how gene therapy can be a social issue and give rise to moral, ethical and legal debates. Justify your response in two
den301095 [7]

Answer: stigmatism and discrimination

Explanation:

Knowledge of genetic risks can lead to potential social and psychological consequences for the individual. Socially, knowledge from genetic tests may lead to stigmatization and discrimination within the community.

8 0
3 years ago
HELP ASAP PLEASE!!! this is for peer counsiling
Fofino [41]

Explanation:

We can do another country like Spain and Mexico

Take what you need ok?

The Spanish language extends far beyond Spain and Mexico. One of the top five languages spoken worldwide, there are twenty official Spanish-speaking countries. Within each country or region, however, there are different dialects and varieties, making Spanish one of the most diverse languages in the world. With this great diversity comes a valid business question: Is there a “universal” or “proper” Spanish that I can use for my global business?

Linguistically speaking, the short answer: no. There is no such thing as a “better” Spanish since every dialect is unique and correct in its uniqueness. However, from a marketing point of view, the question now becomes: Is it really necessary to translate and localize for every single Spanish dialect?

Again, the answer is (generally) no. But it all depends on your target Spanish-speaking markets. If you want to reach customers in places like Peru, Argentina, or Puerto Rico, you’ll likely need to translate your content with these variations in mind.

The key is to find variations in vocabulary and grammar where Spanish is spoken and think about how they might influence your particular content. One obvious difference between Spanish in Spain and in Latin America is with the pronouns for “you.” In Latin American Spanish you don’t use the informal pronouns Tú (singular) and Vosotros (plural) as you would in Spain. Instead, the pronouns Usted and Ustedes are used for all situations. In Spain, these pronouns are only used to address somebody formally.

Of course, many people think that there are only distinctions between European Spanish and Latin American Spanish. But because every Spanish-speaking country has developed differently, this simply isn’t true. You have to take into consideration each country’s individual culture, politics, technology, and economy. These factors have great impact on the language and can make the same words mean something quite different when crossing a border.

The Influence of History

For example, some countries in South America, like Argentina or Chile, might see themselves as more European than Latin since they have primarily Spanish and Italian ancestry. The Spanish there reflects this difference: the word bunga (pickpocket) used in Chile and Argentina originated from the Italian word pungia (pocket). Argentina’s word for gun, bufoso, also originated from the Italian word buffare. But then there are some local dialects inside Peru where many Japanese and Chinese words have been Hispanicized, such as: ocha (a hot infusion), matchi (a match), and Chifa (the Peruvian name for Chinese restaurants that comes from the Chinese term 饎飯, “chi faan”, meaning “to eat rice.”) These words reflect the influence of Asia on the local culture there.

You also need to be careful when using political, ideological, and legal terminology because not all Spanish-speaking countries are ruled by the same type of government. Spain, for instance, has a constitutional monarchy while Cuba is communist. Differences in power structures make for differences in terms in Spanish, some of which don’t even have a rough equivalent in another Spanish-speaking country.

What’s in a Name?

You also need to consider that products can have completely different names depending on the country. Just think of ‘truck” and “lorry” with British and American English. Take the word “computer.” In Spain “computer” translates to ordenador, but in most Latin American countries the word is computadora.

Thinking about spreading your business through multiple Spanish-speaking countries? Be sure to go beyond translation and localize the content. Localization along with translation allows you to address the right audience from the beginning. Customers buying a coche in Spain want to come home with a car, but in Mexico, they’re in the market for baby strollers, not a family vehicle. Catching these differences before launching a campaign will save you and your Spanish-speaking customer’s confusion, no matter where your company ends up.

6 0
2 years ago
Read 2 more answers
When Andrew began doing more residential home inspections than commercial building inspections, he found that his knowledge tran
inessss [21]

Answer:

what are the answers

Explanation:

7 0
3 years ago
Create a package named one_dimensional_array and write a class that completes the following "OneDimensionalArrays" class. You wi
yan [13]

Answer:

The filled in codes are

1) private static int[] arr;

2)  int arr[] = new int[size_of_array];

        int increment = 100;

        for (int i = 0; i < size_of_array; i++) {

       arr[i] = increment * i;

       }

      return arr;

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

      System.out.println(myArray[i]);

4)  OneDimensionalArrays result = new OneDimensionalArrays();

    result.createIntegers(num);

    result.printArray(arr);

Explanation:

Create a package named one_dimensional_array and write a class that completes the following "OneDimensionalArrays" class. You will complete the class by filling in code wherever you see the comment:

//******* FILL IN CODE *********

import java.util.Scanner;

public class OneDimensionalArrays {

   

   int[] createIntegers(int size_of_array)

   {

      //*******  FILL IN CODE *********

      // Your code will create an array of ints as large as specified in size_of_array

      // Fill the array in with the values: 0, 100, 200, 300, ....

      // Return the array that you just created

   }

   void printArray(int[] myArray)

   {

      //*******  FILL IN CODE *********

       // Print out your array with one number per line.  Get the size of the

       // array from the "myArray" parameter (no hard coding the size)

   }

   public static void main(String[] args) {

       Scanner keyboard = new Scanner(System.in);

       

       System.out.println("Enter size of array to create: ");

       int num = keyboard.nextInt();

       //*******  FILL IN CODE *********

       // Construct an instance of the OneDimensionalArrays class

       // Using this object instance, call createIntegers to create

       // an array of integers.  Don't forget to save the results

       // Then call the printArray method to print out the contents

       // of your array.

       }

}

Completed Code when filled in looks this way below:

import java.util.Scanner;

public class OneDimensionalArrays {

  private static int[] arr;

  int[] createIntegers(int size_of_array) {

       int arr[] = new int[size_of_array];

       int increment = 100;

       for (int i = 0; i < size_of_array; i++) {

             arr[i] = increment * i;    

       }

       return arr;

   }

   void printArray(int[] myArray) {

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

           System.out.println(myArray[i]);          

       }

   }

   public static void main(String[] args) {

       Scanner keyboard = new Scanner(System.in);

       System.out.println("Enter size of array to create: ");

       int num = keyboard.nextInt();

       OneDimensionalArrays result = new OneDimensionalArrays();

       result.createIntegers(num);

       result.printArray(arr);

   }

}

7 0
2 years ago
Other questions:
  • Two wastewater treatment plant workers (one male and one female) are exposed to hydrogen sulfide in confined spaces in the treat
    7·1 answer
  • Entropy change is evaluated using Eq. 6.2a based on an internally reversible process. Can the entropy change between two states
    14·1 answer
  • WHEN WAS THE FIRST CAR INVENTED?
    13·2 answers
  • A four-cylinder, four-stroke internal combustion engine operates at 2800 RPM. The processes within each cylinder are modeled as
    5·1 answer
  • The electric motor exerts a torque of 800 N·m on the steel shaft ABCD when it is rotating at a constant speed. Design specificat
    13·2 answers
  • Q.17) A 50-acre catchment containing cropland is converted ot a Qatar mail
    13·1 answer
  • How do people eat with there noses shut
    12·2 answers
  • Help please really fast!!
    14·1 answer
  • First real answer i’ll give Brainlyist
    12·1 answer
  • Which of the following are hazards associated with portable ladders?
    5·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!