choose the correct term to complete the sentence.

Choose The Correct Term To Complete The Sentence.

Answers

Answer 1

Answer:

Epoch

Explanation:


Related Questions

Which is an email protocol that retrieves email without deleting the email and its attachments from the server?
Simple Mail Transfer Protocol (SMTP)

Internet Message Access Protocol (IMAP)

Post Office Protocol version 3 (POP 3)

Simple Network Management Protocol (SNMP)

Answers

Answer:

Internet Message Access Protocol (IMAP)

Explanation:

The "Internet Message Access Protocol" or IMAP was created by Mark Crispin at the Stanford Knowledge Systems Laboratory. It allows a person to access his email from his local server. In comparison to the Post Office Protocol Version 3 (POP 3), which deletes the emails once they are downloaded, the IMAP allows the contents to be saved on the server. The email will only be deleted if the user intends to do so.

Answer:

It is Pop 3 not IMAP

Explanation:

Correct on edg 2022

The answer is D!!Readable code includes
o the use of formatting to make the code look better.
the use of dense lines of code without indentation.
o the use of comments that are of no use to future users of the progran

Answers

Answer:

D

Explanation:

says in title

Readable code includes the use of comments that are of no use to future users of the program. The correct option is c.

What are readable codes?

Readable code is just code that makes its goal crystal plain to the reader. The likelihood is that other developers will read the code we write and want to either comprehend it or modify it. It's interesting to read the code. Variable, function, and class names in the code are meaningful.

The code may need to be tested, a bug fixed, or a new feature added. The evolution of the codebase is facilitated by readable source code, which makes it easier to read and comprehend the abstraction phases. Future developers can save time and effort by writing readable code.

Therefore, the correct option is c, the use of comments that are of no use to future users of the program.

To learn more about readable codes, refer to the link:

https://brainly.com/question/19540616

#SPJ2

When you get a new sim card do it come with a new number or do you have a activate the phone and get a new number in store ?

Answers

put the sim card in the phone and turn the phone on, it technically comes with the card but you really interact with it until you turn the phone on.

Describe advantages and disadvantages for microprocessor controlled devices in the household.
(4) point form pls

Answers

1.Easier actions 2.Time saving 3.Money saving 4.Energy saving

Here dude this is what I was talking about

Answers

Answer:

go to your email and refresh the page and if it didnt work just email them

Put ur number if I dosent work then send them a email

Menu options are usually selected by _____the mouse.

Answers

Answer:

clicking

Explanation:

right clicking the mouse

You created a two-dimensional array with the following code.

>>> A = [21, 'dog', 'red']
>>> B = [35, 'cat', 'blue']
>>> C = [12, 'fish', 'green']
>>> E = [A, B, C]
How do you refer to 'cat'?

E[1, 2)

E[1,2]

E[1][2]

E[1,2]

Answers

Explanation:

My answer is E[1][1]

but I don't see it here

Answer:

E[1][2] that is correct I just took t

Identify and summarize the features of the Windows 7 backup utility.

Answers

Answer:it is slow

Explanation: slow

Answer:

IT can create a backup it can restore a backup and probably more

Explanation:

What kind of loop should be used in a game where the user is guessing a secret code and the message"guess again" appears until the user guesses correctly?

Answers

Answer:

While loop

Explanation:

It should be noted that the number of times which the computer will ask the user to take a guess is not known.

When we have a condition like this, the while loop (or in some programs; the do-while loop) is to be used.

To further back my point, see the following program in python.

secret_code = 1234

user_guess = int(input("Take a guess: "))

while user_guess != secret_code:

    user_guess = int(input("guess again: "))

print("You guessed right")

The above program will keep asking the user to take a guess until the user enters 1234.

This may or may not be possible with a for loop.

Which of the following programming languages were initially developed to teach programming techniques to students? Choose all that apply.

Answers

Answer:

BASIC programming language

Pascal programming language

Explanation:

C++ programming language

Java programming language

