help a fellow coder and anser these 5 questions
Anne wants to hide her age by converting it from 13 to 1101. Which number system is Anne converting to?

Alphanumeric
Alphabetical
Binary
Decimal
Question 2(Multiple Choice Worth 5 points)

(04.03 LC)

Which of the following allows a user to quickly access a frequently used computer app?

Alphabetize program icons.
Create a shortcut on the toolbar.
Delete all icons on the screen.
Place all icons in one folder.
Question 3(Multiple Choice Worth 5 points)

(04.03 LC)

Which is an example of a binary number?

25
01111
#00FF00
Two
Question 4(Multiple Choice Worth 5 points)

(04.03 MC)

Alex needs to add a line of code to his program that will convert the number 568 to a binary number. Which function should Alex use?

bin()
translate()
digi()
print()
Question 5(Multiple Choice Worth 5 points)

(04.03 LC)

Which of the following means to find and fix errors in code?

Debug
Document
Error check
Restore

Answers

Answer 1

Answer: yes because it helps

Explanation: it shows everything


Related Questions

Write a C program to insert and delete values from a stack(to perform pop and push operations) using an array data structure

Answers

Answer:

#include<stdio.h>

// Method to insert a value into a stack

void push(char value, char myStack[], int *top, int sizeOfStack){

   if(*top == -1){

       myStack[sizeOfStack - 1] = value;

       *top = sizeOfStack - 1;

   }

   else if(*top == 0){

       printf("Stack is full. \n");

   }

   else{

       myStack[(*top) - 1] = value;

       (*top)--;

   }

}

//Method to remove a value from a stack

void pop(char myStack[], int *top, int sizeOfStack){

   if(*top == -1){

       printf("Stack is empty. \n");

   }

   else{

       printf("Value removed: %c \n", myStack[(*top)]);

       // Now if the value removed was the last value in the stack

       // you should set top to -1.  

       // This would show that the stack is now empty

       if((*top) == sizeOfStack - 1){

           (*top) = -1;

       }

       else{

           (*top)++;

       }

   }

}

//Method to test the pop and push methods

int main() {

 //variable to hold the size of stack

 int sizeOfStack = 6;

 //create the stack

 char myStack[sizeOfStack];

 

 //set the top to -1

 //this is to show that the stack is initially empty

 int top = -1;

 //insert a value tot the stack

 push('x', myStack, &top, sizeOfStack);

 //print the value on the top

 printf("Value on top of stack: %c\n", myStack[top]);

 //insert another value to the stack

 push('y',myStack, &top, sizeOfStack);

 //print the value on the top of the stack

 printf("Value on top of stack: %c\n", myStack[top]);

 //insert another value to the stack

 push('z',myStack, &top, sizeOfStack);

 //print the value on the top of the stack

 printf("Value on top of stack: %c\n", myStack[top]);

 //remove the last inserted value

 pop(myStack, &top, sizeOfStack);

 //print the value on the top of the stack

 printf("Value on top of stack: %c\n", myStack[top]);

 //remove another value

 pop(myStack, &top, sizeOfStack);

 //print the value on the top of the stack

 printf("Value on top of stack: %c\n", myStack[top]);

 return 0;

}

Sample Output:

Value on top of stack: x

Value on top of stack: y

Value on top of stack: z

Value removed: z  

Value on top of stack: y

Value removed: y  

Value on top of stack: x

Explanation:

The code above has been written in c and it contains comments explaining important parts of the code. Please go through the comments.

It also contains a sample output resulting from the run of the program.

which statement about routers is !!!FALSE!!!

a. they (routers) put packets in the right order after they arrive at their destination

b. they are located at the intersections of the network of wires and cables that make up the internet.

c. they check the address on each packet that arrives and decide which way it should go next​

Answers

Answer:

b. they are located at the intersections of the network of wires and cables that make up the internet.

Explanation:

