Mike logged into a shopping website and entered his username and password. Which protocol will the website use to verify his credentials?

Answers

Answer 1

Answer:

I think it is email or password


Related Questions

PLEASE HELP WILL MARK BRAINLIEST

Answers

Answer:

Ok, first what do u think their action is saying/doing, then state if it's effective or ineffective.

Explanation:

What is a value which we pass to the function to use in place of the parameter when we call it?

A. Parameter
B. Call
C. Procedure
D. Argument

Answers

Answer:
D) Argument

Explanation:
When you call a function, you pass in an argument as the input to use in the place of the parameter.

A laser printer uses...........
A. Correction fluid
B. Ink cartridge
C. Photocopy ink
D. Toner cartridge ​

Answers

Answer:

Toner cartridge

Explanation:

Difference between single dimensional array and double dimensional array​

Answers

A one-dimensional array keeps track of a single list of elements with the same data type. An array of various arrays, a list of multiple lists, or an array of numerous one-dimensional arrays are all stored in a two-dimensional array. It is a list that represents several data pieces.

The major goal of a good web information
a
retrieval system is

Answers

Answer:

Explanation:

The major objective of an information retrieval system is to retrieve the information – either the actual information or the documents containing the information – that fully or partially match the user's query.

3.10 LAB: List basics
Given the user inputs, complete a program that does the following tasks:

Define a list, my_list, containing the user inputs: my_flower1, my_flower2, and my_flower3 in the same order.
Define a list, your_list, containing the user inputs, your_flower1 and your_flower2, in the same order.
Define a list, our_list, by concatenating my_list and your_list.
Append the user input, their_flower, to the end of our_list.
Replace my_flower2 in our_list with their_flower.
Remove the first occurrence of their_flower from our_list without using index().
Remove the second element of our_list.
Observe the output of each print statement carefully to understand what was done by each task of the program.

Ex: If the input is:

rose
peony
lily
rose
daisy
aster
the output is:

['rose', 'peony', 'lily', 'rose', 'daisy']
['rose', 'peony', 'lily', 'rose', 'daisy', 'aster']
['rose', 'aster', 'lily', 'rose', 'daisy', 'aster']
['rose', 'lily', 'rose', 'daisy', 'aster']
['rose', 'rose', 'daisy', 'aster']

Answers

The program is an illustration of Python lists; lists are used to hold multiple values in a variable

The main program

The program written in Python, where comments are used to explain the code is as follows:

#This gets all required outputs

my_flower1 = input(); my_flower2 = input(); my_flower3 = input(); your_flower1 = input(); your_flower2 = input(); their_flower = input()

# This defines my_list and appends the values of my_flower1, my_flower2, and my_flower3

my_list=[my_flower1,my_flower2,my_flower3]

# This defines your_list and appends your_flower1 and your_flower2

your_list=[your_flower1,your_flower2]

# This defines our_list by and concatenates my_list and your_list

our_list = my_list+your_list

#This prints our_list

print(our_list)

# This appends their_flower to the end of our_list

our_list.append(their_flower)

#This prints our_list

print(our_list)

# This replaces my_flower2 in our_list with their_flower

our_list[our_list.index(my_flower2)]=their_flower

#This prints our_list

print(our_list)

#This removes the first occurrence of their_flower from our_list

our_list.remove(their_flower)

#This prints our_list

print(our_list)

#This removes the second element of our_list

our_list.remove(our_list[1])

#This prints our_list

print(our_list)

Read more about python lists at:

https://brainly.com/question/16397886

Which is the best explanation for why tutorials are useful?

Answers

Answer:

Tutorials are important for your learning because you can:

Solve problems in a team, develop your group skills, and get to know your peers better (which may come in handy when picking group members for group projects) Prepare for and/or review midterms and exams. Clarify any concepts that you might not understand.

Explanation:

Hope it helps

Rewrite the following pseudocode segment using a loop structure in the specified languages: k = (j + 13) / 27 loop: if k > 10 then goto out k = k + 1 i = 3 * k - 1 goto loop out: . . . a. C, C++, Java, or C# b. Python c. Ruby Assume all variables are integer type. Discuss which language, for this code, has the best writability, the best readability, and the best combination of the two.

Answers

The pseudocode is simply the prototype of the actual program in C, C++, Java, C#, Python or Ruby

The program in C++

The pseudocode written in C++ language is as follows:

#include<iostream>

using namespace std;

int main(){

    int i, j, k;

    cin>>j;

    k = (j + 13) / 27;

    while (k > 10){

    k+=1;    

    i = 3 * k - 1;

    }

    return 0;

}

The program in Python

The pseudocode written in Python language is as follows:

j = int(input())

