list down four ways to start word 2010​

Answers

Answer 1
1Locate the Word icon on the Start button's All Programs menu. Don't click to start Word now!
2Right-click the Microsoft Word 2010 menu item. A pop-up menu appears.
3Choose Send To→Desktop (Create Shortcut).
4Press the Esc key to hide the Start button menu and view the desktop.

Related Questions

write c++ program to find maximum number for three variables using statement ?​

Answers

Answer:

#include<iostream>

using namespace std;

int main(){

int n1, n2, n3;

cout<<"Enter any three numbers: ";

cin>>n1>>n2>>n3;

if(n1>=n2 && n1>=n3){

cout<<n1<<" is the maximum";}

else if(n2>=n1 && n2>=n3){

cout<<n2<<" is the maximum";}

else{

cout<<n3<<" is the maximum";}

return 0;

}

Explanation:

The program is written in C++ and to write this program, I assumed the three variables are integers. You can change from integer to double or float, if you wish.

This line declares n1, n2 and n3 as integers

int n1, n2, n3;

This line prompts user for three numbers

cout<<"Enter any three numbers: ";

This line gets user input for the three numbers

cin>>n1>>n2>>n3;

This if condition checks if n1 is the maximum and prints n1 as the maximum, if true

if(n1>=n2 && n1>=n3){

cout<<n1<<" is the maximum";}

This else if condition checks if n2 is the maximum and prints n2 as the maximum, if true

else if(n2>=n1 && n2>=n3){

cout<<n2<<" is the maximum";}

If the above conditions are false, then n3 is the maximum and this condition prints n3 as the maximum

else{

cout<<n3<<" is the maximum";}

return 0;

Why would we need to consider implementing our business blockchain application not on Bitcoin but Ethereum?

Answers

True or False
1. Phishing is the act of sending multiple emails to multiple users in hope of having
2. Spoofing is the act of obtaining unauthorized access to data from a computer
network.
3. Extortion is the act of using the internet to threaten or damage someone's
reputation to extort money or anything else of value.
4. In late 2014, LimeWire was raided for the second time due to years of pirating
movies, music, games, books and other software.
5. Electronic harassment is also referred to as cyberbullying.
6. Non-delivery of service is the act of devising a scheme wherein a culprit posts an
item or service for sale over the internet, and once the transactions have been done, does not
give the item or service.
7. Encryption is the process of converting raw to data code.
8. In piracy, trackers are used to identify IP addresses currently sharing a pirated
file.
9. Wager Gambling is the act of betting on any sports event over the internet.
10. Most email services today have spam or bulk folder that automatically puts
these suspicious emails to that folder.

1. An output device sends data to a computer.

(YALL PLEASE I NEED HELP I GOT AN F ON THIS, I HAVE 1 MORE CHANCE)

Answers

Answer: False. Input device does not receive data either.

Explanation:


What is a program? - define and explain

Answers

Answer:

a series of coded software instructions to control the operation of a computer or other machine.

Explanation:

a set of instructions that process input, manipulate data, and output a result. For example, Microsoft Word is a word processing program that allows users to create and write documents.

59. When analyzing the IDS logs, the system administrator noticed an alert was logged when the external router was accessed from the administrator's Computer to update the router configuration. What type of an alert is this

Answers

Answer:

False Positive

Explanation:

A false positive or false positive error may be defined as a result which indicated that the given conditions seems to exists when it actually does not. It is classified as a type I error. It tests a check for a single condition and then falsely provides a positive or affirmative decision.

In the context, a false positive type of error occurred when the external router of the system administrator was accessed from the computer of the administrator that was used to update the configuration of the router.

Document templates are available online.
True
False

Answers

True anything is available online.

Answer:

true

Explanation:

anything is avalible onlkne

Which common online presentation medium do people use to present their own articles?
A. news portal
B. company website
C. photo-sharing website
D. weblog

Answers

A: news portal hope this helps
A. news portal is the answer

PLS HELP ASAP!! which of these would be easier to do in a database program than a spreadsheet program? check all of the boxes that apply.
• Store a list of favorite books for personal use
• email all customers who purchased a laptop the previous year
• perform complex calculations
• collect and analyze survey results
• update the record with ID#5872033

Answers

Answer:

a,b

Explanation:

Answer:

It's B,D,E

Explanation:

Write a recursive method that takes four inputs: a 1-D array of Strings (i.e., exams), the length of this 1-D array (i.e., n), an index to access array elements (i.e., i) and a 2-D array containing double values (i.e., ret).

Answers

Answer:

import java.util.*;

public class Main

{

       public static void main(String[] args)  