Given that Router is a computer networking device that operates by transferring data packets between computer networks, while also ensuring traffic organizing tasks on the Internet.

Hence, Routers put packets in the right order after they arrive at their destination by matching the destination IP address of the packet and one of the addresses in the routing table.

Also, Routers check the address on each packet that arrives and decide which way it should go next​ by ensuring the data packets are summarized for the outgoing interface recorded in the table entry.

Therefore, the correct answer is option B

What is a circuit breaker and how is it different from a fuse? Why do we need these two different devices?
DO NOT PLAGARIZE!

Answers

Answer:

Circuit breakers and fuses both have the same purpose, but a fuse will melt when stopping electricity where as circuit breakers can just be reset. You need both devices in order to stop a overload of power that could fry your electronics or worse, start fires.

Explanation:

In order to reduce the file size of an image in Word, the user should use
A. the Corrections tool to make the image less bright.
B. the Compress Pictures tool to change the picture's size.
C. text wrap to decrease the document's page count.
D. handles surrounding the image to make it appear smaller.

Answers

Answer:

The user should use;

B. The Compress Pictures tool to change the picture's size

Explanation:

The Compress Pictures tool in Microsoft Word allows a user to reduce a picture's file size inside the application window with options of compressions based on the intended use of the picture such as for emailing or onscreen view.

Options are available to compress all the pictures in the file or only those which are selected

The Picture Format tab is automatically displayed when a picture is selected and the Compress Pictures tool is included in the Adjust group within the displayed Pictures Format tab ribbon.

What market was technology designed to appeal to?

Answers

Answer:

Explanation: Technology has transformed marketing by making campaigns more personalized and immersive for people and creating ecosystems that are more integrated and targeted for marketers. And it's not just the interface between brands and people that have been transformed.

P16 Consider the following network. ISP B provides national backbone service to regional ISP A. ISP C provides national backbone service to regional ISP D. Each ISP consists of one AS. B and C peer with each other in two places using BGP. Consider traffic going from A to D. B would prefer to hand that traffic over to C on the West Coast (so that C would have to absorb the cost of carrying the traffic cross-country), while C would prefer to get the traffic via its East Coast peering point with B (so that B would have carried the traffic across the country). What BGP mechanism might C use, so that B would hand over A-to-D traffic at its East Coast peering point?

Answers

Solution :

Considering the following data :

[tex]$\text{ISP B}$[/tex] provides the national backbone to the regional [tex]$\text{ISP A}$[/tex].

[tex]$\text{ISP C}$[/tex] provides the national backbone to the regional [tex]$\text{ISP D}$[/tex].

Each of the ISP consists of one autonomous systems (AS).

[tex]$\text{ISP B}$[/tex] would like to hand over the traffic of C through the [tex]$\text{West}$[/tex] Coast.

The [tex]$\text{ISP C}$[/tex] would like to receive traffic from B's peering point via East Coast.

One way for [tex]$C$[/tex] to force [tex]$B$[/tex] to hand over all of [tex]$B$[/tex]’s traffic to [tex]$D$[/tex] on the east coast is for [tex]$C$[/tex] to  only advertise its route to [tex]$D$[/tex] via its east coast peering point with [tex]$C$[/tex].

Can someone help me?

Answers

*☆*――*☆*――*☆*――*☆*――*☆*――*☆*――*☆*――*☆**☆*――*☆*――*☆*――*☆

Answer: Try restarting the computer

I hope this helped!

<!> Brainliest is appreciated! <!>

- Zack Slocum

*☆*――*☆*――*☆*――*☆*――*☆*――*☆*――*☆*――*☆**☆*――*☆*――*☆*――*☆

Did you try command Q... or the X

How does making a call differ when using a cell phone public phon box? consider the kinds of user, types of activity and context of use

Answers

Answer:

Explanation:

Making A Call:

Public Cell Phone:

A public telephone box is a fixed and noncompact gadget that is associated by the means of electrical wires and is utilized for correspondence by making telephone calls. For settling on the telephone decision, both the telephones ought to be working appropriately and the wires interfacing both the cases ought to likewise be working appropriately without any harm. The voice is communicated starting with one gadget then onto the next as electrical signals pass across the wires.

Cell Phones:

A cellphone is a mobile and versatile gadget whose essential capacity and purpose are to build up correspondence by settling on telephone decisions. Dissimilar to the public telephone box, we don't utilize any wires, rather the correspondence is finished by the methods for a sim card in the telephone which is answerable for building up correspondence between the cellphone and the relating network tower. For the correspondence to occur or call to happen the sim in both the mobile phones should be working appropriately and should be associated with their separate or closest organization towers. The signs are moved from the gadgets to the organization towers which will be additionally moved to wanted cellphones and the other way around or vice versa.

Considering the device design based on:

a)  The kinds of User:

Individuals who don't utilize the telephone every now and again and talk for long hours sometimes when they use the telephone, for the most part, lean toward public telephone box since, supposing that you have a mobile cell phone and assuming you don't utilize it much, it is simply misused of cost. Be that as it may, in wireless the expenses are fixed upon the measure of time utilized for settling on telephone call decisions.

b) Type of activity:

Public telephone boxes can be utilized distinctly for settling on telephone decisions whereas personal digital assistance (PDAs, i.e cell phones) can be utilized to settle on telephone decisions, access the web, send instant messages, share pictures and video, and numerous different things.

c) Context of usage:

The context of usage whereby public telephone box is utilized when less often calls are made and the correspondence at whatever point made is for longer periods then public telephone boxes are utilized and furthermore individuals who don't wish to carry and move about with a cell phone and charge each an ideal opportunity to keep up the cell phones for the most part incline toward public telephone box. Individuals who are open to carrying the cell phones and have no issues charging the mobile and who need to settle on telephone decisions oftentimes buy the idea of cell phones over public telephone boxes.

write an algorithm to print the natural numbers from 1 to 15​

Answers

Answer:

1. n = [ ]

2. i = 0

3. j = i + 1

4. i = j

5. append i to n

6. Repeat 3 to 5

7. Stop when i = 15

Where is information stored in the computer?​

Answers

Answer:

files

Explanation:

data is stored in files

How does an Ac Machine work

Answers

Answer:

In a split system, the compressor condenses and circulates the refrigerant through the outdoor unit, changing it from a gas to a liquid. The liquid is then forced through the indoor evaporator coil or cooling compartment. The indoor unit's fan circulates the inside air to pass across the evaporator fins.

Explanation:

(hope this helps)

Can you please help me? I give you a brainlest
! ​

Answers

1.
2.satin stitch
3.lazy daisy stitch (detached chain )
4.chain stitch
5. cross stitch
6. french knot
7.
8.split stitch
9.
10. back stitch
the others i can’t tell.

Name the factors which of the following resources relate to :
RESOURCE FACTOR
1.Computer
2.Personal secretary
3.Raw materials
4.Laboratory equipment
5.The administration block

Answers

Answer:

1. Computer; Capital

2. Personal secretary; Labor

3. Laboratory equipment; Capital

4. The administrative block; Capital

Explanation:

The factors of production includes;

a. Land; Which comprises of the natural resources

b. Labor; Physical and mental human resources

c. Capital; Encompasses resource which are manmade, including equipment and  buildings

d. Enterprise; The act of or the combination of the other three factors of production

Therefore;

1. Computer; The computer is a manmade resource and is therefore a capital resource

2. Personal secretary; A personal secretary contribute mainly mentally to the production of goods and services and is therefore a labor resource

3. Laboratory equipment; The laboratory equipment being manmade is a capital resource

4. The administrative block; An administrative block is a building and is therefore a capital resource.

What does WSG mean in slang​

Answers

Answer:

