Activity 5: Binary Initial Directions:
Get the binary value of your first name
initial.Maximum of ten letters only....

Character
A B. с D E F. G H I
Decimal
65 66 67 68 69 70 71 72 73
Character N o P Q R S T U V
Decimal 78 79 80 81 82 83 84 85 86

ANSWER:
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.

Answers

Answer 1

Answer:

:bombebphynyjnjtj

Explanation:

vqnafhteg


Related Questions

Language is Python
9.9 LAB: Count input length without spaces, periods, exclamation points, or commas

Given a line of text as input, output the number of characters excluding spaces, periods, exclamation points, or commas.

Ex: If the input is:

Listen, Mr. Jones, calm down.
the output is:

21

Answers

Answer:

text = input('Please enter a line of text')

text = text.replace(" ", "")

text = text.replace(".", "")

text = text.replace("!", "")

text = text.replace(",", "")

print(len(text))

Explanation:

i answered this same exact question the other day.

line by line, the first line asks for input with a prompt.

the second line replaces spaces, the next one replaces periods, the next exclamation marks, the next commas. then the last line prints the total number of characters

In this exercise we have to use the computer language knowledge in python to write the code as:

the code is in the attached image.

In a more easy way we have that the code will be:

text = input('Please enter a line of text')

text = text.replace(" ", "")

text = text.replace(".", "")

text = text.replace("!", "")

text = text.replace(",", "")

print(len(text))

See more about python at brainly.com/question/26104476

Which of the following expressions in Java is equal to 4?

3% 7
7 % 3
17 % 7
11 % 7
28 % 7

Answers

Answer:

3% 7

Explanation:

because 7 because seven ate nine and three was lonely so seven decided to also eat three and became a lesser number somehow because three apparently was not as big as the number 9 so maybe eating three caused him to go down to 4

The expression "11 % 7" in Java is equal to 4.

The "%" operator calculates the remainder of a division operation.

In Java, the "%" operator is used to calculate the remainder of a division operation.

So, let's evaluate each expression and see which ones equal 4:

3 % 7 = 3 (remainder of dividing 3 by 7)

7 % 3 = 1 (remainder of dividing 7 by 3)

17 % 7 = 3 (remainder of dividing 17 by 7)

11 % 7 = 4 (remainder of dividing 11 by 7)

28 % 7 = 0 (remainder of dividing 28 by 7)

Based on these evaluations, the expression "11 % 7" is equal to 4.

To learn more about programming visit:

https://brainly.com/question/14368396

#SPJ3

What is a segmentation?

Answers

Answer:

Segmentation means to divide the marketplace into parts, or segments, which are definable, accessible, actionable, and profitable

ACTIVITY NI MATCHING TYPE Directions: Match Column A with Column B. Write the letter of the correct answer on the space provided before the number a. Trion your nails b. visits the dentist c. scrub your hands with soap and water d. wear deodorant taking a bath 18111411 hely wear suitable clothes at work g. avoidis open wounds while working with food h. Regularly out your hair. 1. Use a seperate towel or cloth wiping hands. . keep sanitizer. 10.​

Answers

Answer:

Mark me a brainless plss i need that i am blink plss

IT professionals ensure servers connected to the network operate properly. (2 points) True False

Answers

Answer:

True

Explanation:

Thats one of their most important jobs

A reference is _____.

Answers

Answer:

a written or spoken comment that mentions somebody/something

the action of mentioning or alluding to something.

Give short introduction of profession and make a list of its types. ​

Answers

are you asking for a list of professional jobs or?…..

explain how communication in fuses management efficiency​

Answers

Explanation:

Effective communication is pivotal in increasing productivity because it directly influences the behavior of the staff and the way they perform. ... That is why it is essential that you practice communicating with your staff. It will improve understanding and, in the result, will elevate productivity and efficiency.

In which of these images would lines become an evaluating factor?

Answers

Answer: The fish?

Explanation:

Answer:

birds in flight  and railroad tracks

