(ii)
Give two uses of the Start Menu.​

Answers

Answer 1

Answer:

used folders, files, settings, and features. It's also where you go to log off from Windows or turn off your computer. One of the most common uses of the Start menu is opening programs installed on your computer. To open a program shown in the left pane of the Start menu, click it


Related Questions

how to use command prompt​

Answers

Answer:

The answer to this question can be defined as follows:

Explanation:

The Command Prompt is a program, which available in windows operating systems, which imitates an input field with windows GUI(Graphic User Interface). It provides a text-based user interface, that can be used to run instructions inserted and carry out advanced organizational activities, following are the step to open a command prompt:

There are two-step to open the command prompt in windows:  

First, go to the start button the window. after open start type cmd on the search bar, It will provide the cmd to open it click with mouse or press enter button.    With the help of keyboard press (window+R) key together, after pressing it will provide the run prompt in which we write cmd and press enter. It will open a command prompt panel.    

Create Python program code that will use a for loop to ask the user to enterfourintegers. Itwillcount how many of the integers are divisible by 2. The programwill print each of the 4integers and a message saying whether the integeris even or odd. The code will print the total number of even integers

Answers

Answer:

is_even = 0

int_numbers = []

for n in range(4):

n = int(input('press any four integer numbers')

int_numbers.append(n)

for n in int_numbers:

if n%2==0:

print(n, 'integer is even')

is_even+= 1

else:

print(n, 'integer is odd')

print('Total even numbers =', is_even)

Explanation:

is_even = 0 (initiates a counter to record the number of even integers).

int_numbers creates a list to store the inputs entered by the user.

int(input()) : allows users to enter an integer number

int_numbers.append(n) : adds user input to list list variable created.

n%==2 : checks if entered digit leaves a remainder of 0 when divided by 2; hence an even number

is_even+= 1: counter updates by 1 for every even number confirmed.

What is Relational Computerized Database

Answers

Answer:

Relational computerized database uses tables and columns to store data. each table is composed of records and each record is tied to an attribute containing a unique value. This helps the user use the data base by search query and gives the opportunity to build large and complex data bases

How to you convert (both positive and negative integers) denary to Two’s complement and vice versa?

Answers

Answer:

To convert from decimal to binary, one approach is to repeatedly divide by 2 as integer division and write down the remainders from right to left:

example: convert 26 to binary

26 / 2 = 13, no remainder => write down 0

13 / 2 = 6, remainder 1 => write down 1

6 / 2 = 3, no remainder => write down 0

3 / 2 = 1, remainder 1 => write down 1

1 / 2 = 0, remainder 1 => write down 1

So 11010 is your result.

For 2's complement, you have to consider youre entire word size. Let's say you have 8 bit representations, then 11010 is really 00011010.

To get the 2's complement, you invert the binary represenation and add 1:

00011010 => 11100101

11100101 + 1 = 11100110 (understand binary addition for this)

So 11100110 is the binary representation of -26.

You can do this entire sequence in reverse, i.e. subtract one, invert and then go back to the decimal representation:

11010 in decimal is 1·2⁴ + 1·2³+ 0·2²+ 1·2¹+ 0·2⁰ = 26

You work for a public relations (PR) firm and communicate regularly with the internal team and the clients on a PR campaign. You need to quickly send and receive professional messages that may contain text files and short media. These messages need to be accessible at any time of the day and in different time zones, and they should be able to reach all members (internal and external) relatively inexpensively. Which communication channel would best suit this purpose?

Answers

Answer:

You Need To Quickly Send And Receive Professional Messages That May Contain Text Files And Short Media. These Messages Need To Be Accessible At Any Time Of The Day And In Different ... You work for a public relations (PR) firm and communicate regularly with the internal team and the clients on a PR campaign.

Explanation:

Email would likely be the best communication channel to meet these requirements. Once an email is sent, it broadcasts across servers and arrives at the recipient’s/recipients’ mailbox(es) for access at the receiving party’s/(ies’) convenience. Email is also able to have attachments, and as such, will allow for text files and smaller media files (audio, video, or otherwise) to be attached and accessed easily.

In the decision-making process, after you have chosen the right solution, what is the next step?

Answers

Answer:

Implementing the right solution.

Explanation:

There is little point in taking decisions if it stays in the paper. If the best of the possible alternatives have been identified, it must be properly implemented to accomplish the aim it was chosen for. When a decision has been made, it should be implemented, i.e. enacted, into practice. Because of poor execution, a successful decision may become ineffective. A participatory approach can be an efficient way of enforcing such decisions successfully.

Machine code and Object code is the same right?​

Answers

Answer:

"True" Machine code and Object code is the same.

Explanation:

All code at the same level is considered the same code, so we can say that the machine code, byte code, and the object code with it is of the same type, all of which are considered as the lowest level associated with the common program, these are common. Also known as source code because it is used in translating different languages.

Ann wants to download Adobe Acrobat software from the Internet. Prior to downloading, a standardized online contract appears on the screen that requires her to click on an icon indicating agreement, before she can proceed in the program. Such contracts are called:

Answers

answer: terms and services

You have created a Web page in HTML. When it fails W3C validation, you try changing the HTML standard to make your code more compliant. But the page fails W3C validation tests each time, regardless of standard. Which element that you used to structure the page is failing to validate

Answers

Answer:

<table>

Explanation:

W3C validation is a test applied to web pages codes, containing HTML, CSS and other important web frameworks, to make sure that they follow the right syntax and semantics prescribed by the W3C - World Wide Web Consortium.

When a web page, or simple an HTML document, passes this test then it shows that the set rules for creating web pages, that can be easily rendered across many browsers, have been well followed.

There are many reasons why the test may fail. Some of them are highlighted as follows;

i. Not specifying the Doctype at all. For an HTML document to pass the W3C validation test, it is important to specify the Doctype which tells the browser how to treat the document. If HTML is specified as Doctype, then the browser treats the document as HTML. If none is specified, the browser does not know and may have to guess how to treat the document.

ii. Missing closing tags. HTML is a markup language and the use of tags are very important. Many tags have opening and closing parts such as;

<p> </p>.

Some are self closing such as;

<br />

Now, opening a tag and not closing it will make the test fail.

iii. Not completing important child tags. Some tags have child tags that are very important. Child tags are put inside another tag called the parent tag. An example is the <table> tag which has a few child tags such as <tr>, <tbody> e.t.c

Now, when creating a table, according to the W3C specifications, one or more of the <tr> or <tbody> child tag should be inserted.

Name all of the gates used in programming.

Answers

Answer:

BUFFER GATE, NOT GATE, OR GATE, AND GATE, NOR GATE, NAND GATE, XOR GATE and , XNOR

Python: Write a program that generates 8 random scores (between 0 and 100), store them in an array,
finds the best score, and then assigns grades based on the following scheme (use loops
wherever possible):
Grade is A if score >= best – 10
Grade is B if score >= best – 20
Grade is C if score >= best – 30
Grade is D if score >= best – 40
Grade is F otherwise.

Answers

Answer:

The program written in python is as follows;

Note that the program makes use of function named checkbest

Lines written bold are comments and are used to replace the explanation section

#Program starts here

#This line imports the random module into the program

import random

#This line defines the function checkbest, with 2 parameters

def checkbest(score,best):

     #The following if condition implements the condition as stated in the

     #program requirement

     if score >= best- 10:

           grade = "A"

     elif score >= best - 20:

           grade = "B"

     elif score>= best - 30:

           grade = "C"

     elif score >= best - 40:

           grade = "D"

     else:

           grade = "F"

     #This line returns the letter grade depending on the above

     #conditions

     return "Grade: "+grade

#The main method starts here

#This line declares an empty list

array = []

#This line iterates from 1 to 8

for i in range(1,9):

     #This line generates a random integer between 0 and 100 (inclusive)

     score = random.randint(0,100)

     #This line inserts the generated score in the list

     array.append(score)

#This line sorts the list in ascending order

array.sort()

#This line gets the best score

best = array[7]

#This line iterates through the elements of the list

for i in range(0,8):

     #This line prints the current score

     print("Score: "+str(array[i]))

     #This line calls the function to print the corresponding letter grade

     print(checkbest(array[i], best))

     #This line prints an empty line

     print(" ")

#The program ends here

Usually when i am using my windows 10 laptop and using the internet, it stops working and says "No Internet." So i disconnect from the wifi i was using, and then i reconnect to it and it works fine. But it keeps on doing the same thing and it is really annoying. please help!

Answers

Answer:

I used to have the same proble, have you tried rebooting it? That normally works. If not, you have to change your internet plan completely. That’s what I had to do. But first try rebooting.

Explanation:

In cell M2, enter a formula using a nested IF function as follows to determine first if a student has already been elected to office in a student group, and if not, whether that student meets the qualifications to run in the future: a. If the value in the Elected column is equal to the text "Yes", the formula should display Elected as the text.

Answers

Answer:

Following are the code to this question:

code:

=IF(EXACT(I2,"Yes"),"Elected",IF(EXACT(K2,"Yes"),"Yes","No"))

Explanation:

In the given the data is not defined so we explain only  the above code, but before that, we briefly define working of if the function that can be defined as follows:

The If() function, is used only when one of the logical functions and its value must return the value true. or we can say it only return a true value. In the above function, a column "Elected" is used that uses other column values to check this column value is equal if this condition is true it will return "yes" value.

Which of the following answers refers to a system containing mappings of domain names to various types of data, such as numerical IP addresses?

Answers

Answer:

DNS or Domain Name System

Explanation:

You can query a DNS server with a domain name to get an IP address.

PLEASE HELP MEEEEEEE :(
I have a piece of code that keeps track of the leaderboard of a game then it will sort the scores in order and print them onto the screen along with the names.
Unfortunately I don't want the whole file printing, just the top 5.
what shall id do.?

I have attatched the code.
Thanks.​

Answers

Answer:

Ctrl A and then Ctrl C

Explanation:

First click Ctrl A then click on the parts that you need to copy then click Ctrl C

Answer: If you want to use a for loop then you should make it so that it does variable I and then it takes the array and you do Topscorers[I] and then it will do the first 5

Explanation:

IANA has primarily been responsible with assigning address blocks to five regional internet registries (RIR). A tech needs to research address blocks assigned in the United States. Which RIR should the tech contact?

Answers

Answer:

The American Registry for Internet Numbers ARIN

Explanation:

The American Registry for Internet Numbers (ARIN) is a not for profit organization that serves as the administrator and distributor of Internet numeric resources such as IP addresses (IPv4 and IPv6) ASN for the United States, Canada, as well as North Atlantic and Caribbean islands

There are four other Regional Internet Registry including APNIC, RIPE NCC, LACNIC and AFRINIC.

convert the following decimal number to its equivalent binary ,octal,hexadecimal 1920​
pls in step by step
pls help me bro

Answers

Answer:

0b11110000000 is binary

0o3600 is in octal

0x780 in hexa dec.

Explanation:its a bit complitcated to explain sorry bro!

Roger is getting a $5,000 loan. Which option will allow Roger to pay off the loan and keep his payments under $100?

Answers

No roger will not be able to do that

Finish the statement below to correctly describe the Defense Enrollment Eligibility Reporting System (DEERS). DEERS is a centralized Department of Defense database that _______________________________.

Answers

Answer:  A- the antlers and horns are structural adaptations. The fighting is a behavioral adaptation.

Antlers and horns are physical adaptations that some mammals have acquired over time. However, fighting is not a physical feature but a behavioral adaptation used to beat other males during mating season.

Explanation:

The acronym "HTTP' stands for​

Answers

Answer:hypertext transfer protocol secure

Explanation:

Explanation:

http means hypertext transfer protocol secure

Which statement is the best description of what a macro can do in Excel 2016? It is a type of formatting users can apply to enlarge the worksheet area. It is a file type that a user can save a workbook as. It is a series of instructions contained in one command that users can apply to automate complex and/or repetitive tasks. It is a recording function that allows you to save worksheets, audio recordings, and videos that are displayed on the screen.

Answers

Answer: It is a series of instructions contained in one command that users can apply to automate complex and/or repetitive tasks

One example would be a macro that goes through a list of numbers and highlights which are duplicates. Say you had the list {1,2,3,3,4,4,4,5}. You could use one color to highlight both 3 and 4 as they repeat themselves. Or you could use different colors to show the different values. With a small list, you could highlight by hand. However, macros are more efficient with larger lists.

Answer:

It is a series of instructions contained in one command that users can execute to automate complex and/or repetitive tasks.

Explanation:

edge 2022

Robyn is using lookup functions in her Excel 2016 worksheet. Which formula uses the correct syntax? =VLOOKUP(lookup_value, table_array, col_index_num, range_lookup) =VLOOKUP(table_array, lookup_value, col_index_num, range_lookup) =VLOOKUP(lookup_value, table_array, col_index_num, value) =VLOOKUP(table_array, lookup_value, col_index_num, value)

Answers

Answer:

Explanation:

Hello,

the logic is a below

=VLOOKUP(

lookup_value what you want to look up,

table_array where you want to look for it,

col_index_num the column index in the range containing the value to return,

range_lookup

is a TRUE or FALSE value. return an Approximate or Exact match

)

hope this helps

Answer:

in more simple words to us Edge users

Answer Shown by the guy below us is A

well it seems to be

Explanation:

Edge2020

Which is the right way to give comment if you are using Internet explorer as the browser? a) <!-- My First Webpage --> b) <comment> My First Webpage </comment>