With Special Guest

Don't Answer if you are going to give me a link! Don't Waste My Points!

Keisha is working with a furniture company to take branding photographs for their website. The furniture is fun, brightly colored, and meant for children’s rooms. What props should Keisha bring to get the best branding photographs for the company?

A.
some cups of steaming espresso and linen napkins

B.
adult clothing and dark, heavy curtains

C.
her camera equipment

D.
children’s toys and brightly colored rugs

Answers

Answer:

D. Childrens Toys and brigh colored rugs

Explanation:

It is because they mentioned that it was for children and they already have bright furniture, so it only makes sense.

What type of system is associated with weather that has lots of clouds and thunderstorms with the possibility of tornadoes?
A.
high pressure system
B.
arctic system
C.
low pressure system
D.
circulatory system

Answers

Answer:

low pressure

Explanation: A low-pressure system is always associated with more clouds, thunderstorms, and also the development of swirling air masses such as tornadoes and cyclones.

PLEASE BE CONFIDENT ABOUT YOUR ANSWER


Which of the following statements is FALSE?
the value of the ID attribute....

a. may not start with a number
b. must be unique within each document
c. must not start with a special character
d. should be lowercase?

Answers

Answer: d. should be lowercase.

Explanation:

ID attributes are case sensitive for the most part - DOM and Java Script - which means that the ID attribute does not always have to be lowercase.

It can be uppercase as well. ID attributes can also start with a number and as of HTML 5 can start with a special character as well. Finally, the ID attribute must always be unique within each document.

Answer:

d. should be lowercase?

Explanation:

Hope this helps

To find a webpage,the user of a search engine would simply enter a word oa phrase in the resources text box. What is the term for that phrase?

Answers

Answer:

Search text

Explanation:

A web page refers to a specific collection of content that a website provides and displays to a user in a web browser.

A web page is defined as any document that is commonly written in HTML.

To find a webpage, the user of a search engine would simply enter a word or phrase called search text in the resources text box.

Which of the following statements is FALSE?

the value of the ID attribute....

a. may not start with a number
b. must be unique within each document
c. must not start with a special character
d. should be lowercase?

Answers

Answer:

d. Should be lower case?

WHERE THE SMART PEOPLE AT??????


PLEASE I NEED HELP

THIS IS MY LAST QUESTION FOR THE TEST

PLEASE

I KNOW THE ANSWER IM JUST MAKING SURE


You can use tables for layout work. However, in XHTML, each form control should have its own ______ element

a. method

b. textarea

c. label

d. fieldset

Answers

Answer:

I would say A. Method

Explanation:

.

Can someone help plzz!!!!

Answers

here is your answer in c#:Answer:

using System;

using System.Collections.Generic;

using System.IO;

using System.Linq;

using System.Runtime.CompilerServices;

using System.Security.Cryptography.X509Certificates;

namespace CSACTUALDEMO

{

   class Program

   {

       public static int a;

       public static int b;

       public static void Main()

       {

           int cases = int.Parse(Console.ReadLine());

           int gradeseries = 1;

           List<int> myList = new List<int>();

           for (int forloop = 0; forloop <= cases; forloop++)

           {

               a = int.Parse(Console.ReadLine());

               Console.WriteLine($"Enter grade # { gradeseries++}: { a } ");

               myList.Add(a);

           }

           Console.WriteLine($"The maximum value is:  {myList.Max()}");

           Console.WriteLine($"The minimum value is: {myList.Max()}");

           Console.WriteLine($"The mean is: {myList.Sum() / cases}");

           Console.WriteLine($"The grades in forward order are:");

           foreach (int a in myList)

           {

               Console.WriteLine();

           }

           myList.Reverse();

           Console.WriteLine($"grades in reverse order: {myList}");

       }

   }

} Explanation:

The invention of computers as a technological tool has completely changed our lives. Name any three areas to support this statement and explain how computers have made our lives better

