How to create a trace table
Answer:
To create table g
Go to insert tab
Choose Table option at left corner and measure the table box.
Table is created in Microsoft.
write a programme to input the values of two angle and find out the third angle of a triangle
Answer:#include <stdio.h>
int main()
{
int ang1, ang2, ang3; /*are three angles of a triangle */
/* Read two angles of the triangle from user separated by comma*/
printf("Input two angles of triangle separated by comma : ");
scanf("%d, %d", &ang1, &ang2);
ang3 = 180 - (ang1 + ang2); /* Calculates the third angle */
printf("Third angle of the triangle : %d\n", ang3);
return 0;
}
The photograph shows a way individuals work together in groups a the photograph
Answer:
D. AdministratorsExplanation:
Hope it helps
#CarryOnLearning
Which of the following best describes the purpose of an IP address?
IP addresses provide a unique number for identifying devices that send and receive information on the Internet
IP addresses assist in the reconstruction of a message that has been divided into many packets
IP addresses indicate the location where an internet-connected computing device was manufactured
IP addresses indicate how many times an individual packet has been requested by a router
IP addresses provide a unique number for identifying devices that send and receive information on the Internet
The best describes the purpose of an IP address is, that IP addresses provide a unique number for identifying devices that send and receive information on the Internet. The correct option is A.
What is an IP address?An IP address is an address of the network of computers connected to the internet. The address is a sequence of numbers that are provided by the internet servers.
The full form of the IP address is internet protocol. It is the online address that is provided by the internet provider, The address will easily recognize if the person is using the internet. This address will be connected to the computers.
Thus, the correct option is A. IP addresses provide a unique number for identifying devices that send and receive information on the Internet.
To learn more about IP addresses, refer to the link:
https://brainly.com/question/16011753
#SPJ6
I NEED IT ASAP!!!!!!!
Search for a "family budget estimator" and calculate the monthly expenses for a family living in your city.
Insert a screenshot of the calculator you used, as well as all of the information you entered into it. If you are unable to insert a screenshot, then list the information below
MONTHLY COSTS
••• adults and ••• children
•••
2 adults and 4 children
Union County, NJ
HOUSING ••• $1,731
FOOD ••• $1,142
CHILD CARE ••• $1,723
Transportation ••• $1,173
HEALTH CARE ••• $1,528
OTHER NECESSITIES ••• $1,159
TAXES ••• $1,411
Monthly Total ••• $9,865
Annual Total ••• $118,386
Hey, Another question. I'm sure it's possible in the future, but I wanted to ask if HIE would be possible. I'm sure it would be, I just want to hear other people's comments on this. (Beatless)
Answer:
Originally Answered: Will there ever be a band as big as the Beatles? No, there will never be a band as popular as the Beatles. For one thing they were exceptionally good in a time of great music in general.
Explanation:
please mark this answer as brainliest
1.The hardware that allows data to be transmitted from a computer along a telephone line to another computer at the other end is a_____
modem
keyboard
visual display unit
printer
So this is called a modem we use it to send and receive info over telephone lines
Hope this helps
-scav
why there is a need to "think before you click"?
Answer:
what are you saying is this a question
"think before you click"
"think before you click"It's the saying for Social Media Users.
We don't know what's there behind a particular post,tweet, comment,message.
And when you react to some of it by Commenting on it you maybe right or maybe wrong because if you comment to one saying 'Yeah I think this person is truly sincere' but the reality behind him is he is an abuser or a rude person in the public's view.
But you said he is sincere then People will asume you as them like a bad person supporting bad ones so thats The example of it "think before you click"
And
"Think before you leap"
is for think,say,react, before knowing the reason.
or
Take steps with precautions and carefully
may this helps you
bye
Which service uses a broadband connection?
Select one:
O a. DSL
O b. 3G and 4G
O c. dial up
O d. all connections use broadband
Answer:
d
Explanation:
because all in one question form
Write is an ipo cycle? Describe with figure
Answer:
The input–process–output (IPO) model, or input-process-output pattern, is a widely used approach in systems analysis and software engineering for describing the structure of an information processing program or other process.
PLEASE MARK ME AS BRAINLIEST1.03!! need major help!!
Answer: the answer is A
Explanation:
Moore's law, prediction made by American engineer Gordon Moore in 1965 that the number of transistors per silicon chip doubles every year. ... Moore observed that the number of transistors on a computer chip was doubling about every 18–24 months.
PLSSS HELP!! During the late 20th century, immigration to the United States increased dramatically from
1.Asia and northern Africa
2.southern and eastern Europe
3.Asia and Latin America
4.Sun-Saharan Africa and Australia
5.Latin America and western Europe
12345678910
Answer:
The correct answer is 3. Asia and Latin America.
Explanation:
America has historically been, and continues to be, one of the main arrival points for migrants from all regions of the world, mainly due to the security and political and economic stability that the United States offers its citizens. In recent years, the main regions that have sent immigrants to the United States have been Asia (Southeast Asian nations, such as Vietnam, the Philippines; authoritarian countries such as China or extremely poor such as India) and Latin America (especially Mexico, Honduras, El Salvador, Guatemala and Nicaragua).
1. In the space below, explain how the Table Tools can be accessed in Word.
Answer:
Creating a Table
1) Click the Insert tab on the Ribbon
2) Click on Table
3) Highlight the number of columns and rows you’d like
OR
4) Click Insert Table
5) Click the arrows to select the desired number of columns
6) Click the arrows to select the desired number of rows
7) Click OK
Answer:
Click in the cell (or select multiple cells) that contains text you want to align. The Table Tools tab appears. Click the Layout tab under the Table Tools heading. … If you change the alignment of blank cells, any new text you type in those blank cells will appear according to the alignment you choose.
Explanation:
who likes sandshrew
Answer:
sandshrew is a cute character in pokemon
What is the definition of a performance, such as a poetry reading? O A. A work of art installed in public OB. A presentation of creative works OC. A collection of printed works D. A community-sponsored potluck
Answer:
(B) A presentation of creative works.
Explanation:
Because performing is similar to presenting and poetry is similar to free writing, or creative words.
PLEASE HELP Write a program that loads one three-digit number and prints the root of its largest
digits in python.
Answer:
num1 = float(input("Enter first digit of number: "))
num2 = float(input("Enter second digit of number: "))
num3 = float(input("Enter third digit of number: "))
if (num1 > num2) and (num1 > num3):
largest = num1
num_sqrt = num1 ** 0.5
elif (num2 > num1) and (num2 > num3):
largest = num2
num_sqrt = num2 ** 0.5
else:
largest = num3
num_sqrt = num3 ** 0.5
print("The square root of largest digit of the three digit number is",num_sqrt)
Explanation:
num1 = float(input("Enter first digit of number: "))
num2 = float(input("Enter second digit of number: "))
num3 = float(input("Enter third digit of number: "))
if (num1 > num2) and (num1 > num3):
largest = num1
num_sqrt = num1 ** 0.5
elif (num2 > num1) and (num2 > num3):
largest = num2
num_sqrt = num2 ** 0.5
else:
largest = num3
num_sqrt = num3 ** 0.5
print("The square root of largest digit of the three digit number is",num_sqrt)
print a test page what is the answer.
Answer:
The keys "Ctrl" and "P"
Write a program to create a list of numbers in the range of 1 to 10. Then delete all the even numbers from the list and print the final list.
How can users open a shared worksheet if they do not have Excel installed on a computer? visit Microsoft’s website use Office365’s home page open a PDF version for editing use Excel Online through the 365 portal
Answer:
use Excel Online through the 365 portal
Explanation:
just did it
Caden, Jacob, Lucas, and Michael, whose last names are Armstrong, Boothe, Gardner, and Robinson, live in four houses in a row.
From the clues below, find each person’s full name and house position (with house number 1 at the left).
1. Michael doesn’t live next door to Lucas.
2. Robinson’s house is after Gardner’s and before Michael’s.
3. Boothe’s house is just before Armstrong’s.
4. Lucas’ house, which is not first, is somewhere to the left of Caden’s.
Answer:
Jacob Gardner - Lucas Robinson - Caden Boothe - Michael Armstrong
Explanation:
According to clue 4, Lucas's house is not the first, and he has a house on his right, so it can only be house 2 or house 3. Therefore, Caden's house (which is on the right right of Lucas's), it can only be house 3 or house 4.
In turn, track 1 says that Michael's house is not next to Lucas's, so it can be 1 (if Lucas's house is 3) or 4 (if Lucas's house is in 2).
Track 2 says that there is a house before Michael's, which eliminates the possibility that Michael's house is number 1 (there would be no previous house). Thus, in addition, Lucas's house turns out to be 2 (Michael's house is not next door) and Caden's is 3, while Jacon's is house 1.
Jacob - Lucas - Caden - Michael
In turn, regarding surnames, clue 2 says that Robinson's house is after Gardner's and before Michael's. Thus, Robinson can be the last name of Jacob or Lucas, and Gardner that of Lucas or Caden. Now, since Boothe's house is just before Armstrong's, the order would be as follows:
Jacob Gardner - Lucas Robinson - Caden Boothe - Michael Armstrong
One way to use contiguous allocation of the disk and not suffer from holes is to compact the disk every time a file is removed. Since all files are contiguous, copying a
file squires a seek and rotational delay to read the file, followed by the transfer at full speed. Writing the file back requires the same work. Assuming a seek time of 5 msec, a rotational delay of 4 msec, a transfer rate of 8 MB/sec, and an average file size of 8 KB, how long does it take to read a file into main memory and then write it back to the disk at a new location? Using these numbers, how long would it take to compact half of a 16-GB disk?
Answer:
The answer is below
Explanation:
a) Seek time = 5 msec, transfer time = 4 msec, transfer rate = 8 MB/sec = 8000 KB/sec, average file size = 8 KB
Transfer time = 8 KB ÷ 8000 KB/sec = 1 msec
The time required to read and write is twice the sum of the seek and transfer time.
Total time = (5 msec + 4 msec) * 2 + 1 msec = 19 msec
b) half of 16 GB = 8 GB = 8000000 KB
number of read and writes = (8000000 KB of total file size/ 8 KB of average file size) * 2 = 2000000
Transfer rate = 8 MB/sec = 0.008 GB/sec
Transfer time = 8 GB ÷ 0.008 GB/sec = 1000 sec
Total time = (5 msec + 4msec) * 2000000 + 1000 sec = 19000 sec
What changes can be done using image editing tool?
a) Resize b) Crop c) Resize and crop
List two building techniques or materials that should be considered if you are building in Tornado Alley.
What is 1 of the rules for naming variables?
Answer:
Rules for Naming VariablesThe first character must be a letter or an underscore (_). You can't use a number as the first character. The rest of the variable name can include any letter, any number, or the underscore. You can't use any other characters, including spaces, symbols, and punctuation marks.#Markasbrainlessplease✅
1. What are you going to do if someone ask for your personal information online?
Answer:
Ask them why they need such information.
Explanation:
If they can't give you a good reason, please don't share your personal info. ♥
Answer:
If someone ask my personal information online i'll trun off my mobile data or wi-fi and then i'll block the user's Id
Explanation:
hope it is helpful to youThumbnail sketches have vanishing points and show a natural view of an image.True or False?
Answer:
False!
Explanation:
I'm an artist- thumbnail sketches are smaller, looser versions of a bigger drawing you're going to create. They can be of anything and don't need to have a vanishing point/natural view of an object.
You learned that you can use the tags to insert a link to another webpage. One problem that webpage developers face is that, after a time, links may no longer work. Can you think of ways that you can avoid broken links?
Answer:
Create hyperlinks instead
Explanation:
Risk of new technology is NOT evaluated by asking questions during which phase?
Product screening
Risk assessment
Concept testing
Test marketing
Answer:
the answer is D
Explanation:
hope this helps :)
Dropdown
Choose the word that matches each definition. Each term is only used once.
: to restart a device without powering it down
: to start a device from a powered-off state
: to reset a device back to factory configuration, losing all stored data and configuration
1-The volume and the home bottons
Answer:
Warm boot, Cold boot, hard reset
Explanation:
just did it on edge
write a program to input a number and check whether it is even or odd number
its qbasic question
no links plzz
Answer:#include <stdio.h>
int main() {
int num;
printf("Enter an integer: ");
scanf("%d", &num);
// true if num is perfectly divisible by 2
if(num % 2 == 0)
printf("%d is even.", num);
else
printf("%d is odd.", num);
return 0;
}