       {

           String [] exams = {"1;2;3;4;" , "5;6;7;8;" , "9;10;11;12;" };

           double[][] n = new double[exams.length][4];

           examArray = convert(exams , exams.length , 0 , n);

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

           {

               for(int j = 0 ; j < 4 ; j++)

               {

                   System.out.print(n[i][j] + "\t");

               }

              System.out.print("\n");

           }

       }    

       

/* recursive function convert defined here */

       public static double[][] convert(String[] exams , int number , int x , double [][] result)

       {

           if(x==number)

               return result;

           else

           {

               String total = exams[x];  

               String currentScore = "";

               int p = 0;

               for(int j = 0 ; j<totalScore.length() ; j++)

               {

                   char ch = total.charAt(j);/

                   if(ch==';')

                   {

                       result[x][p] = Double.parseDouble(currentScore);

                       p++;

                       currentScore = "";

                   }

                   else

                   {

                       currentScore = currentScore + Character.toString(ch);

                   }

               }

               return convert(exams , number , x+1 , result);

           }

           

       }

}

Explanation:

The Java source code defines a recursive function or method called convert that converts the results of three students that sat for four examinations to double or float number and screens their individual results for the four exams on the screen.

Mark is working on a feature film project. His job is to portray the economic status, occupation, and attitude of the characters visually. Which role is he playing?

Answers

Answer:

Videographer

Explanation:

Answer:

i think i would be costume designer

Explanation:

because if you spell videographer  it gives you the little red squiggly line

You wrote a program to allow the user to guess a number. Complete the code to generate a random integer from one to 10.
from random import *

# Generate and save a random number.
correct =
(1,10)
NEED HELP FAST

Answers

The code to generate a random number from 1 to 10 is as follows:

import random

print(random.randint(1,10))

The code is written in python.

Code explanation:The first line of code is used to import a module name "random". The random module is use to generate the random numbers.The second line of code, we use the object in random to generate integers from 1 to 10. The print statement is then used to print the random numbers from 1 to 10. Running the code we generate random numbers between 1 to 10 as required.

learn more on python code here: https://brainly.com/question/26104476?referrer=searchResults

Answer:

randint

Explanation:

Got it correct on edge

Which of the following is a key aspect of any IT position? installation of fiber optic cables

network security

computer maintenance

network administration

Answers

Computer maintenance

Answer:

network security

Explanation:

edg2021

IT security is woven into each of the jobs in technology, with each individual in IT usually responsible for some area of security, from password management to updating desktops with patches. Having preventive plans in place as well as what to do after a potential breach involves all areas of a business

Which hard drive type would be best to use by the army when writing operational data while traveling in a jeep in rough terrain?

Answers

Answer:

They should use an SSD.

Explanation:

The fact that the writing operation takes place in a jeep in rough terrain suggests that they should be using an SSD (Solid State Drive) which unlike HDD's, don't have a spinning disk and a head that writes data on it. So there are no moving parts in an SSD,  and they have about 30 times more resistance to shock/vibration damage which is really helpful in this situation.

I hope this answer helps.

Help meee pleaseeee

Answers

Answer:

1. DO, RECEIVE

2. PERFORM

3. STORE, TAKE IN, CALCULATE

4. EXPRESS

5. COMPUTE, DISPLAY

Explanation:

1. A computer DO or RECEIVE data

2. Modern automatic digital computers PERFORM more than 100 mln operations in each second

3. A computer STORE information or data, TAKE IN a sequence of operations on information and CALCULATE answers.

4. The hardware inside the computer EXPRESS arithmetical operations or logical relations

5. When the computers COMPUTE results, they DISPLAY them.

1. DO, RECEIVE

2. PERFORM

3. STORE, TAKE IN, CALCULATE

4. EXPRESS

5. COMPUTE, DISPLAY

Write at least and explain four types of escape sequences and create an example in an IDE which consist of the mentioned escape sequences.

Answers

Answer:

- \' is used to escape a single quote in a string enclosed in single quotes like;

my_string = 'this is John\'s ball'.

- \n is used to jump to a new line, Eg;

my_string = "Johns is a good boy\nbut he hates going to school."

the next set of the string after the '\n' character is displayed on the next line.

- \t is used to add a tab space to a string.

my_string = 'Jane is \thungry'

the character adds four character spaces before the word 'hungry'.

- \r adds a carriage return (or enter in keyboards) to start a new block paragraph in a string.

my_string = "Johns is a good boy\rbut he hates going to school."

Explanation:

Escape sequences in programming are used to format strings or output syntax of a program. They always begin with the backslash. Examples of escape sequence are " \' ", "\n", "\t", "\r", etc.

.A card that connects directly to the motherboard of the computer and has external sockets so that the computer can be connected to a network via cables is called

Answers

Answer: Network interface controller

Explanation:

