What kind of programming language allows you to use a vocabulary of reasonable terms such as "read," "write," or "add" instead of the sequence of on/off switches that perform these tasks?

Answers

Answer 1
Answer:

Answer:

High level programming language

Explanation:

There are two groups of programming software:

1. High level programing: Here you can program using almost natural languaje and making complex instructions on a simpler way. The advantages is faster programming and the ability to do complex programs. In this example we can use languages like C/C++, visualbasic.

2. Low level programming: This type of programing is near to machine language (binary - '0' and '1'), and usually is used to obtain full performance of the processor. But requires a high level of expertise from the programmer and is complex to write simple task, like "store a variable". Example: Assembler languague.


Related Questions

When do images or graphics in Microsoft Word hurt the document rather than help
In the default setting on PowerPoint how many changes can the undo button make
What dose a bios system do?
Which of the following recently developed technologies has NOT greatly increased the speed of information dissemination?a. smartphonesb. e-mailc. typewriterd. teleconferencingPlease select the best answer from the choices provided.
People express more. often through the ___. language than written language

Which of the following are webpage components of Power Apps Portals? A) Web Forms B) Entity Lists C) Knowledge Base D) Case Management E) Blogs F) All of the above

Answers

F all of the above((:

Name your U.S. Represenative

Answers

Just to let you know, this question does not belong in the conputers and technology, it might git in better with geography. Also the answer is (Paul Ryan)

Gary is configuring a Smartphone and is selecting a wireless connectivity method. Which approach will provide him with the highest speed wireless connectivity?

Answers

Answer:

Wi-Fi

Explanation:

Wi-Fi is the name of a wireless networking technology that uses radio waves to provide wireless high-speed Internet and network connections.

Cheers

One disadvantage of online information sharing is that:A. search engines do not help people find solid information.
B. we all have to learn how to cite information.
C. it can spread harmful scams or false information.
D. it cannot improve how we get or send information.

Answers

One disadvantage of online information sharing is that it can spread harmful scams or false information. Thus, the correct option for this question is C.  

What are the disadvantages of online information?

The disadvantages of online information are as follows:

  • They significantly cause addiction and distractions.
  • It steals personal information and is used for identity theft.
  • It also spreads harmful scams or false information.

According to the context of this question, online information typically improves how we get or send information. This mechanism generally enhances the advantages of online information. While the disadvantage of sharing online information is that it can spread harmful scams or false information.

Therefore, the correct option for this question is C.  

To learn more about Online information, refer to the link:

brainly.com/question/14042779

#SPJ5

Answer: C

Explanation:

Microsoft Excel ______ give a visual representation of data that can make the data easier to understand.worksheets
workbooks
spreadsheets
ch21

Answers

spreadsheets......................

Answer:

Charts

Explanation:

i dont know why but odyssey ware says it is

A pincode consists of N integers between 1 and 9. In a valid pincode, no integer is allowed to repeat consecutively. Ex: The sequence 1, 2,1, 3 is valid because even though 1 occurs twice, it is not consecutive. However, the sequence 1, 2, 2, 1 is invalid because 2 occurs twice, consecutively. Utilize a for loop and branch statements to write a function called pinCodeCheck to detect and eliminate all the consecutive repetitions in the row array pinCode. The function outputs should be two row arrays. The row array repPos contains the positions pinCode where the consecutive repeats occurs, and the row array pinCodeFix is a valid pincode with all the consecutive repeats removed in pinCode. Hint: The empty array operator [] is will be helpful to use.

Answers

Answer:

function [ repPos, pinCodeFix ] = pinCodeCheck( pinCode )

       pinCodeFixTemp = pinCode;

       repPosTemp = [];

   for i = 1:length(pinCode)

       if((i > 1)) & (pinCode(i) == pinCode(i - 1))

           repPosTemp([i]) = i;

       else

           repPosTemp([i]) = 0;

       end

   end

   for i = 1:length(pinCode)

       if(repPosTemp(i) > 0)

           pinCodeFixTemp(i) = 0;

       end

   end

   repPosTemp = nonzeros(repPosTemp);

   pinCodeFixTemp = nonzeros(pinCodeFixTemp);

   repPos = repPosTemp';

   pinCodeFix = pinCodeFixTemp';

   

end

Explanation:

Let me start off by saying this isn't the most efficient way to do this, but it will work.

Temporary variables are created to hold the values of the return arrays.

       pinCodeFixTemp = pinCode;

       repPosTemp = [];

A for loop iterates through the length of the pinCode array

       for i = 1:length(pinCode)

The if statement checks first to see if the index is greater than 1 to prevent the array from going out of scope and causing an error, then it also checks if the value in the pinCode array is equal to the value before it, if so, the index is stored in the temporary repPos.

        if((i > 1)) & (pinCode(i) == pinCode(i - 1))

        repPosTemp([i]) = i;

Otherwise, the index will be zero.

         else

         repPosTemp([i]) = 0;

Then another for loop is created to check the values of the temporary repPos to see if there are any repeating values, if so, those indexes will be set to zero.

         for i = 1:length(pinCode)

         if(repPosTemp(i) > 0)

         pinCodeFixTemp(i) = 0;

Last, the zeros are removed from both temporary arrays by using the nonzeros function. This causes the row array to become a column array and the final answer is the temporary values transposed.

         repPosTemp = nonzeros(repPosTemp);

         pinCodeFixTemp = nonzeros(pinCodeFixTemp);

         repPos = repPosTemp';

         pinCodeFix = pinCodeFixTemp';