Write the name of frequently used programs from the start menu of your computer?

Answers

Answer 1

Answer:

the browser, the setting

Answer 2

From the Start menu in Windows, one can find a list of all programs installed on their PCs and still see a list of frequently used programs.

Windows frequently used Program feature.

The frequently used program feature is very noticeable in windows seven at the bottom Left upon clicking on the start menu.

On my PCs, I have Word processor, Presentation, and Explorer as frequently used Programs.

Learn more about Computer Features here:

https://brainly.com/question/26670257

#SPJ2


Related Questions

Ivan wants to have code in a game that will make it possible to change the speed of a swimmer in the game. Which of these does Ivan need?

A.
a Boolean value

B.
output

C.
a variable

D.
a database

Answers

A) a Boolean value, because you can have two possible values which is intended to represent the two truth values of logic.

Need help on this it’s the last one I need

Answers

Design a ringtone like it says

Which programming language's program structure is similar to its syntax?
O A. Java
OB.
B. Python
Ос. .
PHP
OD. LISP

Answers

Answer:

I believe it is java.

Explanation:

PLEASE HELP!!
Low-level programming languages are used to write code to control the computer's hardware.

True

False

Answers

Low-level programming languages are used to write code to control the computer's hardware is true.

What is Low level programming?

A high-level language (HLL) is a programming language, like C, FORTRAN, or Pascal, that allows programmers to create applications that are mostly independent of a certain kind of machine.

Because they are further away from machine languages and more similar to human languages, these languages are regarded as high-level.  A high-level programming language in computer science is one that strongly abstracts from the specifics of the computer.

When compared to low-level programming languages, it may use natural language elements, be simpler to use, or automate (or even completely hide) important components of computing systems (such as memory management).

Therefore, Low-level programming languages are used to write code to control the computer's hardware is true.

To learn more about programming, refer to the link:

https://brainly.com/question/11023419

#SPJ2

ASAP
Which of the following is best described as a network that covers a large geographic area (such as a city, country, or the world) using a communications channel that combines many types of media such as telephone lines, cables, and radio waves.
LAN
WAN
W.W.
WLAN

Answers

either LAN or WLAN but i’m pretty sure it’s LAN. hope that narrows it down a tiny bit


Select all the ways in which business professionals might use a spreadsheet in their jobs.
editing graphics
creating a graph for a presentation
tracking financial information
organizing numeric data
conducting a query
making calculations
writing business letters

Answers

Answer:

By making calculation.

Explanation:

Because spreadsheet is a calculation type software.

can someone help meeeeeeeee please

Answers

Answer:

Option 1 maybe

Umm try to see if it’s 2

Which line correctly starts the definition of a class named "team"?


class team:

def team():

class team():

def team:

Answers

Answer:

A

Explanation:

The line correctly starts the definition of a class named “team” is the class team:. The correct option is A.

What are the definitions?

The definition is the precise explanation of a word, particularly as it appears in a dictionary. Meaning provides a broad explanation of a word or topic. The primary distinction between definition and meaning is this. Understanding what a term implies is made possible by both its definition and its meaning.

When we write a definition of a word. The word is written before, and it is written with a colon sign. The word is only written and after the word place colon, then the definition of the word.

The definition of the word team is a collection of people who cooperate to accomplish a common objective.

Therefore, the correct option is A. class team:

To learn more about definitions, refer to the link:

https://brainly.com/question/23008740

#SPJ2

Program a substitution cipher in Python. Create 2 functions one for encryption and the other for decryption ( get the text as the parameter).

Answers

alphabet = "abcdefghijklmnopqrstuvwxyz"

def encrypt(txt):

   shift = int(input("Enter the shift: "))

   new_txt = ""

   for x in txt:

       if x in alphabet:

           if alphabet.index(x)+shift >= len(alphabet):

               new_txt += alphabet[(alphabet.index(x)+shift - len(alphabet))]

           else:

               new_txt += alphabet[alphabet.index(x)+shift]

       else:

           new_txt += x

   return new_txt

def decrpyt(txt):

   shift = int(input("Enter the known shift: "))

   new_txt = ""

   for x in txt:

       if x in alphabet:

           new_txt += alphabet[alphabet.index(x) - shift]

       else:

           new_txt += x

   return new_txt

print(encrypt("yellow dog."))

print(decrpyt("lryybj qbt."))