Answers

Answer:

(a) <!-- My First Webpage -->

Explanation:

Comments in programming languages are chunks of texts, written as part of program code, that are not executed as actual code but rather used for making the program code easily readable and understandable. They allow programmers to explain certain lines of a program code.

Every programming language has its own way of representing comments. In HTML - HyperText Markup Language - comments are written between the following tags :

<!--

and

-->

For example, to put the text "My comment goes here" in a comment, we write:

<!-- My comment goes here -->

From the question, the text to be put is:  "My First Webpage". Therefore, we write;

<!-- My First Webpage -->

Chen is busy recording a macro in Excel, but she has made a mistake. What is the best course of action to take in this scenario? Pause the macro and click Rewind to fix it. Rerecord the macro. Click Undo. Delete the macro and the workbook.

Answers

Answer:

Rerecord the macro.

Explanation:

The macro is an action in which we can repeat the task as much we need. It is an automatic task in which the performance of a task is repeated until we want. It can be built or record and then it runs again and again in an automatic manner

In the given situation, since Chen is busy in recording the macro in excel but she made a mistake so the best course is to re-record the macro so that the task could be fulfilled

Answer:

B. Record it!

Explanation:

Bee Bee Bee Bee Bee Bee Bee Bee Bee Bee Bee

What is one reason why a business may want to move entirely online?
A. To limit the number of items in its inventory
OB. To double the number of employees
C. To focus on a global market
D. To avoid paying state and local taxes​

