3
5. (a) Identify some key internet search engines

Answers

Answer 1
Answer:

Answer:

google, bing,yahoo,aol

Explanation:

Answer 2
Answer: Google
Bing
MSN
Yahoo
DuckDuckGo
Thank You!

Related Questions

Select the true statement(s) regarding a virtual circuit. a. both analog and digital networks take advantage of the virtual circuit concept b. virtual circuits require the assignment of dedicated physical links during network connection c. regarding the efficient use of physical links, virtual circuits are more efficient than analog circuits d. both a and b are true statements"
In a company you are in charge of system maintainance. Justify with 5 reasons why your role is key​
DSL is the abbreviation for?data service linedigital subscriber linedata subscriber linedigital service linenone of the above
3. If B3=6 and D5=8, what would the following function return? IF(B3>D5, "Closed", D5-B3) *A. "Closed"B. -2C. "Open"D. +2
Consider the following definition of a recursive method. public static int mystery(int[] list, int first, int last) { if (first == last) return list[first]; else return list[first] + mystery(list, first + 1, last); } Given the declaration int[] alpha = {1, 4, 5, 8, 9}; What is the output of the following statement? System.out.println(mystery(alpha, 0, 4)); a. 1 b. 18 c. 27 d. 32

So, I have strict parents & need help, if u don’t know how to fix this after u read it, leave. I don’t want u getting points for nothing I’m deleting ur answer if u do it for points. Anyways, I want to get Spotify on my phone, but it says “Enter the password for (my email)”. How do I sign back into it if I don’t know the password. My dad has the password, but I don’t want to get in trouble for stealing his phone to fix mine. Please help, I’ll give the brainliest!

Answers

Well if you forgot your password you can click "Forgot Password" at the bottom and it should ask you some questions and send you an email with the password

You can click forget password and it will email a link to re-set your password. Or you can always ask someone to help you login.

When a JSP page is compiled, what is it turned into?? Applet

? Servlet

? Application

? Midlet

Answers

Answer: Servlet

Explanation: JSP page compilation is the process of compiling of the file before it can be turned towards the live server .There is a request that is made towards the JSP page  then is compiled into a JSP servlet. Before the execution of the JSP program, it is turned in to a JSP servlet .JSP is a program that work on the server side and reduce the work load of the developers.

An employee’s total weekly pay equals the hourly wage multiplied by the total number of regular hours, plus any overtime pay.Overtime pay equals the total overtime hours multiplied by 1.5 times the hourly wage.

Write a program that takes as inputs the hourly wage, total regular hours, and total overtime hours and displays an employee’s total weekly pay.

Below is an example of the program inputs and output:

Enter the wage: $15.50
Enter the regular hours: 40
Enter the overtime hours: 12

The total weekly pay is $899.0

Answers

Written here is a Python program that calculates the total weekly pay for an employee based on the given inputs:

python

# Get inputs from the user

hourly_wage = float(input("Enter the wage: $"))

regular_hours = float(input("Enter the regular hours: "))

overtime_hours = float(input("Enter the overtime hours: "))

# Calculate total weeklypay

regular_pay = hourly_wage * regular_hours

overtime_pay = 1.5 * hourly_wage * overtime_hours

total_weekly_pay = regular_pay + overtime_pay

# Display the result

print(f"The total weekly pay is ${total_weekly_pay:.1f}")

How to use the code

Copy and paste this code into a Pythoninterpreter or a script file, and run it. It will prompt you to enter the hourly wage, regular hours, and overtime hours, and then it will calculate and display the total weekly pay based on the given formula.

In the example you provided, the result was rounded to one decimal place. If you want a different level of precision in the output, you can adjust the formatting in the `print` statement accordingly.

Learn more about Program at:

brainly.com/question/30783869

#SPJ3

wage = float(input("Enter the wage: $"))

regular_hours = float(input("Enter the regular hours: "))

overtime_hours = float(input("Enter the overtime hours: "))

print(f"The total weekly pay is ${(regular_hours * wage) + ((wage*1.5) *overtime_hours)}")

I hope this helps!

In this chapter, you learned that although a double and a decimal both hold floating-point numbers, a double can hold a larger value. Write a C# program named DoubleDecimalTest that declares and displays two variables—a double and a decimal. Experiment by assigning the same constant value to each variable so that the assignment to the double is legal but the assignment to the decimal is not.

Answers

Answer:

The DoubleDecimalTest class is as follows:

using System;

class DoubleDecimalTest {

 static void Main() {

     double doubleNum = 173737388856632566321737373676D;  

    decimal decimalNum = 173737388856632566321737373676M;

   Console.WriteLine(doubleNum);

   Console.WriteLine(decimalNum);  }}

Explanation:

Required

Program to test double and decimal variables in C#

This declares and initializes double variable doubleNum

     double doubleNum = 173737388856632566321737373676D;

This declares and initializes double variable decimalNum (using the same value as doubleNum)

     decimal decimalNum = 173737388856632566321737373676M;

This prints doubleNum

   Console.WriteLine(doubleNum);

This prints decimalNum

   Console.WriteLine(decimalNum);

Unless the decimal variable is commented out or the value is reduced to a reasonable range, the program will not compile without error.

_ is an important management tool that is used to monitor and manage that contract and/or project

Answers

Answer:

Earned Value Management (Even)

Explanation:

Even is the best management tool for monitoring the performance of a project by emphasizing the planning and integration of program cost.

Travis and Craig are both standard users on the network. Each user has a folder on the network server that only they can access. Recently, Travis has been able to access Craig's folder.This situation indicates which of the following has occurred?

Answers

C. A misconfiguredaccess control. The fact that Travis is able to access Craig's folder indicates that the access control has been misconfigured, allowing Travis to gain access to datahe is not authorized to view.

Misconfigured Access Control Breach on Network Server

This situation indicates that a misconfigured access control has occurred. It appears that Travis has been granted access to Craig's folder, which he should not have access to. This misconfiguration of the access controlsettings may have been an accidental or intentional action taken by someone with the necessary permissions.

Regardless of the cause, this misconfiguration has enabled Travis to access Craig's data, which is a serious security breach and needs to be addressed immediately. The proper security protocols need to be put in place to ensure that only authorized users can access the necessary data and to prevent any further breaches of security.

Since the question isn't complete, here's the full task:

Travis and Craig are both standard users on the network. Each user has a folder on the network server that only they can access. Recently, Travis has been able to access Craig's folder.

This situation indicates which of the following has occurred?

Choose the right option:

  • A. A data breach
  • B. An intrusion
  • C. A misconfigured access control
  • D. An unauthorized user login

Learn more about Network: brainly.com/question/8118353

#SPJ4

Other Questions