My code works with lowercase text only. If you need me to modify the code, I can do that. I tested my code with a shift of 13 in both the encryption and decryption. I hope this helps!

Leon needs to configure the days and times of his work week for his Outlook Calendar. Which option should he
use?

O Outlook Web App
O Backstage view > Calendar
O Home > Calendar
O Calendar View > Options

Answers

Answer:

3.Home > Calender

I think soo

Explanation:

have a good day dear!

Answer:

calendar view > options

Explanation:

it makes the most sense and edge 2022 final exam

heeeeeeeeeelp its timed :(
drag the correct word to the correct place
plllz help

Answers

Answer:

Upward Blue arrow= Lift

Downward Blue arrow= Drag

Upward yellow arrow= Thrust

Downward yellow arrow= Weight

i m not so sure

What are the main security weaknesses of coaxial cable, twisted pair cable, and fiber optic cable? How might the router itself be a security risk, even if you were using UTP/STP cabling that was insulated to prevent electromagnetic radiation leaks that could be eavesdropped on? What steps might you take to improve security for cabled networks?

Answers

Answer:

Answered below

Explanation:

Coaxial cables weaknesses include; fluctuation of speed during heavy use, leaks at the point of connection and signal loss over long distances. Twisted pair cables are not durable enough and are susceptible to interference. Fibre optic cables are costly and need expertise to install.

Hacked or compromised routers can be infected with malwares that reroutes users to spam sites and also to ddos attacks.

Steps to protect cable networks include; network encryption, physical security, VPN usage, updating networks, auditing and mapping.

Which phrase best describes a scenario in Excel 2016?


A. a type of what-if analysis that allows a user to define a single variable for a single function or formula

B. a type of what-if analysis that allows a user to define multiple variables for multiple functions or formulas

C. a type of chart analysis that allows a user to predict outcomes using data

D. a type of chart analysis that allows a user to set predetermined outcomes using data

Answers

A phrase which best describes a scenario in Microsoft Excel 2016 is: B. a type of what-if analysis that allows a user to define multiple variables for multiple functions or formulas.

What is Microsoft Excel?

Microsoft Excel simply refers to a software application that is designed and developed by Microsoft Inc., for analyzing and displaying spreadsheet documents, especially by using rows and columns in a tabulated format.

The types of function in Microsoft Excel.

In Microsoft Excel, there are different types of functions which are referred to as "predefined formulas" and these include the following:

Sum functionMaximum functionAverage functionCount functionIF functionMinimum function

In conclusion, Microsoft Excel 2016 is designed and developed by Microsoft Inc., as a type of what-if analysis which avail its end users to use multiple variables in defining multiple functions or formulas.

Read more on Excel function here: https://brainly.com/question/14371857

#SPJ1

Why operating system is important software for computer. give any five reasons.

Answers

Answer:

The description of the discussion is summarized throughout the explanation segment elsewhere here.

Explanation:

The operating quality would be an essential technology running on a computer. It maintains the recent memories but instead mechanisms including its desktop, along with all the latter's hardware as well as software components.  Perhaps it facilitates communication with your device without learning how to read your device's dialect.  

I WILL MAKE BRAINLIEST PLS HURRY
Give your own examples for how list and dictionary data structures could keep track of some common information you might need. Your examples should be different from the ones in the unit.

Answers

Examples

Lists:

- Keep track of how much water you drink per day

- Hours spent on studying per week

- The growth of a plant

Dictionaries:

- Keep track of overall grades for each subject

- Keep track of where money is mostly spent on

- Dates for upcoming assessments and tests

Hope these examples help :)

-goodLizard is right

--Please make him brainliest

[Thank you]

