1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
MakcuM [25]
3 years ago
11

Can someone help me with Exercise 7.1.5: Initials on codehs.

Computers and Technology
1 answer:
Ber [7]3 years ago
7 0

7.1.5 Codehs:

Write a program that gets a string containing a person's first, middle and last names, and then display their first, middle and last initials. For example, if the user enters John William Smith, the program should display J. W. S. [In python]

Answer:

first = input("First name: ")

middle = input("Middle name: ")

last = input("Last name: ")

print(first[0]+". "+middle[0]+". "+last[0]+".")

Explanation:

This line prompts user for first name

first = input("First name: ")

This line prompts user for middle name

middle = input("Middle name: ")

This line prompts user for last name

last = input("Last name: ")

This line prints the name initials

print(first[0]+". "+middle[0]+". "+last[0]+".")

You might be interested in
A printer is connected locally on Computer1 and is shared on the network. Computer2 installs the shared printer and connects to
Katen [24]

Answer:

A printer is connected locally on Computer1 and is shared on the network. Computer2 installs the shared printer and connects to it. Computer1 considers the printer to be a(n) _____local___________ printer, and Computer2 considers the printer to be a(n) _____network___________ printer.

Explanation:

Any printer installed directly to Computer 1 is a local printer.  If this printer is then shared with computers 2 and 3 in a particular networked environment, it becomes a shared printer.  For these other computers 2 and 3, the shared printer is a network printer, because it is not locally installed in each of them.  There may be some features which network computers cannot use on a shared printer, especially if the printer can scan documents.

4 0
3 years ago
Jamie works as receptionist for a small business. Fridays are always a challenge on the phone, since the front entrance sees a l
Vikentia [17]

Answer:Effective communication

Explanation:

8 0
3 years ago
Read 2 more answers
What will happen to the instruction latency as a result of introducing the pipeline? A. The latency will remain unchanged. B. Th
anzhelika [568]

Answer: C.

. The latency will increase from one cycle to 6 cycles as a result of using the pipeline.

Explanation: Pipelines are serially connected sets of instructions where the output of one becomes the input of the next.

Pipelines usually consists of several stages of which the slowest stage is the determines the clock cycle time.

Pipelines usually uses some times to register it clocks

Pipeline clocks are usually routed to separate registers which adds delays to the system.

Clock time is affected by the clock skey( arrival of a sourced clocked at different times within the cycle)signals at and the routing times.

4 0
3 years ago
The Griffin family lives in multiple states, so they decide to use an online collaborative website to create their annual photo
sattari [20]

A privacy concern the family may have is IP tracking, and unless they have a good VPN is location tracking since they are all uploading pictures to this website.

3 0
3 years ago
Does Someone own a fennec on Rocket League and can trade it and is on the Switch?
wlad13 [49]

Answer:

YES

Explanation:

8 0
3 years ago
Read 2 more answers
Other questions:
  • ________ returns the last character in a StringBuilder variable named strBuf? Select one: A. strBuf.charAt(strBuf.length() - 1)
    15·1 answer
  • PPPLLLLEEEEAAASSSSEEEEE HHELLP me.Does anyone know how to copy an image onto a thing so i can post a real question on brainly. b
    8·2 answers
  • Ranges of IP address that anyone can use for their internal networks are known as ______.
    8·2 answers
  • Complete function PrintPopcornTime(), with int parameter bagOunces, and void return type. If bagOunces is less than 3, print "To
    9·1 answer
  • A company develops a gaming application that it intends to sell. One of the scenarios that the sales team is concerned about is
    15·1 answer
  • What is a ribbon in word
    15·2 answers
  • drag each type of document to the correct location on the table. Drag each document to its respective category
    7·1 answer
  • You are running your warehouse using Autonomous Data Warehouse (ADW) service and you noticed that a newly configured batch job i
    15·1 answer
  • 50 ) What is the cell address of 4th row and 4th column? A) 4D B) E4 оооо C) 04 D) B4​
    9·1 answer
  • Which type of software is offered in trial form or for a limited period of time?
    6·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!