BASIC programming language

Pascal programming language

Answer:

it's C and D

Explanation:

How do you access the printing functions and settings in Outlook messages?
O Click the Print button on top of the message in the Reading Pane.
O Open the Print window under the View tab on the ribbon.
O Go to the navigation bar and click the Print icon at the bottom.
O Go to the message and access the Backstage view of the message.

Answers

Answer:

it D Go to the message and access the Backstage view of the message.

Explanation: just trust me

What genre do games that involve physical challenges and make use of hand-eye coordination, speed, accuracy, and precision fall into?
adventure
action
simulation
puzzle

Answers

Answer:

flexiblity

feedback

playin outdoor game

Answer:

I think simulation not 100% sure though.

In Outlook 2016, the Tell Me function can be accessed by
O pressing F1 on the keyboard.
clicking on the File tab, then the question mark button.
typing a query in the textbox on the ribbon.
typing "help" in the search box in the message pane.

Answers

In Outlook 2016, the Tell Me function can be accessed by

O pressing F1 on the keyboard.

clicking on the File tab, then the question mark button.

typing a query in the textbox on the ribbon.

typing "help" in the search box in the message pane.

Explanation:

I think it should be typing a query in the textbox on the ribbon.

In Outlook 2016, the Tell Me function can be accessed by clicking on the File tab, then the question mark button. The correct option is B.

What is Outlook?

The preferred email client for sending and receiving emails from Microsoft Exchange Server is Microsoft Outlook. Accessibility to contact, email, calendar, and task management tools is also provided by Outlook.

You can send and receive emails, manage your calendar, save the names and phone numbers of your contacts, and keep track of your projects using Outlook.

Even if you utilize Outlook on a daily basis, you might not be aware of all the wonderful things it can do to boost your productivity.

By selecting the File tab, then the question mark button in Outlook 2016, you may open the Tell Me feature.

Thus, the correct option is B.

For more details regarding Microsoft outlook, visit:

https://brainly.com/question/26695071

#SPJ2

Consider the following code: x = 5 x = x * 3 print (x) What is output

Answers

Answer:

Output: 5

Explanation:

It will print 5 on the screen

How do I do this? Can someone please tell me.

Answers

Answer:

Below is a quick example of how to do it.  Note though that the instruction to output "annual rainfall to one decimal place" sounds erroneous to me, as I would expect the numbers to be entered as integers (but perhaps I'm wrong).

In my opinion it would be far more sensible to round the average to a single decimal place instead.

start a running tally at zero

set "aboveTally" to zero (this will be used to count which months are above the average)

for each month{

   prompt for rainfall that month, storing it in an array

   Also add that value to the running tally

}

average = tally / 12

// Output list of month's rainfalls, and get a tally of those above average

for each month{

       print month + ": " + amount input for this month

       if total for month > average: aboveTally++

}

//output total anual to one decimal place:

print "total anual rainfall: " + (int)(tally * 10) / 10

//output number of months above the average:

print "Number of months above averayge: " + aboveTally

How much mail can be
stored in each mail box?​

Answers

Answer:

Most mailboxes are 1 - 4 GB with one or two larger.

Explanation:

Any device that uses light to read and write information.

A. Optical Drive

B. Peripheral Device

C. Laser Device

D. Optical Device

Answers

Answer:

Optical Storage Device

Which details in paragraphs 1-5 contrast with your experience and expectations?

Based on these details,what do you think the setting of the story is?

Answers

Answer:

among us

Explanation:

Describe the difference between an interest and a skill.

Answers

Answer:

an interest you can be good but you can also not know where to start an interest is a want to start and a skill is when you are good at it but you don't have to be interested

Explanation:

What are the 5 characteristics of flowchart

Answers

Answer:

Here's ur answer

Explanation:

(i) Should consist of standardized and acceptable symbols. (ii) The symbols should be correctly used according to flowcharts rules. (iii) Should have short, clear and readable statements written inside the symbols. (iv) It must have clear one starting point and one ending point.

Question # 1 Multiple Select Which of the following shows the assignment of a string to a variable? Select 3 options. answer = "23" answer = (23) answer = '23' answer 23 answer = input("How old are you?") ​

Answers

Answer:

answer = input("How old are you?")

Explanation:

Answer is a variable The Input function takes a string

Answer:

answer = input("How old are you? ")answer = '23'answer = "23"

Explanation: Correct on Edg 2020/2021.

Microsoft word is an example of utility software?

A.true
B.false​

Answers

Answer:

false

Explanation:

Ms word is only an application software

Answer:

Option B. False is the correct answer.

Explanation:

A software that is used to take care of computer and its resources is called utility software while Microsoft word is a dedicated software for documentation and report writing also called application software.

Hence,

Option B. False is the correct answer.

which line of code will allow you to only load the localtime() method into active memory

Answers

Answer:

from time import localtime

Explanation:

have a lovely day :)