Answers

Answer:

The correct answer is C. One reason why a business may want to move entirely online is to focus on a global market.

Explanation:

The fact that a business wishes to move entirely towards the online sales modality implies that there is a desire to expand the possibilities of selling its products beyond the physical place where it has its store.

It is a reality that starting an online business implies that the offered product can be purchased anywhere in the world, thanks to advances in technology and transportation that allow the product to be purchased and delivered in a matter of days, thanks to the advances produced by globalization.

Therefore, the fact that the store goes from physically to online selling makes its potential customers go from being the ones who know the store and live close to it to everyone in the world with access to internet.

Python Lists and Events: Write a program that generates 8 random scores (between 0 and 100), store them in an array, finds the best score, and then assigns grades based on the following scheme (use loops wherever possible): Grade is A if score >= best – 10 Grade is B if score >= best – 20 Grade is C if score >= best – 30 Grade is D if score >= best – 40 Grade is F otherwise.

Answers

Answer:

import random

scores = []

for i in range(8):

   score = random.randint(0,100)

   scores.append(score)

best_score = max(scores)

letter_grade = ""

for s in scores:

   if s >= best_score - 10:

       letter_grade = "A"

   elif s >= best_score - 20:

       letter_grade = "B"

   elif s >= best_score - 30:

       letter_grade = "C"

   elif s >= best_score - 40:

       letter_grade = "D"

   else:

       letter_grade = "F"

   

   print(letter_grade)

