PLEASE HELP ASAP!!!!!!!!

Which option describes wearable technology? A. the incorporation of technology into objects we use regularly B. rugged technology that can withstand the elements without much damage C. computing systems that derive energy from the user's biological processes D. mobile technology that is extremely portable E. extremely small and powerful computing systems

Answers

Answer 1

Answer:

A

Explanation:

Things such as watches and clothes are common items which technology is incorporated to. This includes things implanted in the body. These are all wearble technologies.


Related Questions

Which are examples of basic text structures? Check all that apply.

chronological order
random order
order of importance
comparison and contrast
cause and solution

Answers

Chronological order
Comparison

Answer:

B, D, E.

Explanation:

Which of the following would most likely be the target audience for a product
advertised on TV during Saturday morning cartoons?
A. Young adults between the ages of 17 and 25
B. Children between the ages of 5 and 12
C. Men over the age of 65
D. Women over the age of 50

Answers

Answer:

B

Explanation:

They are saturday morning cartoons. Saturday morning cartoons are meant towards an audience of young children.

I think its b if i get wrong i sorry

Choose the correct item. Check your answers in the text.
3​

Answers

Answer:

You should do that

Explanation:

You didnt say anything

Which rules should be remembered when creating formulas using nested functions? Check all that apply.
Use an equal sign at the beginning of the formula.
Use open and close parenthesis for each set of nested functions.
Use an equal sign before each function.
All arguments should be in CAPS.
Functions should be in CAPS.
Separate functions with commas.

Answers

Answer:

Use an equal sign at the beginning of the formula (A)

Use open and close parenthesis for each set of nested functions (B)

Functions should be in CAPS

Separate functions with commas

Explanation:

Answer:

A

B

E

F

Explanation:

explain logic circuit​

Answers

Computers often chain logic gates together, by taking the output from one gate and using it as the input to another gate. We call that a logic circuit. Circuits enables computers to do more complex operations than they could accomplish with just a single gate. The smallest circuit is a chain of 2 logic gates.

Logic circuits include such devices as multiplexers, registers, arithmetic logic units (ALUs), and computer memory, all the way up through complete microprocessors, which may contain more than 100 million gates. In modern practice, most gates are made from MOSFETs (metal–oxide–semiconductor field-effect transistors).

Look at the slide.

An example of a slide. There is a title. There is one main bullet entry with 3 subentries below it. There is a lot of text on the slide. There is no image. The background is dark red and the text is black.

How could the slide best be improved?

by choosing a better font
by providing more information
by using a lighter background
by enlarging the heading

Answers

Answer:

c

Explanation:

Answer:

the answer is c

Explanation:

100%

Macro photographs are what type of photographs? A. Close-up B. Telephoto C. Abstract D. All of the above

Answers

Answer:

A

Explanation:

they are close up. they are not telephoto or abstract

marco can be telephoto, but it is not nessacarily always telephoto. marco is by definition a close up photo

The code below is repetitious. What is the output of this program?
num = 3
num = num + 1
num = num + 1
num = num + 1
print(num)

Answers

Answer:

6

Explanation:

Answer:

6

Explanation:

Edge 2021

what is the purpose of the domain name system

Answers

Answer:

The Domain Name System (DNS) is a central part of the internet, providing a way to match names (a website you're seeking) to numbers (the address for the website). Anything connected to the internet - laptops, tablets, mobile phones, websites - has an Internet Protocol (IP) address made up of numbers.

Explanation:

The Domain Name System (DNS) is a hierarchical and decentralized naming system for computers, services, or other resources connected to the Internet or a private network. It associates various information with domain names assigned to each of the participating entities. Most prominently, it translates more readily memorized domain names to the numerical IP addresses needed for locating and identifying computer services and devices with the underlying network protocols. By providing a worldwide, distributed directory service, the Domain Name System has been an essential component of the functionality of the Internet since 1985.

The Domain Name System delegates the responsibility of assigning domain names and mapping those names to Internet resources by designating authoritative name servers for each domain. Network administrators may delegate authority over sub-domains of their allocated name space to other name servers. This mechanism provides distributed and fault-tolerant service and was designed to avoid a single large central database.

Which are some examples of transitional words?

look, prepare, send
next, then, finally
can't, won't, wouldn't
if, even, all

Answers

Answer:

then,next,finally

.............

Next,then,finally :).

Complete the sentence.

A security program must be user-friendly and ensure employers and customers are ______
to use the security measures

1.) afraid
2.) encouraged
3.) discouraged