Answers

Answer:

-They allow huge amounts of information to be stored in a small space

-They also allow a person to calculate mathematical problems with ease

-They allow people to communicate with one another through internet sites

-Finally, computers provide teachers and students the means to communicate quickly via email. Online grading systems also make it easier to view and audit a student's progress

Hope i helped!

Policies and procedures set by companies are established to :

Answers

Answer:

The answer is below.

Explanations:

maintain the affairs or rules of conduct of the company, including both the employer and the employees.

The Policies and procedures set by companies will clearly state the responsibilities and duties of both employer and employees, which eventually serve as a means of protecting the interest of all the parties involved in a company.

SO I LIKE BOILED EGGS AND MY MUM WAS MAKING SALAD FOR DINNER SO I SAID DID YOU MAKE AND EGG-TRA ONE FOR ME
SHE LOOKED AT ME AND SAID "WHAT"?..

Answers

Answer:

now what is this

Explanation:

This holiday season, the hottest gift was a doll named Sparkle Princess. Within a few hours, all of the stores sold out their stock of this doll.
People who had been fortunate enough to buy a doll began to sell their dolls on the internet. Thousands of people logged on to try to buy one of
the few dolls that were being sold on the internet. What MOST likely happened with the internet sales?
O A. The price went down because the supply was low and the demand was high
ОВ. The price went up because the supply was low and the demand was high,
OC. The price went down because the supply was high and the demand was low.
D. The price went up because the supply was high and the demand was low.

Answers

Answer: B. The price went up because the supply was low and the demand was high,

Explanation:

Based on the information given in the question, when there is a reduction in the supply of a particular good, the effect it has on the price is that there'll be a rise in the price of such good.

In this case, since there is a reduction in the supply of the good as a result of the fact that all the stores have sold out their stock, and it was been resold by some of the people that purchased it earlier, there'll be an increase in the price of the doll since the demand is more than the supply. This will breathe scarcity and increase price.

Therefore, the correct option is B

The price went up because the supply was low and the demand was high.

Which types of file formats are the best choice for files that may need to be edited later?
(Select all that apply.)

a. JPEG
b. PSD
c. PNG
d. TIFF

Answers

Answer:

PSD, PNG, TIFF

Explanation:

JPEGs compress image data, which leads to random pixels, it is especially disastrous for digital artists in the field of Pixel Art, as it causes blurry pixels.

PSDs are files saved by Photoshop, an image editing program

PNGs are your average run of the mill images that are commonly used in many art tools like Piskel or Aseprite

TIFFs are used for high-quality raster-type graphics, they are generally used in software programming, specifically for graphics. It supports lossless compression or in layman's terms, no image data is lost during the compression process.

Patch application are essential to any network. Select the characteristics(s) of patch applications.

A. identify
B. classifying
C. notifying
D. all the above


HELP I REALLY NEED IT ​

Answers

All the above I believe.

Whats with the bot spamming customer care numbers...kinda annoying when im trying to help people.

Answers

Answer:

yes

Explanation:

In this for loop, identify the loop control variable, the initialization statement, loop condition, the update statement, and the statement that updates the value of s

Answers

Answer:

Follows are the solution to these question:

Explanation:

Please find the complete question in the attached file.

For point a:

The "j" is the loop control variable that controls this loop  

For point b:

The initialized statement for the given loop is "j = 1"

For point c:

The loop condition for the given loop is "j<=10" which indicates that the value of j is less than equal to 10.

For point d:

The loop given statement that updates the value of the s is "s = s+j*(j-1)".

Research your local television or radio station and write a 600 word essay about jobs in those fields

Answers

Answer:

Local television is a national television broadcast channel which is governed by the government. The employees working in these companies are considered as national servants since they are directly employed by government. The basic pay and other benefits are higher than other similar job roles in different private institutions but the responsibility of the employees working in local television and radio statins is higher than other people.

