----------- represents physical and tangible components of the computer. A) Software. B) Hardware. C) Peripherals. D) Firmware.

Answers


Related Questions

Improvements in technology make the world seem larger to people.a. Trueb. False
Which keys have small bumps on them that tell you where to rest your index fingers? g and h f and j r and u v and n
Graphics you can select to reinforce the goal of your document include ____.a. pictures c. shapes b. logos d. all of the above
The e-mail address of the main recipient of an e-mail belongs in which field?A. Attachment B. CC C. Subject line D. TO
How is science and technology related?

To create a cover letter to send to potential employers along with a resume, what software program should you use?

Answers

Sending letters is easier when an individual is using an email. Emails are very easy to access, they can be sent twenty four / seven (24/7) and can also be received 24/7. Examples of email programs are yahoo and google websites.

I need help with this python exercise:Verify User:

The final listing for remember_me.py assumes either that the user has already entered their username or that the program is running for the first time. We should modify it in case the current user is not the person who last used the program.

Before printing a welcome back message in greet_user(), ask the user if this is the correct username. If it’s not, call get_new_username() to get the correct username.

Also, use a check_username() function to prevent any nested if statements from occurring in greet_user()

Answers

No prob. Let's go over the Python code,

Here's your complete Python program with the added function `check_username()`:

```

import json

filename = 'username.json'

def get_stored_username():

   try:

       with open(filename, 'r') as f:

           username = json.load(f)

   except FileNotFoundError:

       return None

   else:

       return username

def get_new_username():

   username = input("What's your username? ")

   with open(filename, 'w') as f:

       json.dump(username, f)

   return username

def check_username():

   username = get_stored_username()

   if username:

       correct = input(f"Are you {username}? (y/n) ")

       if correct.lower() == 'y':

           return username

   return get_new_username()

def greet_user():

   username = check_username()

   print(f"Welcome back, {username}!")

greet_user()

```

Remember to call `greet_user()` to start the whole shebang. Let me know if anything needs clearing up!

Jeremy has been asked by his manager to begin drafting a report on last year sales figures when he’s midway through the report a co-worker stops by and asks if Jeremy will help him with a problem she has on her project Jeremy also needs to respond to number of emails before the end of the day he is able to accomplish all these tasks which positive workplace behavior has he demonstrated

Answers

Answer:

Adaptability.

Explanation:

because he was being ASKED to do it if he wasn't asked and did it, it's initiative.

Answer:

Time management.

Explanation:

When data are normalized, attributes in the table depend only on the secondary key?

Answers

False
They depend only on the secondary key and not the primary key. Normalization analyzes and reduces a relational database toits streamlined form for min redundancy, and data integrity. A primary keyuniquely identifies all table records. They typically appear as columns in arelational DB.



______ define the primary functions of a server. A server with the Web Server (IIS) role installed is colloquially referred to as a(n) ________, no matter what other functions it might perform.

Answers

Answer:

The correct answer to the following question will be "Roles" and "Web server"

Explanation:

A web server seems to be a device that keeps software from the server as well as the feature or component folders from a website. This is hooked up to the web and facilitates the sharing of stored information with certain network linked computers.

  • Application roles apply to the functions the server or software will perform on your network— functions including a web server, a DHCP, file server or a DNS.
  • A website built with either the IIS function is responded to as either Web server in technical or common terms.

Dot Notation can be used with lower(), upper() or str() string methods. true or false

Answers

Answer:

The answer is "True".

Explanation:

Dot notation is a part of the programming language. This notation includes Python and other oops language to look in front of the point to execute code.

  • This may access the specific version of a specific function, which is specified in a different class or section, using dot notation.
  • This notation is used with a String method or string object that is immutable. This means that after constructing, they can not be modified.
  • To access any member of an object we use dot notation. That's why this statement is true.