Answers

Answer 2.) encouraged

Write at leaat 20 shortcuts on the Microsoft word.​

Answers

Answer:

Open a document: Ctrl + O.

Create a new document: Ctrl + N.

Save the current document: Ctrl + S.

Open the Save As window: F12.

Close the current document: Ctrl + W.

Split the window: Alt + Ctrl + S.

Copy: Ctrl+C

Paste: Ctrl+V

Cut the current selection: Ctrl + X

Copy the current selection: Ctrl + C

Paste the contents of the clipboard: Ctrl + V

Bold: Ctrl + B

Italics: Ctrl + I

Underline: Ctrl + U

Underline words only: Ctrl + Shift + W

Center: Ctrl + E

Make the font smaller: Ctrl + [

Make the font bigger: Ctrl + ]

Change text to uppercase: Ctrl + Shift + A

Change text to lowercase: Ctrl + Shift K

Insert a page break: Ctrl + Enter

Add a hyperlink: Ctrl + K

Explanation:

(JAVA PLS)

Your job in this assignment is to write a program that takes a message as a string and reduces the number of characters it uses in two different set ways. The first thing your program will do is ask the user to type a message which will be stored as a String. The String entered should be immediately converted to lowercase as this will make processing much easier. You will then apply two different algorithms to shorten the data contained within the String.

Algorithm 1

This algorithm creates a string from the message in which every vowel (a, e, i, o, and u) is removed unless the vowel is at the very start of a word (i.e., it is preceded by a space or is the first letter of the message). Every repeated non-vowel character is also removed from the new string (i.e., if a character appears several times in a row it should only appear once at that location). So for example the string "I will arrive in Mississippi really soon" becomes "i wl arv in mssp rly sn".

After applying this algorithm, your program should output the shortened message, the number of vowels removed, the number of repeated non-vowel characters removed, and how much shorter the shortened message is than the original message. The exact format in which the program should print this information is shown in the sample runs.

Algorithm 2

This algorithm creates a string by taking each unique character in the message in the order they first appear and putting that letter and the number of times it appears in the original message into the shortened string. Your algorithm should ignore any spaces in the message, and any characters which it has already put into the shortened string. For example, the string "I will arrive in Mississippi really soon" becomes "8i1w4l2a3r1v2e2n1m5s2p1y2o".

After applying this algorithm, your program should output the shortened message, the number of different characters appearing, and how much shorter the shortened message is than the original message. The exact format in which the program should print this information is shown in the sample runs.

Sample Run 1
Type the message to be shortened
This message could be a little shorter

Algorithm 1
Vowels removed: 11
Repeats removed: 2
Algorithm 1 message: ths msg cld b a ltl shrtr
Algorithm 1 characters saved: 13

Algorithm 2
Unique characters found: 15
Algorithm 2 message: 4t2h2i4s1m5e2a1g1c2o1u3l1d1b2r
Algorithm 2 characters saved: 8
Sample Run 2
Type the message to be shortened
I will arrive in Mississippi really soon

Algorithm 1
Vowels removed: 11
Repeats removed: 6
Algorithm 1 message: i wl arv in mssp rly sn
Algorithm 1 characters saved: 17

Algorithm 2
Unique characters found: 13
Algorithm 2 message: 8i1w4l2a3r1v2e2n1m5s2p1y2o
Algorithm 2 characters saved: 14

Answers

import java.util.Scanner;

public class JavaApplication54 {

   public static int appearance(String word, char letter){

       int count = 0;

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

           if (word.charAt(i) == letter){

               count++;

           }

       }

       return count;

   }

   public static void main(String[] args) {

       Scanner scan = new Scanner(System.in);

       System.out.println("Type the message to be shortened");

       String message = scan.nextLine();

       message = message.toLowerCase();

       int volCount = 0, repCount = 0, num = 0;

       char prevC = ' ';

       String vowels = "aeiou";

       String newMessage = "";

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

           char c = message.charAt(i);

           

           if (vowels.indexOf(c) != -1 && prevC == ' '){

               newMessage += c;

           }

           else if (vowels.indexOf(c) == -1 && prevC != c){

               newMessage += c;

           }

           else if (vowels.indexOf(c) != -1){

               volCount ++;

           }

           else{

               repCount++;

           }

            prevC = c;

       }

       System.out.println("Algorithm 1");

       System.out.println("Vowels removed: "+volCount);

       System.out.println("Repeats removed: "+repCount);

       System.out.println("Algorithm 1 message: "+newMessage);

       System.out.println("Algorithm 1 characters saved: "+(message.length() - newMessage.length()));

       

       String uniqueMessage = "";

       

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

           char w = message.charAt(i);

           if (uniqueMessage.indexOf(w)== -1 && w!=' '){

               uniqueMessage += appearance(message,w)+""+w;

               num++;

           }

       }

       System.out.println("Algorithm 2");

       System.out.println("Unique characters found: "+num);

       System.out.println("Algorithm 2 message: "+uniqueMessage);

       System.out.println("Algorithm 2 characters saved: "+(message.length() - uniqueMessage.length()));

   }

   

}

