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
Vitek1552 [10]
3 years ago
9

Write a program code to accept the names of 3 users and generate a user name as shown in the example. Accept the name of 3 user

in the format – Firstname Last name (eg. Anan Gupta). Select the first 3 characters from the first name, add # and then add last 3 characters of the last name. Display the newly generated user name along with the names that were input.
Computers and Technology
1 answer:
Nikitich [7]3 years ago
7 0

Answer:

Explanation:

The following code is written in Python and is a function that loops three times asking for the last name and first name. Then it uses this information to create a username. Finally, each of the names and usernames is printed on the screen.

def userName():

   for x in range(3):

       last_name = input("What is your last name: ")

       first_name = input("What is your first name: ")

       username = first_name[:3] + "#" + last_name[-3:]

       print(last_name + ", " + first_name)

       print(username)

You might be interested in
A java ____ is a program written in the java programming language that can be included in a web page.
Evgen [1.6K]

Answer:

Java Applets are used to include java programs on web page.

Explanation:

Java Applets are small java programs that can be run on any browser with appropriate Java Plug-in and displays applet as a section of web page.

How to Create Applet

Create an applet class by extending it with JApplet and add a paint method in it. for example

import java.awt.*;

import javax.swing.*;

public class HelloWorld extends JApplet {

          public void paint(Graphics graphic)

           {

            super.paint(graphic);

           }

}

The above code will create an applet and super.paint(graphic) method will draw the applet for you.

In order to display "Hello World" string in applet. you just need to add the following line after super.paint(graphic); method.

graphic.drawString("Hello World" , 20, 20);

Run Code

Click on Run Button and you will able to see the applet in applet viewer window.

4 0
3 years ago
Read 2 more answers
Why is a niche important in video production
abruzzese [7]

Answers

You need a niche to start your recording for let's say commentary you'll need that for your commentary.

7 0
3 years ago
Read 2 more answers
Class function which is called automatically as soon as the object is created is called as __
ki77a [65]
Answer: A- Constructor
7 0
3 years ago
Cylinder heads with four valves flow more air than those with two valves because they
Effectus [21]
Are able to hold more air
8 0
3 years ago
You are the network adminstrator for your company your network consists of two active directory domains research.westsim.local a
nexus9112 [7]

Answer:

We should configure the one of domain controller in the Houston to be the global catalog servers.

Explanation:

Configure the Domain controller:

1. Log in the MS Windows server host.

2. Then, click the Start Menu and goto the Tools, click on Manage Your Servers.  

  • on this wizard, you can choose the Adding Roles to your Servers.
  • in Server Role windows you can choose the Domain Controller.
  • Then, you can select the default values by the click on NEXT.
  • Then, continue accepts default values and click on the Next when the Report DNA Issues windows appears.
  • Then, select the Configure and install DNS for proceed to next window.
  • Then, continue to click on the Next when the Summary window will display then again click next.
  • After all, Active Directory Installation wizards are invoked.
5 0
3 years ago
Other questions:
  • The VP of sales at universal containers requested that "Verbal Agreement" be added as a new opportunity stage. The Administrator
    14·1 answer
  • Suggest two other subtasks that may be performed in a dice game?
    15·2 answers
  • A customer comes into a computer parts and service store. The customer is looking for a device to help a person with accessibili
    5·1 answer
  • Which filter gives a “squeezed” effect to an image?
    15·1 answer
  • Bridge building is the business of: pure scientists, civil servants, or civil engineers?
    11·2 answers
  • True or false? LearnSmart (the "smart flash card assignments") really gets your competitive spirit in gear by allowing you to se
    8·1 answer
  • W t f is a ground fault circuit interrupter?
    6·2 answers
  • WAFL (write-anywhere file layout) Select one: a. is a distributed file system b. is a file system dedicated to single user opera
    6·1 answer
  • You are starting a small web hosting business and
    11·1 answer
  • How does a fully integrated Data and Analytics Platform enable organizations to convert data into consumable information and ins
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!