A network interface controller is also referred to as the network adapter or LAN adapter. It is simply a component of the computer hardware that is used to connects a computer system to a particular network.

It is a card that connects directly to the motherboard of the computer and has external sockets so that the computer can be connected to a network via cables.

Natasha's laptop has long-term storage that uses a magnetic arm to move over a platter to read and write data. It is cheaper than other storage options and has a high capacity of storage, but because of its moving parts, it is not as durable than other options and runs very loudly. What type of long-term storage does her computer have?

A.
read-only memory (ROM)

B.
hard disk drive (HDD)

C.
random access memory (RAM)

D.
solid-state drive (SSD)

Answers

SSD

Explanation:

But I prefer SSD rather than HDD , because there are soo many benifits of SSD like very fast read and write speed , small in size , it did not corrupt your data easily , did not get damage by any physical impact . SSD is like bigger version of smartphone’s sd card. Only one thing is that SSD is too most costly than HDD

Ssd is your answer you’re welcome

Cassette tape is an example of ____ memory

Answers

Answer:

Cassette tape is an example of computer memory.

Of the computers memory duhhhh

fill in the blanks y'all-

-------- is a pictorial representation of a step-by-step algorithm

I will give brainliest, just answer quick :) ​
k I don't need it anymore

Answers

Answer:

Flowchart

Explanation:

Flowchart is a pictorial representation of a step-by-step algorithm.

It comprises of the various steps involved in a process which are usually well arranged in an orderly and sequential manner.

It is also referred to how algorithms are diagrammatical put up for better analysis .

The Ntds. dit file is a database that stores Active Directory data, including information about user objects, groups, and group membership. It includes the password hashes for all users in the domain.
Just take the points.

Answers

Answer:

I hate it

Explanation:

Mark it as the brainliest if u love god

Write an assembly subroutine that check if a number is in the interval of [0, 10] and return 1 if the number is in this interval and 0 otherwise. Call this subroutine to check if each integer in an array in the memory is in this interval and write the results of all numbers into another array in the memory

Answers

Answer:

.data

array: .word 1,3,5,7,9,11,13,15,17,19

result: .word 0,0,0,0,0,0,0,0,0,0

.text

  la $s0, array

  la $s1, result

  addi $t0, $zero, 0

  INTERVAL:  bge $t0, 10, END

     sll $t1, $t0, 2

     add $t2, $s0, $t1

     lw $t2, 0($t2)

     jal LIMIT

     IF:    bne $a0, 1, ELSE

        add $t3, $s1, $t1

        sw $t2, 0($t3)

     ELSE:

     addi $t0, $t0, 1

     j INTERVAL

  END:    

  addi $v0, $zero, 10

  syscall

  LIMIT:  

     addi $a0, $zero, 0

     START: bge $t2, 0, NEXT

        b ENDLIMIT

     NEXT:  ble $t2, 10, SET

        b ENDLIMIT  

     SET:   addi $a0, $zero, 1

     ENDLIMIT:

     jr $ra

Explanation:

The assembly source code is used to create a subroutine called "INTERVAL" that checks if a number from an array is in a range of 1 to 10. The program returns 1 if the condition is met but 0 if otherwise.

PLEASE ANSWER ASAP! THANKSSSSS

Answers

That is hard .....……

What problems might scientists encounter in using this ethod in the field that you would not have encountered in the simunlation?

Answers

Answer:

Errors that would be observed as a result of natural input in the field not found in the simulation.

Explanation:

The simulation is a virtual representation of the activities to be experienced in the field, it eliminated natural factors that could affect the result of the experiment in the field. In the field, scientists are able to anticipate errors based on records of natural factors like temperature, humidity, etc, working around it to get the desired result.

To add a glow effect to WordArt text, which of the following should be done?

1.Change the Shape Style

2.Change the Shape Fill

3.Apply a Shape Effect

4.Apply a WordArt Text Effect

Answers

number 2 is the correct answer

To add a glow effect to WordArt text, you apply a WordArt Text Effect.

WordArt texts are simply texts that have special effects, such as

ShadowsGlowOutline Reflection

To apply the glow text effect (and any other effect) to a WordArt text, you simply select the text, and select text effect in the home menu

Hence, the step that should be done is (4) Apply a WordArt Text Effect

Read more about texts at:

https://brainly.com/question/12809344

Hardcoding numbers (unnamed, literal constants) in code without explanation is a bad programming practice. What are these hardcoded numbers known as

Answers

Answer:

Magic numbers.

Explanation:

In Computer programming, hardcoding can be defined as a software development process which typically involves directly embedding or infusing data into the source code of a computer software application or program rather than generating the data at runtime or sourcing (obtaining) it from an external source.