I hope this helps!

Which of the following is something that an Information Technology (IT) professional would do?


Collect and utilize data


Create and improve software


Manage grades and enrollments


Build and repair computers

Answers

Answer:

Probably the last one, build and repair computers.

What are the key components to planning a presentation?
Check all that apply:
audience
conclusion
methods
purpose
thesis
title
topic

Answers

1,3,4,7 just took on edge

Answer:

1 3 4 7

Explanation:

Because all residential electrical outlets are never used at the same​ time, the NEC​® allows a diversity or____ nothing to be used when sizing the general lighting load for electric services.

Answers

Answer:

Conincident factor        

Explanation:

Coincident factor is derived as the Maximum Demand of System divided by the Sum of Individual maximum Demands.

Diversity factor is the proportion or percentage of the total of the peak demands of each unit within the various subdivisions of a system in relation to  the total demand of the  whole system, or any section of the system.

After calculating the diversity factor the result must be greater than 1.

Cheers

The coincident factor is calculated by dividing the system's maximum demand by the sum of constituent maximum demands.

This diversity factor is the percentage or proportion of peak demand of each unit within the various divisions of a system in proportion to the overall demand of the overall network or any segment of the network.This result of computing the diversification factor has to be higher than 1.Since all household plug sockets are seldom operated at the same time, the NEC enables a diversity or coincidental factor to be used when measuring the general illumination load for electric services.

Therefore, the final answer is "coincident factor".

Learn more:

brainly.com/question/12579961

Nina is learning about clouds in her science class so she puts the phrase "types of clouds" in a search engine. In which step of a crawler-based search engine is this phrase most important?

A) indexing

B) crawling

C) ranking

D) retrieving

Answers

Answer: d. Retrieving

Explanation:

A crawler-based search engine is a type of search engines whereby a "crawler" or "spider' is used in searching the Internet. The function of the spider or the crawler is to help dig through the web pages, and then pull out the keywords relating to what the person typed in the search engine. Examples include Yahoo and Google.

Based on the information given in the question, the step of a crawler-based search engine that this phrase is most important is the retrieving stage. At that stage, the person is trying to get some information relating to what was typed in the search engine.

What is the definition of a nested function?
O a cell that is used in two different functions
O arguments defined inside of two functions
O arguments defined inside of arguments inside of a function
O a function defined inside of another function

Answers

Answer:

d

Explanation:

Answer:

D. a function defined inside of another function

Explanation:

hope this helps :)

Dr. Thomas likes to follow up with her patients to make sure they were happy with their care. She sends all patients an email encouraging them to call her office with any questions or to schedule future appointments. Dr. Thomas chooses email as the for this communication.

Answers

Answer:

lean media

Explanation:

Dr. Thomas uses email as a medium of lean media to convey messages.

Lean media may be defined as the source of conveying messages that are short or of lean capacity. It is meant for instant messages and message and information that is not considered to be of out most importance. Whereas a rich media is a video chat or face to face communication.

Dr. Thomas send emails to her patients to follow up with them and also encourages her patients to call her for appointments or any questions. She uses email as a source of lean media for this communication.

Answer:

lean media

Explanation:

8.7 Code Practice Question 3
Use the following initializer list:
w = [“Algorithm”, “Logic”, “Filter”, “Software”, “Network”, “Parameters”, “Analyze”, “Algorithm”, “Functionality”, “Viruses”]

Create a second array named s. Then, using a loop, store the lengths of each word in the array above. In a separate for loop, print on separate lines the length of the word followed by the word

Answers

I included my code in the picture below.

The for loop that can be used to loop through the array s and get the length and the word is a follows:

s = ["Algorithm", "Logic", "Filter", "Software", "Network", "Parameters", "Analyze", "Algorithm", "Functionality", "Viruses"]

for i in s:

   print(len(i), ":", i)