The line of code that will allow you to only load the localtime method into active memory is time.

The localtime function is simply known to be time in seconds as long as Epoch is targeted by timer into a broken-down time.

It is mostly written in local time. The function is known to be of timezone and any seasonal time adjustments. Local timezone information is used as though localtime() calls tzset().

LocalTime cannot have a muted date-time object that shows a time, often viewed as hour-minute-second. Time is shown in nanosecond precision.

Learn more from

https://brainly.com/question/19639119

In 1-2 Sentences, Explain how you would open a new Word processing Document

Answers

Explanation:

first you open word processing app. then in the home screen you will see start a new document then you start one.

.xls is the file extension for this file type

A. Image File

B. Internet File

C. Spreadsheet File

D. Word Processing File

Answers

Answer:

Spreadsheet File

Explanation:

Most word processing files are doc or docx

Most internet files are htm or html

Most Image files are jpg or png

Yo, my Lenovo laptop keeps showing this screen but I can't sign in, can someone help me?

Answers

break your laptop and get a new one
Try completely restarting it 1 or 2 times and see if that works first

What should you do first when designing a program?

Answers

Answer: talk about da progrm

Explanation:

Answer:

Step-by step Explanation:

please help me
...
.... ​

Answers

Answer:

formal information searches

Explanation:

Answer:

informal information source

hope it will help if it helps please ask me in comment

You can raise an object to a height of 2 meters by pulling down a distance of 8 meters on a pulley with a force of 40 N. How heavy an object can you lift with his effort?

Answers

Answer:

160 N

Explanation:

Since, work done by effort = work done by load,

Fd = F'd' where F = effort force = 40 N, d = distance moved by effort = 8 m, F = load and d' = distance moved by load = 2 m.

So, Fd = F'd'

40 N × 8 m = F' × 2 m

320 Nm = 2F m

So, F = 320 Nm/2m

= 160 N

So, the object that can be lifted is an object of 160 N

PLS i need help - programming challenge

Write an algorithm that:

· Ask the user to input how many GCSE’s they have.

· They should then be allowed to enter a result for each GCSE grade.

· The computer should work out how many points they have got (9=9, 8=8, 7=7 etc).

· If their score is 40 or over it should output ‘You can go to the sixth form’

· If they their score between 35 and 39 it should output ‘A discussion is needed’

· Otherwise it should say ‘Sorry not enough points.’

Answers

This is written in python 3, so you need to have python and rename the file to GCSE.py

It runs in vanilla python, no addons required.