1. What is output to the screen by the following code?
int n= 10;
while (n > 0)
{
n--;
System. out. print (n%4 +
"");
a. 210.32 10321
b. 210321032
C. 1032103 210
d. 103 2 10321
e. 12 30 1230 12

Answers

Answer:

B is going to be your answer

Explanation:

PLS HURRY!
Which steps are used to view and delete the macros that have been enabled in a workbook?


Press Alt+F8, select the macro to be deleted, and press Delete.

Under the Developer tab, click the Macros button in the Code group, select the macro to delete, and press Delete.

Press Alt+F11, click Tools, and select Macros; then, select the macro to delete and press Delete.

All of the options listed are correct.

Answers

Answer:

D. All of the options listed are correct.

Explanation:

A macro, in excel sheet, is an action or series of action that repeats the keystrokes or mouse actions as many times as one wants. To view macro, shortcut key is to Pres Alt+F8; to delete, one needs to select the macro one wants to delete and press Delete button.

The another way to view macro is to go to the Developer tab, and select the Macro option in Code group. And, then select macro need to delete, and press Delete button.

Another shortcut is to press Alt+F11, and click  on Tools tab, click on Macros and then select macro need to be deleted, and press Delete.

So, all the options stated above are correct.

Therefore, option D is correct answer.

How does applying Fontworks effects to text on an advertising flyer change the text?
O The text cannot be resized.
O The text is shown as an object.
O The text cannot be edited
O The text is permanently in its current location.

Answers

Answer:

A

Explanation:

Applying Font works effects to text on an advertising flyer changes the text is, the text cannot be resized. The correct option is A.

What is fontwork?

Font work shape: From the expanded toolbar, select a shape to alter the shape of the currently selected object. The Shapes toolbar's extended menu.

You can design graphical text art items using Font work to add appeal to your work. You have a lot of options because there are numerous parameters for text art items (including line, area, position, size, and more).

You'll undoubtedly discover one that works for your paper. adjusts the object's character height. Changes between all letters being the same height and regular height (some characters being taller than others, such as capital letters, d, h, and l). Right: the same letter heights as the letters on the left.

Therefore, the correct option is A, The text cannot be resized.

To learn more about fontwork, refer to the link:

https://brainly.com/question/10130609

#SPJ5

The question of ________ arises when considering the way in which online marketers gather consumers’ information over the Internet without their consent.
() Research
() Theories
() Science
() Ethics

Answers

Answer: Ethics

Explanation:

Which of these software license types permits other people to modify the
programming code to create their own customized versions?
Choose the answer.

open source

shareware

commercial

freeware

Answers

Answer:

The answer to this question is given in the explanation section:

Explanation:

The correct Answer is : Opensource

Now lets talk about each option

Opensource: These are software whose code is available on internet and anyone can modify it and distribute it. They are usually under GNU or OSD compliance license.

Shareware: These are software which are freely available for some time.

commercial: These are software which has its own license and used commercially. They require payment to use.

Freeware: They are free to use.

Answer:it is Opensource i just took the test

Explanation:

can some one please help

Answers

Answer:

i will try other questions too

Franklin has a photographic assignment, and he needs to print some photographs using Adobe Photoshop. Which feature will help him see the
printed version of the document on the screen before he actually prints it?
The
feature in Photoshop will help Franklin see the printed version of the document on the screen before he actually
prints it.

Answers

Answer:

print preview

Explanation: i got it correct in plato

Answer:

print preview

Explanation:

on plato/edmentum

How can reviewing a completed test prior to submitting it help you to earn the most points possible?

Answers

The act of reviewing a completed test prior to submission is usually called double - checking. This involves checking through selected answers that have been picked prior to making submission.

This action will help to check for possible errors which could have been made unknown to the user, Hence, errors committed by mistake.

Hence, a review of a completed test or assessment would help check for potential errors which could prove costly and hence, leading to more earned point in total.

Learn more :https://brainly.com/question/20194760


Select the correct answer from each drop-down menu.
Jeff writes a blog on digital photography. His most recent post was about visual artifacts. Identify the visual artifacts in the sentences below.
. A visual artifact of digital projectors is called
An inappropriate color difference in an image is called

Answers

Answer:

Screen-door effect

Explanation:

Answer:

An inappropriate color difference in an image is called: image noise

A visual artifact of digital projectors is called: fixed-pattern noise

Explanation:

trust me

edhesive: 2.5 Code Practice answer

Answers

Answer: can you tell me what you need help with

Explanation:thank you

Answer:

import random

a = random.randint(1,10)

b = random.randint(1,10)

answer = a * b

print (str(a) + " * " + str(b) + " = " + str(answer))

Explanation:

Hope this helps!

The smallest unit of a spreadsheet, and it is formed by the intersection of a row and a column.

a
Workbook
b
Cell
c
Pointer
d
Ribbon Tabs

Answers

The answer would be: B. Cell

Which online note-taking device allows students to clip a page from a website and reuse it later?

web clipping tools
electronic sticky notes
offline data storage sites
online data storage sites

Answers

Answer:

The answer is A.) web clipping tools.