Explanation:

The people working in the local television are more educated and skilled. The hiring process is fair and is open to all the national of the country. There are certain eligibility requirements based on specific job roles and then candidates applying for those vacancies are evaluated fairly without any discrimination.

Other Questions
HELP ME ASAP!!!!!!!!!Please helpSee picture attached.WINNER GETS THANKS, A STAR RATING-EXCELLENT AND BRAINLIEST!!!!!!!!!! Good Luck!Happy Easter!apokibunnyavatar HELP History of the holocaust Mr. Alvarado needs 15 1/8 pounds of chicken feed to fill his feeder. He has one bag of chicken feed that weighs 3 1/2 pounds and another bag of chicken feed that weighs 2 3/4 pounds. How many more pounds of chicken feed does Mr. Alvarado need to fill the chicken feeder?A: 9 1/8 LbsB: 8 7/8 LbsC: 9 7/8 Lbs D: 6 1/4 Lbs Q.14What is the most common way to isolate the CPU from the external circuit?Select one:A. OPTICAL ISOLATIONB. SMALL RELAYSC. BRIDGE RECTIFIERSD. RHEOSTATS ANSWER ASAP PLEASE. I WILL GIVE BRAINLIEST IF YOU'RE CORRECT How did Thomas Edison contribute to the growth of factories in the late 1800s?A. His installation of electrical generation and distribution stations allowed factories to run at all hours.B. His interest in building better automobiles caused him to open new factories to supply inexpensive cars.C. His commitment to good working conditions and high wages supplied his factories with a loyal labor force.D. His improvements to the system of mass production caused many more modern factories to open. Find x please help me I need the answer today before 11:59 Anime role-play anyone?? :3 how is everyone's day going today? g Two identical toy cars are held at rest on top of identical ramps. Car A rolls down the ramp, through a loop and then moves along a horizontal surface. Car B starts from rest at the same height, but it does NOT complete the loop. It is found that Car B has a faster speed at the finish line than Car A. What is the BEST explanation for why I have a bad memory,i learned this but I forgot it (I swear I'm not lying) Last question on unit test How is ocean acidification different from climate change?A. Climate change is the consequence of using aerosol spray cans, whereas ocean acidification is causedby dumping industrial waste in the ocean.B. Climate change is the consequence of a collection of greenhouse gases causing the Earth to absorbmore of the Sun's energy, whereas ocean acidification is caused solely by increased levels of CO2dissolving into the ocean.C. Climate change is caused solely by increased levels of CO2 in the atmosphere, whereas oceanacidification is the consequence of a collection of greenhouse gases in the ocean.D. Climate change is caused by increased solar activity, whereas ocean acidification is the consequenceof warming of the oceans.E. Climate change is caused solely by the ozone hole because the hole lets in more radiation, whereasocean acidification is the consequence of accumulation of methane in the ocean sediments. Which value of b would make 16x? - bx + 25 a perfect square trinomial?a. 4b. 5C. 20d. 40 An illustration of a fire and a pair of hands near the fire.He concluded that the image shows thermal energy being transferred from the flames to the persons hands through conduction.Which best explains Alexs error? Thermal energy is being transferred from the persons hands to the flames.The image does not show thermal energy being transferred because the molecules of two substances or objects are not in direct contact.The image does not show conduction because the molecules of two substances or objects are not in direct contact. Thermal energy is being transferred from the surrounding air to the flames. perimeter of a rectangle is 42 CM if length is 6 CM then breadth Can anyone help me with this question like just think of anything at this point! Please post detailed answers to the following questions. Please use complete sentences.What responsibilities do you believe people have as citizens in our global economy? Watch help videoGiven 1 ||||n, find the value of x.Z(4x+6)(5x-4)n How did the development of the factory system encourage unbanization All bills passed by Congress require this before they become a law. A. The signature of the president. B. The approval of the Supreme Court. C. Congressional override.