The variable s is used to store the array of strings

The for loop is used to loop through the array .

The length of each string and the string is printed out.  

When the code is run, you will get exactly like the sample Run.  

learn more: https://brainly.com/question/23800781?referrer=searchResults

Which of the following correctly describes the reason for quality customer service?

Answers

The correct answer is C. Keep existing customers and clients
Explanation:
Customer service refers to the interaction with customers and support employees in a company provide to customer to guarantee he or she has the best experience when buying one product or service. A high-quality customer service implies providing complete information to customers, and helping them before, during, and even after their process in buying or looking for information in a company. The main purpose of this is that customers feel the support from employees, and are loyal to the company which means they will go back if they need the same service or products. Thus, the reason for quality customer service is "Keep existing customers and clients".

How are computer networks connected?

Answers

Answer:Computer networks connect nodes like computers, routers, and switches using cables, fiber optics, or wireless signals. These connections allow devices in a network to communicate and share information and resources. Networks follow protocols, which define how communications are sent and received.

Explanation.

hope this helped you find what your looking for

Computer networks connect nodes like computers, routers, and switches using cables, fiber optics ,or wireless signals. These connections allow devices in a network to communicate and share info and resources

What is the next line?
>>> aDeque = deque('happy')
>>> aDeque.append('me')
>>> aDeque

deque(['happy', 'me'])
deque(['h', 'a', 'p', 'p', 'y', 'me'])
an error statement
deque(['happyme'])

Answers

Answer:

deque(['h', 'a', 'p', 'p', 'y', 'me'])

Explanation:

Answer:  B)deque(['h', 'a', 'p', 'p', 'y', 'me'])

Explanation:

Edge2021

The introduction of an academic paper must include a:

A) thesis statement

B)transition sentence

C) quotation

D) restatement

Answers

Answer:

A

Explanation:

The introduction of an academic paper must include a: Thesis Statement

Answer:

A.) Thesis Statement

Explanation:

You should start with a thesis statement that way your audience knows what your paper will be about. It makes a claim, directly answering a question.

Hope this helped♥

How does Python recognize a tuple?

You use brackets around the data values.
You use parentheses around the data values.
You declare myTuple to be a tuple, as in "myTuple = new tuple".
You use tuple when you create it, as in "myTuple = tuple(3, 5)".

Answers

Answer:

B) You use parentheses around the data values

Explanation:

It was C) on my end, but the answer is still the same :)

Python recognizes a tuple if you declare myTuple to be a tuple, as in "myTuple = new tuple". The correct option is C.

What is python?

Python is a popular computer programming language used to create software and websites, automate processes, and analyze data. Python is a general-purpose language, which means it may be used to make many various types of applications and isn't tailored for any particular issues.

Python is frequently considered as one of the simplest programming languages to learn for novices. Python is a wonderful place to start if you're interested in learning a programming language. In addition, it is one of the most popular.

Therefore, the correct option is C, You declare myTuple to be a tuple, as in "myTuple = new tuple".

To learn more about python, refer to the link:

https://brainly.com/question/18502436

#SPJ2

Next, let's examine what happens when you apply a style to an element that contains other elements. The body element in the HTML file contains all the elements that are displayed. Clear the existing code from the style sheet, and set the color of the body element to green. Write the code for the style change and record what you observe.

Answers

Answer:

When the body element CSS color style was changed, The color of all the text in the HTML file changed to the specified color, the same goes for font-size, font-weight, etc.

Explanation:

HTML or hypertext markup language is a markup language used in web development to implement the position and structure of the web page. It has no style, so, CSS or cascading style sheet is used to style the HTML elements in the web page.

Ha Yoon sees funny quotes on top of images frequently in her social media feed. One day, she has an idea for one of her own. Which of these websites would be most likely to help her create what she wants? Group of answer choices a PDF generator an infographic template a meme generator a digital image editor

Answers

Answer:

Digital Image Editor

Explanation:

Ha Yoon is not trying to create a meme, or a text document (PDF), so the answer must be Digital Image Editor.

i’m failing this class and i’m stuck on this one, this is the code from the last lesson:

def GPAcalc(grade, weighted):
grade = grade.lower()
dictionary = {"a":4, "b":3, "c":2, "d":1, "f":0}
if weighted == 1 and grade in dictionary:
return "Your GPA score is: " + str(dictionary[grade] + 1)
elif weighted == 0 and grade in dictionary:
return "Your GPA score is: " + str(dictionary[grade])
else:
return"Invalid"