Explanation:

Import the random module

Create an empty list to hold the scores

Create a for loop that iterates 8 times. Inside the loop, create 8 random scores and put them in the scores

When the loop is done, find the best_score using max method

Create another for loop that iterates through the scores. Check each score and set the letter_grade depending on the given conditions.

How do I convert BCD to denary and denary to BCD? (For Both positive and Negative integer of denary)

Answers

Answer:

BCD is very similar to regular binary code. Decimal digits are represented as binary like so:

0 = 0000

1 = 0001

2 = 0010

3 = 0011

etc...

9 = 1001

However, in BCD the structure of decimal code is maintained, so e.g., the number 123 would be encoded digit-by-digit as:

0001 0010 0011

whereas in pure binary it would be encoded as

01111011

So you immediately see that BCD is not so efficient. That's why it is not used very often. Encoding and decoding is very easy as you take the same approach as with pure binary, but perform it per digit (ie., per group of 4 bits).

Which object is a storage container that contains data in rows and columns and is the primary element of Access databases? procedures queries forms tables

Answers

Answer:

tables

Explanation:

For accessing the database there are four objects namely tables, queries, forms, and reports.

As the name suggests, the table is treated as an object in which the data is stored in a row and column format plus is the main element for accessing the database

Therefore in the given case, the last option is correct