Explanation:

i got it right

Which of the following factors is most likely to result in low shipping and handling costs? A higher than average hourly pay rate for material handlers A rare but high-in-demand packaging material A promotion for free shipping on orders over a predetermined order total All of the above​

Answers

Answer: A higher than average hourly pay rate for material handlers

Explanation:

Shipping and handling cost describes costs related to the total cost of an ordered item which are included in the fees used to deliver the item to the buyer. Hence, the correct option is C

Shipping and handling cost usually depend on the size of the item, the buyer's location and fragility of the item purchased.

From the options given, handling and shipping fee may be reduced as a result of free promotional shipping on orders.

Handler and drivers who are paid above average will result in increased shipping fee and rare in-demand items won't come cheap either.

Hence, low shipping fee will most likely be as a result of promotion for free shipping on orders over a predetermined order total.

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

What kind of loop repeats until something else (determined by the program) happens?
iterative number loop
condition-controlled loop
count-controlled loop
forever loop

Answers

Answer:

The Condition-controlled loop

Explanation: Because its called a Condition and it does not stop untill something happens thats why its called "condition".

Answer: It's Condition-controlled loop

Explanation: The meaning of condition-controlled loop is Blocks will keep repeating until a condition is satisfed, Also beacuse I already did the quiz.

Hey all! How would you write write this code?

Write a C++ program using variables and loops in order to implement the Hi-Low strategy of card counting and keep a running count. The Hi-Low strategy of card counting assigns one of three values to a card, based on its face value. The table below breaks down these values. FACE VALUE ASSIGNEDVALUE 2, 3, 4, 5, 6 +1 7, 8, 9 0 10, J, Q, K, A -1 In a typical game of Blackjack, a card counter will start with a fresh deck and a count of 0. Each time a card is played, its assigned value is added (or subtracted) from what is known as the running count. The running count rolls over from hand to hand. For instance, if the first 7 cards of a game were: Queen, Jack, 4, 6, 7, Jack, 9, then the running count would be (0) -1 -1 + 1 + 1 + 0 –1 + 0 =-1

Answers

The program is an illustration of loops.

Loops are used to perform repetitive actions.

The program in C++ where comments are used to explain each line, is as follows:

#include <string>

#include <iostream>

using namespace std;

int main(){

   //This declares all variables

   int n, count = 0; string k;

   //This gets input for the number of cards

   cin>>n;

   //The following is repeated n-times

   for(int i = 0;i <n;i++){

       //This gets input for the current card value

       cin>>k;

       //If the card is a digit

       if(isdigit(k[0])){

           //This checks if the card number is between 2 and 6 (inclusive)

           if(stoi(k) >= 2 && stoi(k) <= 6){

               //If yes the face value is increased by 1

               count+=1;

           }

           //This checks if the card number is 10

           else if(stoi(k) == 10){

               //If yes the face value is decreased by 1

               count-=1;

           }

       }

        //This checks if the card number is J, Q, K or A

       else if (k == "J" || k == "Q" || k == "K" || k == "A") {

           //If yes the face value is decreased by 1

           count-=1;

       }

   }

   //This prints the face value

   cout<<count;

   return 0;

}

At the end of the program, the face value is printed.

Read more about similar programs at:

https://brainly.com/question/24578223

Question
What protocol is used to discover the hardware address of a node with a certain IP address?

Answers

Answer:

ARP is a simple query–response packet protocol used to match workstations hardware addresses to IP addresses. In other words, ARP is the protocol used to identify nodes in a LAN. ARP is described in RFC 826

In order to get the maximum functionality out of a device that is plugged in, a user should download the specific ___ for that device.

Answers

I think the answer they are looking for is drivers. You need to download specific drivers for the device to function to its max potential
the answer to that question is Drivers

Identify the following verb by number and person by checking on the appropriate boxes.

SHE WANTS!!


second person
singular
plural
same form for both singular and plural
third person
first person PLEASE HELP!!!!!! LAUNGUAGE ARTS