Other Questions
Why do you think your immune system sometimes fails and we get sick anyway? Please help 30 points A recursive definition of an arithmetic sequence is shown below.a = 7an = an-1 + 3Which of the following expressions represents the nth term of this sequence?A. Ont3B.3n + 4C.O3n +7D.O7n +3 GBy February of 1861, how many states seceded from the Union?110907 Look at the images, listen to the audio, and match each sentence with its correct image. Audio 01: Nosotros somos primos con los ojos marrones. Audio 02: Nosotras somos gemelas con el pelo negro. Audio 03: Nosotras somos hermanas con lentes. Audio 04: Nosotros somos a 3 y Pablo, los tos de Carla. Match Term Definition Audio 01 A) Boy and girl of about 12 years old, with brown eyes, hugging, and smiling Audio 02 B) Two young females with glasses, they are smiling Audio 03 C) Two twin sisters with black hair riding a bicycle Audio 04 D) Two men grilling and smiling Economic and governing system where property is publically owned and each person ispaccording to their abilities and needs. a physical quantity is defined as mass per uint volume .what is its si unit. HURRY PLEASE Benefits of Frozen Food In today's fast-paced life, having a freshly cooked meal every day may not be practical. To deal with this problem, people have the option of frozen food. Freezing is a good way to preserve the taste and color of most foods. Freezing stops microbes, which are small microorganisms, from growing on the food, and helps to keep food fresher for a prolonged period. Frozen foods are also useful because supermarkets can store them for a long time, so one can buy frozen fruits and vegetables all year round, without seasonal boundaries. Furthermore, frozen foods make cooking much easier and quicker, because most frozen foods are already half-cooked, chopped, or cut. These half-cooked frozen foods often contain a lot of preservatives such as salt and sugar, which are bad for health. But, they also help make life simpler for those who do not have the time to cook food from scratch. For example, a frozen apple pie is already put togetherall one has to do is bake it. At home, people can cook a number of dishes when they have the time. In fact, there is no comparison to a delicious, hot meal cooked at home with the freshest ingredients. However, frozen foods can be stored for several weeks or months, making them the best choice if one wants to have meals that are instantly ready for consumption.5Which evidence from the passage is an example of unsound reasoning in support of the author's point that frozen food is better than meals cooked from scratch? A. Freezing ensures that the microbes do not spoil the nutritional value of the food. B. Some frozen foods contain ingredients that may not be good for health. C. All types of frozen fruits and vegetables can be found in supermarkets. D. Frozen food is a practical option as it can be stored for a long period of time. is Rome society worth celebrating? explain ur reason. A quote of situational Irony in The cask of Amontillado. Please only answer if you know. Please help me! Please and thank you! 1/3 divided by 42/5 divided by 44/7 divided by 42/5 divided by 3 5/6 divided by 55/8 divided by 10 In a normal Earth atmosphere, a feather will free fall through the air more slowly than a brick because of what force?A. Terminal velocityB. MomentumC. WeightlessnessD. Air Resistance what are conclusions on the consequences of World War II? Can someone help me with this trigonometry question A"compound" is something made of two or more pieces. What are the two pieces thatmake up Madison's compound government? 50 POINTS, BRAINLEST IF RIGHT NO TROLLSTomas is planning out a rail trail using a map with a marked grid. The head of the trail, which has an information kiosk, is located at (3, 0). He moves 1 unit east and 3 units north and places a pin at (4, 3) to represent the location of another information kiosk. He continues placing pins so that each pin is 1 unit east and 3 units north in relation to the previous pin. Where is the fifth information kiosk located?A coordinate plane has an x-axis labeled East from 0 to 10 in increments of 1 and a y-axis labeled North from 0 to 10 in increments of 1. A. (5, 5) B. (5, 10) C. (7, 10) D. (7, 12) help pls hurryfind the volume 50 points HELP!!What would be the correct complimentary DNA strand given the following DNA strand.DNA: ATACGAAAT (Type as one word - no spaces)Using the same strand of DNA, what would be the correct sequence for an RNA strand? (Type as one word - no spaces) If the force of gravity suddenly stopped acting on planets, they wouldA.) spiral slowly towards the sunB.) continue to orbit the sunC.) move in straight lines tangent to thier orbits D.) spiral slowly away from the sunE.) fly straight away from the sun The Cuban Missile Crisis happened during which war?The Persian Gulf WarThe Cold WarThe Korean WarThe Cuban War