print(GPAcalc(input("Enter your Letter Grade: "), int(input("Is it weighted? (1 = yes, 0 = no) "))))

Answers

lst=([])

def avgGPA(lst1):

   total = 0

   count = 0

   for x in lst:

       if type(x) == int:

           total += x

           count += 1

   return total/count

def GPAcalc(grade, weighted):

   grade = grade.lower()

   dictionary = {"a": 4, "b": 3, "c": 2, "d": 1, "f": 0}

   if weighted == 1 and grade in dictionary:

       lst.append(dictionary[grade]+1)

       return "Your GPA score is: " + str(dictionary[grade] + 1)

   elif weighted == 0 and grade in dictionary:

       lst.append(dictionary[grade])

       return "Your GPA score is: " + str(dictionary[grade])

   else:

       lst.append("Invalid")

       return "Invalid"

classes = int(input("How many Classes are you taking? "))

i = 0

while i < classes:

   print(GPAcalc(input("Enter your Letter Grade: "), int(input("Is it weighted? (1 = yes) "))))

   i += 1

print("Your weighted GPA is a "+str(avgGPA(lst)))

If you need me to change any code, I'll do my best. I hope this helps!

4.8 code practice question 2

Answers

Answer:

Written in Python

for count in range(88, 42,-2):

    print(count,end=' ')

Explanation:

The programming language is not stated.

However, I used python to answer the question.

First, we need to loop from 88 to 44 with a difference of -2 in each term.

This is implemented as

for count in range(88, 42,-2):

Which means to start at 88 and ends at 42 - (-2) which is 44 with an increment of -2

Next, is to print the current iterating value;

This is implemented using print(count)

However, since all values are to be printed on a line, there's a need t modify the statement as: print(count,end=' ')

Consider the following instructions for a game element: Move Forward If not at end, move forward Else stop This is an example of which type of programming structure? A Iteration B Looping с Selection D Object OPEN​

Answers

Answer:

C.

Explanation:

Other Questions
Choose the best equation below to solve this kinematics question:An aircraft has to have a final velocity of 33 m/s at the end of a runway to be able to liftoff. What acceleration rate would the plane need if it starts from rest and has a runway 240 m long?A) vf = vi +atvf = vi +atB) d =12 (vi +vf)t d =12 (vi +vf)t C) d = vit + 12at2d = vit + 12at2D) (vf)2 = (vi)2 +2ad Can someone give me the equation to all and the riddle.?! Which substances will make a salt when combined? timed During the early 1900s, the European nation whose increase in military forces and equipment alarmed other European nations was Russia. Italy. France. Germany. Which system detects information from the environment and directs the way your body responds tothis information? (4+2x)+(3+1x) simplify! What is the function of mobile electron carriers? Question 17 (5 points) Find the equation of a line passing through the point (6,-5) and parallel to the line y = 7x + 1. Oy -*x+41 y=7x - 29 Oy = 7x - 47 47 X+ 7 Question 18 (5 points) If you can walk 5.8 miles in 4.3 hours, how many minutes does it take to walk 0.64 miles? Round to 1 decimal. Explain how to solve systems of linear equations by substitution. Factor 3(x^2)+6(x^3) completely y+1=3(x-4) Which is the ordered pair to the solution?? Add my sc:v_renae2020 Colvert the decimal to percent: 0.272 Bridget was thinking of a number. Bridget doubles it, then adds 15 to get an answer of 16.4. What was the original number? Help meee pleasee!!A private university is accepting applications for enrollment. Out of 2,000 applicants, 950 meet the GPA requirements, 600 volunteer for community service, and 250 both meet the GPA requirements and volunteer. Which statement correctly describes the probability that an applicant meets the GPA requirements or volunteers? Select all that apply.The Anasazi are known for:A)pottery with intricate black designsB)Hopi hoop dancesC)baskets woven so tightly they could carry waterD)towering pueblosE)cave dwellings What is the y coordinate in the solution to the following solution? y = 3 x5x + 5y = 20 HELP ASAP WILL GIVE BRAINIEST AND 15 POINTS. Predict what would happen if you were to put a TEA BAG INTO BOILING WATER AND EXPLAIN WHYY, PLEASE GIVE A GOOD ANSWER What are the coordinates of point Q? On a coordinate plane, point Q is 4 units to the right and 2.5 units up. (Negative 4, 2 and one-half) (Negative 2 and one-half, 4) (2 and one-half, 4) (4, 2 and one-half)