Answers

second person ig Imao yeah

Answer:

Singular and third person

Explanation:

Second person: this answer is not correct as second person refers to pronouns such as “you, yourself” like in a recipe.

Singular: this is correct as a singular verb is when there is only one subject. You can also tell it’s a singular verb as the present tense ends with a “s”.

Plural: this is not plural because there is only one subject. Plus the present tense of the verb ends with an s so it’s not a plural verb. Plural verb’s present tense never ends with an s.

Third person: this is correct because the subject of the sentence is someone else. Third person pronouns include: “her, she, he, him, they, then” basically, third person is when you talk about someone else.

First person: this answer is not correct because first person refers to one’s self. So first person pronouns are: “I, me, myself”

What is printed when the following code has been executed?
int x = 15;
int y = 4;
System.out.println((2 * x + y) % x);
15
4
34
2
19

Answers

Hey it is 15 hope this helps

Write a program that can add, Subtract, multiply and divide entered numbers.

Answers

In Python:

def add(x, y):

   return x + y

def subtract(x, y):

   return x - y

def multiply(x, y):

   return x * y

def divide(x, y):

  return x / y

phân tích cạnh tranh của cocacola và pepsi

Answers

I don’t understand please speak English

When you use a library in your code, how do you give attribution?

Answers

When you use a library in your code, you give attribution: by writing the source, title, author and license in your code.

Attribution can be defined as a process which typically involves the citation (reference) of an original source of information such as a library, quote, paraphrase or summary, especially by using the author's full name, source, and job title (position) as the case may be.

In software development, you give attribution when you use a library in your code by writing the following:

The source in your code.The title in your code.The author in your code.The license in your code.

Read more: https://brainly.com/question/21172316

A field name can be up to 64 characters long

Answers

Answer:

Explanation:

cool ..........................,...............................

What are the data type(s) will be used to declare the variable(s) needed to
create the algorithm?*

1.. integer only
2.. real only
3..integer and real
4..real and string

Answers

The three primitive data types used in this course are int (integer numbers), double (decimal numbers), and boolean (true or false). Each variable has associated memory that is used to hold its value.

What protocol is used to discover the hardware address of a node with a certain IP address?

Answers

Answer: ARP hope this helps

CPU is also called RAM.
True or false.​

Answers

Answer:

False

Explanation:

RAM works in conjunction with the central processing unit (CPU). If RAM is the temporary memory, you can think of the CPU as the brain of the computer. The CPU chip retrieves data from the RAM

FALSE ...

BECAUSE RAM IS A MEMORY AND CPU IS A UNIT OF COMPUTER THAT'S WHY IT IS FALSE

You should move around and take a rest for 30 minutes every 5 minutes.

True Or False​

Answers

Answer:

obviously true.........



does industry-recognized certifications (microsoft office suite) boost your resume and
increase your earning potential?

Answers

Answer:Having Microsoft Office training can make you more productive, confident, and satisfied with your job. ... Productivity is crucial to success in the administrative assisting field, and your employers will thank you for it. 3. Industry-recognized certification will boost your resume and increase your earning potential.

Explanation: i no it

1. The jargon for navigating on the Internet is called: A. surfing B. selecting C. clicking D. analyzing​

Answers

Answer:

A. surfing

Explanation:

Browsing the internet is known as surfing the internet.

What is another name for a switch A.Number system B.Variable C.Logic Gate D.Boolean

Answers

Answer:

logic gate

Explanation:

took the test lol

Please answer the following question in Verilog.

To test our functions we will generate a 3-bit vector that counts up by one every cycle which we will use as the inputs to the decoder. The decoder output will then be fed into the inputs of the encoder to produce an inverted version of the original 3-bit test vector. For every input vector you should toggle the enable signal to both the encoder and decoder function which can be easily done by using the clock waveform used to determine when to increment the input vector as the enable signal as well.

Answers

Answer:

345678909 my number

Explanation:

Complete the following sentences by either filling in the blank or writing out the rest of the sentence (when there is a … ):

The internet is made up of _________ networks that all connect together to make a ____________ network.

The job of a router on the internet is to…


Clients allow people to…


Servers store _____________________ and send those to _____________ over the internet.


The internet is physically connected across the world using _______________


Computers break up information, like photos and emails, into ________________



The ___________ protocol tells computers how to break up the information and orders it.


The ________________ protocol tells the packets where they are going and where they are coming from.


The packets get to their destination by…


When the packets get to their destination, the __________ protocol…



Computers get the _______________ of servers by asking the ______________



Computers use the _____________ protocol to display a webpage.

Answers

Answer

hundreds,  massive, connect to the internet gigabytes, people, computers,

bytes, TCP/IP, TCP, internet, TCP, answers, questions, HTTP

Explanation:

what are the components of computer system??

Answers

Answer:

1. A motherboard.

2. A Central Processing Unit (CPU)

3. A Graphics Processing Unit (GPU), also known as a video card.

4. Random Access Memory (RAM), also known as volatile memory.

5. Storage: Solid State Drive (SSD) or Hard Disk Drive (HDD)

(Please give me brainliest)

Other Questions
Which equation represents a line parallel to 3x 8y = 12? Valeria has been training for the Charlestown cruisers bike race. The first week she trained, she rode 5 days and took the same two routes each day. She rode and 8 mile route each morning and longer route each evening. By the end of the week, she had ridden a total of 115 miles. How many miles did valeria ride each evening 1x4=xy.39+9=8i need help 8) A negative minus a negative will always, sometimes, never) be positive.Give an example that proves your answer:. the topic is about martin luther king jr Vit on vn ting anh ch : your bad holiday experience What is the vertex of the graph of f(x) = 4(x+5)-1? What is the economic outlook for occupations in the healthcare sector? weak to very poor depends on the economy will remain stable will increase in demand over time Which equation describes a line that passes through the points (0, -3)and (2,7)? Nhng li ch v bt li ca e-learning Directions: Read the three Supreme Court case scenarios below in the left hand column. In the right hand column, jot down which constitutional amendment you think this case was about, and explain your reasoning. SCOTUS (Supreme Court of the US) Case Constitutional Amendment Mapp v. Ohio (1957): In May 1957, three police officers arrived at Dollree Mapps home after having received a tip that a fugitive had hidden there. Mapp, who had phoned her attorney, refused to admit the police officers. Three hours later, they knocked on the door, and when Mapp did not immediately answer, they forced the door open and entered. Mapp demanded to see a search warrant. One of the officers held up a piece of paper, claiming it was the warrant. After a scuffle, the officers handcuffed Mapp. The police then began to search the house. They did not find a fugitive in the house; however, in the course of their search they turned up some material they deemed obscene. Mapp was charged and eventually convicted of having offensive books and pictures in her possession. Engel v. Vitale (1962): In 1951 the New York State Board of Regents, which supervises the states public school system, approved a brief prayer at the start of each day. The prayer read: Almighty God, we acknowledge our dependence upon Thee, and we beg Thy blessings upon us, our parents, our teachers, and our Country. School districts were not required to use the prayer, and students were not required to recite it. In 1958, the New Hyde Park school board adopted the prayer and directed that it be recited each day in every class, although students could be excused from reciting it. Steven Engel, the parent of two children in the New Hyde Park schools, objected to this practice and asked a state court to order the prayer dropped. Tinker v. Des Moines (1969): Throughout the 1960s, television broadcasts carried graphic images of the Vietnam War. In December of 1965, John Tinker, his sister Mary Beth, and their friend Christopher Eckhardt decided to protest the war. They planned to wear black armbands to their schools in Des Moines, Iowa. When the school board learned of their plans, it adopted a policy that banned the wearing of armbands. Any students who violated this policy would be suspended. Several students, including the Tinkers, went ahead with their protest. The students were suspended when they refused to remove their armbands. b(n)=42(n1) find the 12th term in the sequence. [tex]8.0 \times {10}^{ - 5} \times 10000[/tex]what would be the result How are household chores done in future? Write an essay that answers the following question: Was the United States justified in going to war against Mexico in 1846? Use primary source material on pages 3-5 of this document and the information in Chapter 16 to help you answer the question and provide support for your answer. [ Read the passage now]---> Except from James Polk's 1845 Inaugural Address: Eighty years ago population was confined on the west by the ridge of the Alleghenies. Within that period... our people... have filled the eastern valley of the Mississippi, adventurously ascended the Missouri to its headsprings, and are already engaged in establishing the blessings of self-government in valleys of which the rivers flow to the pacific. The world beholds the peaceful triumphs of the industry of our emigrants. To us belongs the duty of protecting them adequately wherever they may be upon our soil. U.S. Army Officer, Regarding the April 24, 1847, Skirmish Between Mexican and American Forces. We have not one particle of right to be here. It looks as if the government sent a small force on purpose to bring a war, so as to have a pretext for taking California and as much of this country as it chooses. Excerpts from Polk's Message to congress, May 11, 1846: The existing state of the relations between the United States and Mexico renders it proper that I should bring the subject to the consideration of Congress. The strong desire to establish peace with Mexico on liberal and honorable terms, and the readiness of this Government to regulate and adjust our boundary and other causes of difference with that power on such fair and equitable principles as would lead to permanent relations of the most friendly nature. The Mexican Government not only refused to receive him [ the U.S. envoy] or listen to his propositions, but after a long-continued series of menaces have at last invaded our territory and shed the blood of our fellow-citizens on our own soil. I had ordered an efficient military force to take a position between the Nueces and the Del Norte. This had become necessary to meet a threatened invasion of Texas by the Mexican forces. The invasion was threatened solely because Texas had determined, in accordance with a solemn resolution of the Congress of the United States, to annex herself to our Union, and under these circumstances it was plainly our duty to extend our protection over her citizens and soil. Texas, by the final action of our Congress, had become an integral part of our Union. The Congress of Texas, by its act of December 19, 1836, had declared the Rio del Norte to be the boundary of that Republic. Our own Congress had, moreover, with great unanimity, by the act approved December 31, 1845, recognized the country beyond the Nueces as a part of our territory. Accordingly, on the 13th of January last instructions were issued to the general in command of these troops to occupy the left bank of the Del Norte. This river, which is the southwestern boundary of the State of Texas, is an exposed frontier. The Army moved from Corpus Christi on the 11th of March, and on the 28th of that month arrived on the left bank of the Del Norte opposite to Matamoras, where it encamped on a commanding position, which has since been strengthened by the erection of fieldworks. General Ampudia... notified General Taylor to break up his camp within twenty-four hours and to retire beyond the Nueces River, and in the event of his failure to comply with these demands announced that arms, and arms alone, must decide the question. A party of dragoons of 63 men and officers were... dispatched from the American camp up the Rio del Norte, on its left bank. to ascertain whether the Mexican troops had crossed or were preparing to cross the river, became engaged with a large body of these troops, and after a short affair, in which some 16 were killed and wounded, appear to have been surrounded and compelled to surrender. The grievous wrongs perpetrated by Mexico upon our citizens throughout a long period of years remain unredressed, and solemn treaties pledging her public faith for this redness have been disregarded. Mexico has repeatedly threatened to make war upon us for the purpose of reconquering Texas. In the meantime we have tried every effort at reconciliation. Mexico... has invaded our territory and shed American blood upon the American soil. She has PLEASE HELP WILL GIVE BRAINLY!!What is the best reason for why people move? How does this move effect them culturally (daily lives, language, family) and economically (money)? what is 4+4 This is for ThomasBrennan1 What force is required to accelerate a 1000-kilogram car at 6 m/s?? I need to know what the answer is plz help What is the slope of the line passing through the points (8, 9) and (-2, 9)?