Answer:

D. tables

Explanation:

took the test, theyre right too

What is the best application to create a slide show presentation?

Answers

Answer:

Microsoft Windows File Manager

PowerPoint but for your question chrome seems to be the right answer cause other ones don’t make sense but like also isn’t PowerPoint part of windows so it might be that

To build a user interface that contains graphical components, the components ____. must each be added to a separate panel. must be added directly to a frame component. must be added to a panel that is contained within a frame. must be added to a frame that is contained within a panel.

Answers

Answer:

To build a user interface that contains graphical components, the components must be added to a panel that is contained within a frame.

Explanation:

Other Questions
Shawn the builder estimated that it would cost $12,000 to build a new conservatory. In fact it cost $13,200 What was the percentage error? Module 7When you multiply a difference of two squares, why is your answer a binomial instead of a trinomial like when you multiply the sum of two squares? Create an example of multiplying a difference of two squares and show your work as you simplify the expression.WILL GIVE BRAINLIEST g "Which philosophy in setting budgeted amounts assumes both the complete elimination of inefficiencies and a level of absolute efficiency?" approximately 13% of the USA population is left handed. Hiw many lefties would expect in a school of 420 students The Owens family has saved up $50,000 for a down paysaved up $50,000 for a down payment on a house. They aregoing to use this money as the 10% down payment their lender is reqmake to purchase the house. What is the price of the neeune house. What is the price of the house that the Owens familyis buying? Write a program that asks a user to predict how many rolls of a single die it will take to reach 100. When all rolling is finished, compare the given answer to the results and let them know if they did well or not. The owner of a fish market has an assistant who has determined that the weights of catfish are normally distributed, with mean of 3.2 pounds and standard deviation of 0.8 pound. If a sample of 4 fish is taken. What is the probability that the sample means will be more than 3.4 pounds? What is the area of a sector with a central angle of 5pi over 6 radians and a radius of 5.6ft Company A is a manufacturer with current sales of $3,700,000 and a 60% contribution margin. Its fixed costs equal $1,810,000. Company B is a consulting firm with current service revenues of $3,800,000 and a 20% contribution margin. Its fixed costs equal $330,000.Compute the degree of operating leverage (DOL) for each company.Identify which company benefits more from a 20% increase in sales.Company ACompany B Can you guys help me answer these questions? HEEELPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP Identify the internal control weakness in the following situations. State how the person can hurt the company.A. Jerry Miller works as a security guard at ALTEX parking in Denver. Miller has a master key to the cash box where commuters pay for parking. Each night Miller prepares the cash report that shows (a) the number of cars that parked on the lot and (b) the days cash receipts. Sandra Covington, the ALTEX treasurer, checks Millers figures by multiplying the number of cars by the parking fee per car. Covington then deposits the cash in the bank.B. Sharon Fisher is the purchasing agent for Manatee Golf Equipment. Fisher prepares purchase orders based on requests from division managers of the company. Fisher faxes the purchase order to suppliers who then ship the goods to Manatee. Fisher receives each incoming shipment and checks it for agreement with the purchase order and the related invoice. She then routes the goods to the respective division managers and sends the receiving report and the invoice to the accounting department for payment.C. The external auditor for Mattson Financial Services takes a global view of the audit. To form his professional opinion of Mattsons financial statements, the auditor runs no tests of Mattsons financial statements or of the underlying transactions. Instead, the auditor computes a few ratios and compares the current-year ratio values to the ratio values a year ago. If the ratio values appear reasonable, the auditor concludes that Mattsons financial statements are okay. Figure B is a scaled copy of Figure A.What is the scale factor from Figure A to Figure B? Please answer fast!!!! A person who cast metal is called a __________. Solve the following system of equations. x+y+8z=16 2x+7z=19 4x-4y+4z=4 how to use command prompt A grid map marks the plot of Harolds garden in meters. The coordinates of the quadrilateral-shaped property are G(8, 3), A(4, 8), R(10, 0), and D(2, 5). He wants to build a short fence around the garden. The perimeter of his garden is meters. The following excerpt was written in 1882: "[F]rom and after the expiration of ninety days next after the passage of this act, and until the expiration of ten years next after the passage of this act, the coming of Chinese laborers to the United States be, and the same is hereby, suspended; and during such suspension it shall not be lawful for any Chinese laborer to come, or having so come after the expiration of said ninety days to remain within the United States." What did the passage of the Chinese Exclusion Act reflect about American society in the late 1800s 1) Suppose that a function f(x) is defined for all real values of x, except x = xo. Can anything be said about LaTeX: \displaystyle\lim\limits_{x\to x_0} f(x)lim x x 0 f ( x )? Give reasons for your answer. Tanner-UNF Corporation acquired as a long-term investment $200 million of 7% bonds, dated July 1, on July 1, 2018. The market interest rate (yield) was 9% for bonds of similar risk and maturity. Tanner-UNF paid $160 million for the bonds. The company will receive interest semiannually on June 30 and December 31. Company management is holding the bonds in its trading portfolio. As a result of changing market conditions, the fair value of the bonds at December 31, 2018, was $170 million.Required:1. Prepare the journal entry to record Tanner-UNFs investment in the bonds on July 1, 2018 and interest on December 31, 2018, at the effective (market) rate.2. Prepare any additional journal entry necessary for Tanner-UNF to report its investment in the December 31, 2018, balance sheet.3. Suppose Moodys bond rating agency downgraded the risk rating of the bonds motivating Tanner-UNF to sell the investment on January 2, 2019, for $150 million. Prepare the journal entries to record the sale.