k = (j + 13) / 27

while (k > 10):

    k+=1    

    i = 3 * k - 1

The program in Ruby

The pseudocode written in Ruby language is as follows:

j = gets.chomp.to_i

k = (j + 13) / 27

while k > 10

    k = k + 1    

    i = 3 * k - 1

The code with the best writability and readability

The code with the best writability is C++ and the code with the best readability is the Ruby

The best combination of the two

The best combination of the two languages is the Python language

Read more about pseudocode at:

https://brainly.com/question/11623795

Name the test statement that can be used to test the following scenario:
The contents of the variable $TEST are equal to the string “success,” or the number 5, or the contents of the variable $RESULT.

Answers

The test statement is an illustration of conditional statements and logical operators.

The test statement is: if [[ "$TEST" == ”success” || "$TEST" == ”5” || "$TEST" == “$RESULT” ]]

How to name the test statement?

From the question, we have the following scenarios:

Determine if $TEST equals "success"Or $TEST equals "5"Or $TEST equals $RESULT

To do this, we make use of the if conditional statement and the or logical operator.

The or operator is represented with ||

Since the programming language is in php, the test statement is: if [[ "$TEST" == ”success” || "$TEST" == ”5” || "$TEST" == “$RESULT” ]]

Read more about conditional statements at:

https://brainly.com/question/24833629

Difference between centralized and decentralized processing in computer

Answers

Answer:

Centralized computing is analogous to star topology in the networks where there is n entry and n-1 exit points. We see all the computation being carried out by the pivot processor and also embed in itself a decision routine for pass on the message to other linked systems. These systems are merely the mirror whereas the computing is done by the pivot processor.

Decentralized Computing is analogous to distributed node based processing where the topology for interaction among the nodes are random and hence some times there is delay because of the orientation of nodes by since the computation is disperse, it compensates in the time in processing, storage and retrieval.

You can definitely check into IBM and Amazon Research for examples for the Centralized and Decentralized computing.
Other Questions
i need help with this i will mark BRAINLIEST and give alot of points is the sun hotter than the core of the earth What is the most likely reason why the United States would send military aid to countries controlled by dictators? to help bring an end to protests to stop a larger enemy or threat to allow dictators to gain control to take control of the government A coordinate plane with 3 points plotted at (10, 18), (14, 24), and (18, 30).Which statement describes the function through the points? Scott is 19 years old and weighs 135 lb (61.4 kg). He wants to start a weight-training program and has a goal of gaining one pound per week. Scott's recommended energy intake for weight maintenance is 40 calories per kilogram body weight. According to your answers for questions 1 and 2, how many total calories per day would Scott need to eat to meet his goal?Group of answer choices3300-35003755-38553455-44553156- 3456 3 + 2 = a + + + 1 + c = 4. 11 = d + 5 = b enter the correct 4 digit code (no spaces) 0 keep trying back next scotas the number of cobalt atoms in 4.23 moles of cobalt What is the concept of cause and effect? The width of a rectangle with area 55in^2 depends on its length. write the formula that describes the width of the rectangle as a function of its length. (screenshot attached if you need to see the problem better) An unknown fluid flows at a speed of 31 m/s. Suppose the fluid has a mass of 47 kg runs at this speed. What is the fluids kinetic energy? There is a juice bar at the gym. Fiona has a gift card that has a balance of $30. Each time shebuys a bottle of her favorite juice, $3 is deducted from her card. Chester also has a gift card.The equation y=20 - 5x represents y, the balance, in dollars, left on his card after he hasbought x of his favorite bottles of juice.Who had a greater initial amount of money on their card, Fiona or Chester? Whose balancedecreases at a faster rate every time he or she buys his or her favorite juice? Use the spacebelow for your work. Explain. Your friend leaves your house. She later calls you on her cell phone, saying that she's been driving at 60 miles an hour directly away from you the whole time and is now 60 miles away. How long has she been gone? Determine if the data are qualitative or quantitative. a rectangle has an area of 54 square inches the width of the rectangle is 9 inches what is the langth Within the ANS, the effects of the ______ division are often general and widespread, while in the _______ division the effects are more specific and local. HELP please i don't care what you put but just HELP You have learned about the five stages of postnatal development. Which of these stages interests you the most, and why? How can you learn more about that stage?please just give a sentence then i will brainless What are the four steps of the binary search algorithm A supposed "lucky coin" is to be tested to see if it is unfair, that is, the proportion of "heads" results is not 50%. It isflipped 100 times and found to land on heads only 41 times. Test the claim that the coin is unfair. Identify the vertex of this quadratic function Qu platos son parte de la gastronoma cubana? arroz con habichuelas negras llamado moros y cristianos tacos congr