Explanation:

Cuz like yeah

Answer: WEB CLIPPING TOOLS

Explanation:

Help! Computer Science Discoveries. Hurry its timed

Answers

Answer:

1. categories

2. character

3. code

4. portrait

5. conversation

6. stage

7. Landscape

8. backdrop

Explanation:

I'm not sure what "a visual programming language for children" would be, sorry about that, and sorry if these are wrong .-

who's on scratch?
tell me your username
answer anyway if you're not on scratch
my gifted class is doing a challenge to follow as many people as possible

Answers

Explanation:

my scratch name is lillielove123

why did the boy run from the pillow...... wrong answers only

Answers

He thinks there is a demon hiding innit thus, he runs and calls his mom. His mom says "Jimmy there's nothing in that pilow young man!" Jimmy walks back to his room scared if its still there. He hops into bed hoping that he can get a good nights rest. The next day, Jimmy asks if he can go buy another pillow. His mom says "As long as it makes you feel safe then ok." Young Jimmy, jumping in excitement, goes to the checkout zone to buy his new pillow. When they get home, Jimmy and his mom eat dinner and then head for bed. Jimmy hops into bed and knows that everything will be ok. The end.

Other Questions
Graffiti is an art form that deserves respect and attentionin national museums.Too ObviousNot DefendableControversial |(3.86 + 6.82)| + |(4.02 12.45)| What does napoleon think in animal farm? (weird question, i know. ask my teacher) only answer if u know the answer, thank u:) The $99.99 digital camera Mia purchased was on sale for 15% off. What amount did Mia get off the price? please leave an explanation Oklahoma's segregation policies claimed to provide African Americans with "separate but equal" facilities, but it really provided them with "separate and_____"facilities.. identicalB. unequalC modernD. typical 16 to the power of 1/2 can someone help me doing this cause y do not understand what we have to do here? What is the volume of the cone shown? (in terms of pi)A)727 cm3B)8411 cm3.9671 cmEliminateD) 1087 cm3 plz help me asap plz i will mark you brainlist Algebra 1, question in the picture below transformations Can you answer the question that is in blue please X / 7 = 3A. 21 B. 3/7 C. 20 D. -21 tell weather each equation has one solution , zero solution or infinte solutions really easy : ) Sam is 12. In four years, his age will be 2/3 the age of his cousin Lupe. How old will Lupe be in two years? A pote that is 3.5 m tall casts a shadow that is 1.08 m long same time, a nearby building casts a shadow that is 35.5 m long How tall is the building Round your answer to the nearest FRIAR LAURENCE Holy Saint Francis, what a change is here! Is Rosaline, whom thou didst love so dear, So soon forsaken? Young men's love then lies Not truly in their hearts, but in their eyes. Jesu Maria, what a deal of brine Hath wash'd thy sallow cheeks for Rosaline! How much salt water thrown away in waste, To season love, that of it doth not taste! The sun not yet thy sighs from heaven clears, Thy old groans ring yet in my ancient ears; Lo, here upon thy cheek the stain doth sit Of an old tear that is not wash'd off yet: If e'er thou wast thyself and these woes thine, Thou and these woes were all for Rosaline: And art thou changed? Pronounce this sentence then, Women may fall, when there's no strength in men. What is the significance of the diction in this speech? Name the postulate, if possible, that makes the triangles congruent.? Select the correct answer.Which statement is most likely to form part of an effective close analysis of these lines from William Wordsworth's "Daffodils"?I wandered lonelyas a cloudThat floats on high o'er vales and hillsA. This line shows that the speaker feels superior to people in vales and hills.B. This simile expresses the speaker's loneliness as he walks in isolation.C. This comparison to a cloud paints logeliness as restful, soft, and floating. Read the following scenario. Determine what type of irony is used and explain your answer. "Axel was the toughest kid on the playground. He worse a leather jacket with cutoff sleeves and metal studs on the shoulders. He had a Mohawk hairstyle, listened to punk rock music, and hung out with the older kids. He rode his skateboard to school and did noseslides on the bike rack. He whooped on anyone who challenged him, but after a long day of being really tough, Axel's momma tucked him into bed at night and he snuggled up tightly with a fluffy pink bear that he called Mr. Snuggles." * 4. if the earth's core provides the heat that drives plate tectonics, then what will eventually happen as the earth's core cools down over billions of years?