Hence, hardcoding numbers (unnamed, literal constants) in code without explanation is a bad programming practice. These hardcoded numbers are known as magic numbers.

A magic number refers to a hard-coded value embedded into the source code of a software program without explanation and as such are very difficult to update.

Overflow and roundoff errors result from real-world limitations in representing . . . (10 points)
A. number systems
B. fractions
C. place values

Answers

Answer:

C. place values

Explanation:

Place value can be defined as the numerical value representing a digit owing to its position in a number. Some examples of the various place values used in representing each digit are tenths, hundredths, thousandths, unit, tens, hundreds, thousands etc.

For example, in the number 316.2;

The place value of 3 is hundreds. The place value of 1 is tens. The place value of 6 is units. The place value of 2 is tenths.

In the real-world, their instances where there are limitations in counting and representing real numbers that are infinite (too small or too large). In order to overcome these limitations or barriers, we use place values.

An overflow error arises when a real number cannot be represented because it is too large and exceeds the upper limits of a range chosen.

Also, a roundoff error can be defined as the difference between the output generated from an algorithm using an exact or actual numbers and the output generated using rounded or finite-precision numbers.

Hence, overflow and roundoff errors result from real-world limitations in representing place values.

When you go to Starbucks, you note that your IP address is 192.168.104.2, and that your netmask is 255.255.240.0. . How many bits are in the host portion of this subnet

Answers

Answer:

The correct answer is 4 bits.

Explanation:

First we must identify what class it belongs to and we see the first octet on the left side of the IP address, which is 192 and we can determine that it is a Class C address, therefore its mask is:

Default mask 255.255.255.0 => 24 bits.

IP mask 255.255.255.240 => 28 bits.

We can conclude that I borrow 4 bits to calculate subnets.

We can conclude the following:

[tex]2^{n} --> 2^{4} -->[/tex]16 subnets maximum.

How do I play my ps5 on my iMac without remote play, I don’t want remote play because it glitches so much and I don’t know how to fix it and I can’t find any other way to play on my iMac so can someone help me please thanks,

Answers

Maybe restart the iMac

You cant bc well you cant

Name the technique that uses a scheme to sum the individual digits in a number and stores the unit's digit of that sum with the number.

Answers

Answer:

Parity Bit

Explanation:

Given that Parity bit is a form of strategy or method that utilizes a scheme in adding a solitary bit to a binary string. This can be either 1 or 0, thereby making the total quantity of bit to become either odd parity bit or even parity bit during storage.

Hence, the technique that uses a scheme to sum the individual digits in a number and stores the unit's digit of that sum with the number is called PARITY BIT.

How would you maximize the use of a class?

Answers

Answer:

can't understand your qs.......

Other Questions
Which expression is the same as 400.902 how to make 2.126 as a fraction where are tissues in a herbaceous stem established? CAN SOMEONE PLZ HELP!!!Are the chemical equations balanced or not? Find the coordinates of the image after the translationof line RS with vertices: R(-2,-4) and S(0,2).Translation: (x,y) --> (x-3, y+4) Chlorite anion was exposed to strong radiation and had 2 successive electrons removed, creating a chlorite cation. What is the molecular geometry on this chlorite cation? The Declaration of Independence and U.S. Constitution were influenced by the rights of life, liberty, and property. The philosopher who advocated these unalienable rights was A. Carle Marx B. Montesquieu C. John Locke D. William Blackstone HELPP I need the answer A town has some extra money. Some citizens think that the money should be spent on a new library. Others think it should be used to build a new park. What should the citizens do to solve this problem? A. Go to court to decide how to spend the money B. Hold a vote to decide how to spend the money C. ask the govemor to decide how to spend the money D. Have state representatives decide how to spend the money one side of an isosceles triangle is three times as long as another side of the triangle. If the perimeter of the triangle is 140, then what is the length of the base of the triangle please answer quick I need help on a question In a right angled triangle, right angle at C, if AB = 32 cms and sin B=5 by 8 find AC Calculate the molar mass of a 2.89 g gas at 346 ml, a temperature of 28.3 degrees Celsius, and a pressure of 760 mmHg. On opening day at Darien Lake, Kelly pays $40 for admission to the park. She wants to playthe games in the midway. Each game cost $1.50 to play. Write an expression to representKelly's total cost at the park if she plays "g" games. economic losses from natural disasters include not only those tied to the destruction of buildings and Need help understanding this I dont get it , someone help me understand it please 1. Final position minus the initial position is called I'm really struggling with this problem, can someone help me please? :( Fadil sells televisions. He earns a fixed amount for each television and an additional $20 if the buyer gets an extended warranty. If Fadil sells 11 televisions with extended warranties, he earns $770. How much is the fixed amount Fadil earns for each television Pls help me 17 points!!!