A small coffee shop business owner wants to hire you as a developer for a point-of-sales application to be used onsite. The owner expects that the project will be completed in 3 weeks in preparation for the store's soft opening. Preliminary requirements gathering was done on your end and noted that it would be a basic point-of-sale where sales are monitored daily, weekly, and monthly. Top performing products will also be presented by the system.

As a developer, and from your point of view:

1. Kindly discuss the programming paradigm that you will use in the development of the POS system.

2. What will be the necessary activities needed in order for you to develop the system? List the key activities and provide a brief description.

3. What are the challenges that you will encounter in developing this system?

Answers

Answer 1

It is to be noted that the programming paradigm that I will use in the development of the Point of Sale (POS) System is Object-oriented programming (OOP).

The three key activities that will be required to develop the system are:

The programmer creates classes that describe the items that will be used by the program when it runs.The programmer creates a class that includes the static main() function, which is used to launch the application.

These two fall under the activity category labeled "Creating the Program"

The core challenges that are related to developing a system that is based on Object Oriented programming are:

Data storage.Common procedures.Defining objects.Hierarchy.

What is OOP?

Object-oriented programming (OOP) is a programming style that centers software design on data rather than operations and logic. An object is a data field with discrete characteristics and behavior.

OOP concepts are categorized as follows:

PolymorphismAbstraction Encapsulation; and Inheritance.

Object-oriented programming languages simplify understanding of how a program works by combining data and its action (or method) into a single bundle known as an "object."

Functional programming is a programming approach that involves performing operations, or functions, on static data.

Learn more about programming paradigm:

https://brainly.com/question/28736751

#SPJ1


Related Questions

Consider two packet switches directly connected by a link of 5000 km,
propagation speed 2.5 X10^8 m/s and transmission rate 1 Mbps. How long does it take to move
a packet of length 1,000 bytes from one packet switch to the other packet switch? Generally,
how long does it take to move a packet of length L over a link of distance d, propagation speed
s, and transmission rate R bps?

Answers

The time that is required for the packet to move over the the distance d at the speed s is  0.028 seconds.

The speed that It would take to move it in transmission is given as 0.008 seconds.

How to solve for the required time

The details that we would have to solve the problem that we have here are given below

The distance = 5000 km, we convert to meters = 5000 * 1000

The speed of the propagation is given as (s) 2.5 x 108 m/s

The propagation delay is given as d / s

= 5000000 / 2.5 x 10^8

= 0.02 this is the value of the propagation

Next we have to find the length of the packet. L = 1000 bytes

this is equal to 8000 bits

The transmission rate is 1 Mbps = 1000000 bits

The transmission delay would be = L/R

= 8000 / 1000000

= 8 / 1000

= 0.008 seconds in transmission

The total required time that is to be gotten would be

Propagation + transmission

= 0.02 + 0.008

= 0.028

Read more on transmission rate here:

https://brainly.com/question/13013855

#SPJ1

In this lab, you complete a partially written C++ program that includes a function that returns a value. The program is a simple calculator that prompts the user for two numbers and an operator ( +, -, *, or / ). The two numbers and the operator are passed to the function where the appropriate arithmetic operation is performed. The result is then returned to the main() function where the arithmetic operation and result are displayed. For example, if the user enters 3, 4, and *, the following is displayed: 3 * 4 = 12


The source code file provided for this lab includes the necessary variable declarations and input and output statements. Comments are included in the file to help you write the remainder of the program.


Instructions

1. Write the C++ statements as indicated by the comments.

2. Execute the program by clicking the Run button at the bottom of the screen.


The output works but I get 5 errors. I get a declared performOperation() error, and then I'm getting a Division, Multiplication, Addition and Subtraction error.

Code:

// Calculator.cpp - This program performs arithmetic, ( +. -, *. / ) on two numbers.

// Input: Interactive

// Output: Result of arithmetic operation


#include

#include


using namespace std;


// Write performOperation() function declaration here


int performOperation(double numberOne, double numberTwo, string op);

int main()

{

double numberOne, numberTwo;

string operation;

double result;

cout << "Enter the first number: ";

cin >> numberOne;

cout << "Enter the second number: ";

cin >> numberTwo;

cout << "Enter an operator (+.-.*,/): ";

cin >> operation;


// Call performOperation method here


result = performOperation(numberOne,numberTwo,operation);

cout << numberOne;

cout << " " << operation << " ";

cout << numberTwo;

cout << " = ";

cout << result << endl;

return 0;

} // End of main() function


// Write performOperation function here

int performOperation(double numberOne, double numberTwo,std::string(op)){

double result;

if (op == "+")

result = numberOne + numberTwo;

else if (op == "-")

result = numberOne - numberTwo;

else if (op == "*")

result = numberOne*numberTwo;

else if (op == "/")

result = numberOne/numberTwo;

else

cout<<"Wrong input. Please try again.";

return result;

}

Answers

Using the knowledge in computational language in C++ it is possible to write a code that  is a simple calculator that prompts the user for two numbers and an operator. The two numbers and the operator are passed to the function where the appropriate arithmetic operation is performed.

Writting the code:

#include <iostream>

#include <string>

using namespace std;

double performOperation(double num1, double num2,

string opt);

int main()

{

double numberOne, numberTwo;

string operation;

double result;

cout << "Enter the first number: ";

cin >> numberOne;

cout << "Enter the second number: ";

cin >> numberTwo;

cout << "Enter an operator (+.-.*,/): ";

cin >> operation;

result = performOperation(numberOne, numberTwo,

operation);

cout << numberOne;

cout << " " << operation << " ";

cout << numberTwo;

cout << " = ";

cout << result << endl;

return 0;

}

double performOperation(double num1, double num2,

string opt)

{

double res = 0.0;

if(opt == "+")

{

res = num1 + num2;

}

else if(opt == "-")

{

res = num1 - num2;

}

else if(opt == "*")

{

res = num1 * num2;

}

else if(opt == "/")

{

res = num1/num2;

}

return res;

}

See more about C++ at brainly.com/question/19705654

#SPJ1

Kyla has composed a draft of her term paper using Microsoft Word. She now wants to revise the paper. Which tool can she use to store the
document with a different name and makes changes in the new document?
O A. Download
OB. Save As
O C. Save
OD. Export

Answers

A tool which Kyla can use to store the document with a different name and makes changes in the new document is: B. Save As.

What is a document?

A document simply refers to a computer resource that is designed and developed to enable end users to easily store data as a single unit on a computer storage device.

Generally speaking, all computer documents can be identified by a title (name), date modified, size, and type such as the following;

SystemTextAudioImageVideoWhat is the Save as command?

A Save as command can be defined as a type of command associated with the file menu of a software application or document and it causes a copy of the current file to be created and stored to a different location, file name, and/or file type.

In this context, we can reasonably infer and logically deduce that Kyla  should save the document by using the "Save as" command.

Read more on Save as command here: https://brainly.com/question/16852455

#SPJ1

write a script that(1) gets from a user: (i) a paragraph of plain text and (ii) a distance value.distance value. next, (2) encrypt the plaintext using caesar cipher and (3) output (print) this paragraph into an encrypted text. (4) write this text to file called ‘encryptfile.txt’ and print the text file. Then (5) read this file and write it to a file named ‘copyfile.txt’ and print text file.

Answers

A script that(1) gets from a user: (i) a paragraph of plain text and (ii) a distance value.distance value. next, encrypts the text using Caeser cipher, then prints it as an encrypted text given below:

The below script also reads the file and then writes it to a file named ‘copyfile.txt’ and print the text file.

The Script

mapping = {}

with open ( " copyfile . txt " , " r " ) as keyFile:

   for line in copyFile:

      l1, l2 = line . split ( )

       mapping [ upper ( l1 ) ] = upper ( l2 )

       decrypt = " "

       with open ( " encrypted.txt " , " r " ) as encryptedFile:

           for line in encryptedFile:

               for char in line:

                   char = upper ( char )

                   if char in mapping:

                       decrypt + = mapping [ char ]

                   else:

                       decrypt += char print ( decrypt )

Read more about programming here:

https://brainly.com/question/16397886

#SPJ1

can help me biii and d? also help me check my answer is correct or not if wrong please help me correct it thanks​

Answers

Answer:

b(ii) prices[1]= 20.50;  // do not declare with double again

b (iii) scanf("%lf", &prices[4]);  //prices[4] is last element

d) See below

Explanation:

/* This program uses the string.h header file

The strncat() function in this file concatenates two strings. It takes three arguments, dest and source strings and number of characters to concatenate

*/

#include <stdio.h>
#include <string.h>

int main() {
char s1[10] = "Happy";
char s2[10] = " Birthday";
char s3[10]="";

strncat(s3, s1, 5);  //concatenate 5 characters of s1 to end of s3 and                            
                                    //store result in s3; s = "Happy"
strncat(s3, s2, 10); //concatenate s2 with current contents of s3
                                      //s3 becomes "Happy Birthday
printf("%s", s3);

return 0;

}

1. To partition and format a hard drive when no operating system has been installed, you may use either _______________ or _______________ to boot the system and run disk setup utilities.

Answers

To partition and format a hard drive when no operating system has been installed, you may use either GParted or Windows installation media to boot the system and run disk setup utilities.

What is a hard drive?

A hard drive simply refers to an electro-mechanical, non-volatile data storage device that is made up of magnetic disks (platters) that rotates at high speed.

What is a partition?

Partition can be defined as a terminology which is used to describe the division of a hard-disk drive into two or more fragments.

In Computer technology, GParted or Windows installation media should be used to boot a computer system and run disk setup utilities, especially when you wish to partition and format a hard drive when there is no operating system (OS) installed.

Read more on hard drive partition here: brainly.com/question/14987710

#SPJ1

Complete Question:

To partition and format a hard drive when no operating system has been installed, you may use either__ or __ to boot the system and run disk setup utilities.

Please choose from a list of words:

basic disk

chkdsk

defragmentation

Disk Cleanup

Disk Management

dynamic disk

Error-checking

format

GParted

partition

volumes

Windows installation media

How does this code give me 17? (python)

j = 3

z = {}

z[2] = 1

z[7] = 3

z[5] = 2

for l in z:

j += l

print(j)


I don't understand where the 17 is coming from. I thought the square brackets were basically accessing the location (meaning the code would be like this "1, 2, 3." I even thought of individually adding 3 separately to all the numbers only for it to give me 15. Yeah, i've trying to understand this for 2 days lol.

Answers

Answer:

See explanation below and try out this code to see what exactly is happening

# Program

j = 3

z = { ]  # empty dictionary

print(z)

z[2] = 1 # z

print(z)

z[7] = 3

print(z)

z[5] = 2

print(z)   # prints out {2: 1, 7: 3, 5: 2}

for l in z:

   print("Initial value of j = ", j)

   print("Value of l(key) = ", l)

   j += l

  print("Updated value of j = ", j)

print("Final value of j=", j)

Explanation:

What you have is a dictionary object. We use { } to represent a dictionary. A dictionary consists of keys and values related to the keys. For example, you can have a  dictionary which contains names of students and their GPAs

This is declared as
student_grades = {"Amy": 4.3, "Zach":4.0", "Bill": 3.2}

The names are referred to as keys and the GPA as values
You can also have both key and value as integers. Fir example you could store the cubes of numbers from 1 to 5 in a dictionary

cubes = {1: 1, 2:8, 3: 27, 4: 64, 5:125}

If you wanted to add the cube for 6 then you would use cubes[6] = 216 This creates a new entry in the dictionary 6:216 so that the dictionary is now

cubes = {1: 1, 2:8, 3: 27, 4: 64, 5:125, 6:216}

In this short program here is what is happening


j = 3   # variable j created and value set to 3

z = { }  # this creates an empty dictionary named z

z[2] = 1  #adds an entry with key = 2 and value = 1; z = {2 : 1}

z[7} = 3  #key  7 and value 2 added => z = {2 : 1, 7 : 3}

z[5] = 2  #key 5, value 2 => z = {2: 1, 7 : 3, 5 : 2}

So now there are 3 entries in the dictionary i.e. 3 pairs of key-values

When you iterate through the dictionary as in

for l in z:
 - you are actually iterating over the keys so l = 2, 7 and 5 on each iteration

So you are accumulating the key values

Here is what happens

First execution of  loop => j = 3 , l = 2 (first key =2), j = 3 + 2 = 5

Second time: l = 7 (second key value) , j = 5 + 7 = 12

Third time: l = 5, j = 12 + 5 = 17

There is a lot more to dictionaries and sometimes it can get complicated. Suggest you search the internet for the same

Putting print() statements also helps you visualize what is happening. Code is provided in the answer section to help you

Briefly explain the benefits of making a time management plan as a student or professional.
Describe at least three planning tools that will help you manage your time effectively.

Answers

Answer:

As a student I answered for students benefits only

Explanation:

I am explaining into list form so that everyone can understand it easily.

Benefits:

You get more done in less time.

By sticking to this time plan, you have a better chance of tackling the task than getting to it with no predefined time allocated to it.

Reduces stress.

Proper time management enables you to prioritize tasks and tackle them first.

It helps you achieve your goals faster.

Instead of getting caught up in multitasking, you focus on one activity at a time for a specified duration.

It boosts your confidence.

Managing your time well allows you to get your work done on time. This elicits a sense of confidence and accomplishment in your capabilities. Getting through a long to-do list can also evoke these feelings.

9. Which of the following is used to input in computer in digital form? a) Keyboard b) Monitor c) Scanner d) Mouse​

Answers

Answer:

Scanner

Explanation:

The correct answer is Scanner. Input devices are used to enter data or instructions into a computer.

Translate the following C program to Pep/9 assembly language.
#include
const int limit = 5;
int main() {
int number;
scanf("%d", &number);
while (number < limit) {
number++;
printf("%d ", number);
}
return 0;
}

Answers

The translation of the C program will be:

BR main

limit: .EQUATE 5 ; constant

number: .BLOCK 2 ; local variable #2d

main: DECI number,d ; scanf("%d", &number)

while: LDWA number,d ; if (number < limit) exit loop

CPBA limit, i

BRGE endWh

ADDA 1,i ; number++

STWA number,d

BR while

endWh: DECO number,d ; printf("%d", number)

STOP

.END

What is c program?

It should be noted that because it may be used for low-level programming, C language qualifies as a system programming language (for example driver and kernel).

Usually, it is used to develop hardware components, operating systems, drivers, kernels, etc. The C-based Linux kernel is one example. It cannot be used to program for the internet like Java,.Net, PHP, etc.

Learn more about program on:

https://brainly.com/question/15683939

#SPJ1

Laptop overheating what should you do to prevent damage

Answers

Answer:

I think you should off it and let it cool down by itself.

Explanation:

Hope it helps and have a nice day! :)

BRAINIEST is appreciated it would really help

In what setting should a bidirectional microphone be used and why?

Answers

Bidirectional microphones have a very constricted pickup angle, making them useful for separating a single voice or mechanism in the presence of other sound sources, as lengthy as nothing is directly behind the mic. They are useful for picking up two sources that are next to each other.

What is bidirectional microphone?

The pressure gradient principle underpins this type of microphone. The sound can travel through the membrane on both sides.

When the sound on the front and backside of the diaphragm differs, the microphone sends a signal.

Bidirectional microphones have a particularly narrow pickup angle, which makes them advantageous for distinguishing a single voice or framework in the involvement of other sound sources, as long as nothing is directly behind the mic.

They are useful for detecting two sources that are close together.

Thus, in this setting a bidirectional microphone can be used.

For more details regarding bidirectional microphone, visit:

https://brainly.com/question/14360530

#SPJ1

What was the name of the switches used in second generation computers.

Answers

Answer: search on web it’s faster than brainly

Explanation:

Need help with this coding question. It must be done in python and must use a while loop structure.

Answers

Answer:

I'm generally puzzled

Explanation:

In 3-5 sentences, describe one disadvantage each for list, array, and queue data structures

Answers

One disadvantage each for list, array, and queue data structures are:

The list is constrained in that additions can only be made at the end.Because array items are kept in contiguous memory, insertion and deletion operations are expensive.Limited Room.

What are the disadvantages of simple queue in data structure?

It is difficult to quickly search the queue. You must begin at the very end and might need to keep another queue. Don't even consider utilizing a queue if you have data that you want to make searchable in the future. It is difficult to add or remove items from the queue's middle.

Note that An array doesn't verify its borders: In the C programming language, we are unable to determine whether the values placed in an array exceed its size or not.

Learn more about queue data structures from

https://brainly.com/question/15397013
#SPJ1

Type the correct answer in the box. Spell all words correctly. What method is Dana using? Dana is working on a software development project. As a team leader she sets up time -bound targets for each of the members in her cross-functional team to improve collaboration. She is using the _ method of project development

Answers

Since Dana is using a cross-functional team to improve collaboration. She is using the Agile method of project development.

What is agile method of development?

Agile is one that lets teams offer value to their clients more quickly and with fewer difficulties through an iterative approach to project management and software development.

Note that an agile team produces work in manageable, small-scale increments rather than staking all on a "big bang" launch.

Since the Agile technique divides a project into many parts and uses these phases to manage the project. Continuous improvement at every stage and ongoing collaboration with stakeholders are required. Teams cycle through a process of planning, carrying out, as well as assessing once the job starts.

Learn more about Agile from

https://brainly.com/question/14524978
#SPJ1

Jeremiah is interested in becoming a certified nursing assistant. Which educational path is probably the BEST fit for this goal?

A.
university

B.
college

C.
vocational school

D.
entrepreneur academy

Answers

Answer:

Explanation: WE can do it justin university

Which of the following methods includes or embeds a new node directly ahead of a child node?

a. node.appendChild(new)
b. node.replaceChild(new, old)
c. node.insertBefore(new, child)
d. node.insert(new, old)

Answers

Option c is correct. Node.insertBefore(new, child) is the method that includes or embeds a new node directly ahead of a child node.

The Node interface's insertBefore() method places a node as a child of a given parent node ahead of a reference node.

InsertBefore() transfers the specified node to the new place if it already exists in the document. (That is, before adding it to the given new parent, it will automatically remove it from its current parent.)

As a result, a node cannot be present in two places in the document at once. The full contents of the DocumentFragment are moved into the child list of the chosen parent node if the given child is a DocumentFragment. the node that newNode is added before. In the event that this is null, newNode is appended to the end of the node's child nodes.

To know more about node click on the link:

https://brainly.com/question/28485562

#SPJ4

Question 6 of 20:
Select the best answer for the question.
6. You can
to keep one area of a worksheet static while you scroll to a different area within the same worksheet.
A. freeze panes
O B. use the Zoom slider
O C. create a bookmark
O D. highlight a cell range

Answers

Answer:

A. freeze panes

Explanation:

3 Write a program that asks the user to enter a number of seconds.
3.a There are 86400 seconds in a day. If the number of seconds entered by the user is greater than or equal to 86400, the program should display the number of days in that many seconds.
3.b There are 3600 seconds in an hour. If the number of seconds entered by the user is less than 86400 but is greater than or equal to 3600, the program should display the number of hours in that many seconds.
3.c There are 60 seconds in a minute. If the number of seconds entered by the user is less than 3600 but is greater than or equal to 60, the program should display the number of minutes in that many seconds.


in C++

Answers

In this exercise we have to use the knowledge of C++ to write a program that is possible that asks the user to enter a number of seconds.

Writting the code:

#include <iostream>

#include <string>

using namespace std;

int main() {

  int n;

  cout<<"Time Calculator"<<endl;

  cout<<"Enter the seconds you would like to calculate into days, hours, minutes: ";

  cin>>n;

 

  cout<<n<<" seconds have:"<<endl;

  cout<<"\t"<<(n/(24*60*60))<<" day(s)"<<endl;

  n = n % (24*60*60);

  cout<<"\t"<<(n/(60*60))<<" hours(s)"<<endl;

  n = n % (60*60);

  cout<<"\t"<<(n/(60))<<" minutes(s)"<<endl;

  n = n % (60);

  cout<<"\t"<<(n)<<" seconds(s)"<<endl;

  return 0;

}

See more about C++ at brainly.com/question/19705654

#SPJ1

Write a program that reads integers from the user and stores them in a list. Use 0 as a sentinel value to mark the end of the input.

Answers

num = int(input("User Input: "))

mylist = []

while(num !=0):

   mylist.append(num)

   num = int(input("User Input: "))

mylist.reverse()

for i in mylist:

   print(i,end = ' ')

What is a program?

A program is a set of instructions that a computer follows to complete a specific task.

This question is answered in Python, and it employs 0 as a sentinel value, which means that the program stops prompting the user for input when the user enters 0.

This line requests input from the user

num = int(input("User Input: "))

This line declares a list that is empty

mylist = []

This loop is repeated as long as user enters input other than 0

while(num !=0):

This appends user input to the list

   mylist.append(num)

This prompts user for another input

   num = int(input("User Input: "))

This reverses the list

mylist.reverse()

The following iteration the list in reverse order

for i in mylist:

   print(i,end = ' ')

To learn more about program

https://brainly.com/question/23275071

#SPJ9


What would the code be for this?

Answers

Answer:

c = 'z'

while c >= 'a':

 print(c)

 c = c h r(ord(c)-5)

Explanation:

Keep in mind, you could have also chosen to do:

print("z\nu\np\nk\nf\na\n")

but it seems the character arithmetic is what is asked for...

need help array question ​

Answers

A C program segment for prompting a user to enter an integer and save it in an option variable is given below:

The Program

#include <stdio.h>

#include <ctype.h>

int main(void)

{

   char ch;

   float num1,num2,answer;

   printf("Enter the operation of your choice:\n");

   printf("a. add     s. subtract\n");

   printf("m. multiply q. divide\n");

   printf("q. quit\n");

   while ((ch = getchar())!='q')

   {

       ch=tolower(ch);

       //Ignore whitespace

       if (ch=='\n')

           continue;

       else

       {

           switch(ch)

           {

               //Addition part

               case 'a':

                   //First number

                   printf("Enter first number: ");

                   //Check to see if input is a number

               while (scanf("%f",&num1)==0)

               {

                   printf("Invalid input. Please enter a number, such as 2.5, -1.78E8, or 3: ");

                   scanf("%*s");

               }

               //Second number

              printf("Enter second number: ");

               while (scanf("%f",&num2)==0)

               {

                   printf("Invalid input. Please enter a number, such as 2.5, -1.78E8, or 3: ");

                   scanf("%*s");

               }

               //Do math for respective operation

              answer = num1 + num2;

               //Print out result

               printf("%.3f + %.3f = %.3f\n", num1,num2,answer);

               break;

           //Subtraction part

           case 's':

              printf("Enter first number: ");

               while (scanf("%f",&num1)==0)

               {

                   printf("Invalid input. Please enter a number, such as 2.5, -1.78E8, or 3: ");

                   scanf("%*s");

               }

               printf("Enter second number: ");

               while (scanf("%f",&num2)==0)

               {

                   printf("Invalid input. Please enter a number, such as 2.5, -1.78E8, or 3: ");

                   scanf("%*s");

               }

               answer = num1 - num2;

               printf("%.3f - %.3f = %.3f\n", num1,num2,answer);

               break;

           //Multiplication part

           case 'm':

               printf("Enter first number: ");

               while (scanf("%f",&num1)==0)

               {

                   printf("Invalid input. Please enter a number, such as 2.5, -1.78E8, or 3: ");

                   scanf("%*s");

               }

               printf("Enter second number: ");

               while (scanf("%f",&num2)==0)

               {

                   printf("Invalid input. Please enter a number, such as 2.5, -1.78E8, or 3: ");

                   scanf("%*s");

               }

               answer = num1 * num2;

               printf("%.3f * %.3f = %.3f\n", num1,num2,answer);

               break;

           //Division part

           case 'd':

               printf("Enter first number: ");

               while (scanf("%f",&num1)==0)

               {

                  printf("Invalid input. Please enter a number, such as 2.5, -1.78E8, or 3: ");

                   scanf("%*s");

               }

               printf("Enter second number: ");

               while (scanf("%f",&num2)==0)

               {

                   printf("Invalid input. Please enter a number, such as 2.5, -1.78E8, or 3: ");

                   scanf("%*s");

               }

              //Check for if number is a zero

               while (num2==0)

               {

                   printf("Please enter a non-zero number, such as 2.5, -1.78E8, or 3: ");

                   while (scanf("%f",&num2)==0)

                   {

                       printf("Invalid input. Please enter a number, such as 2.5, -1.78E8, or 3: ");

                       scanf("%*s");

                   }

               }

               answer = num1 / num2;

               printf("%.3f / %.3f = %.3f\n", num1,num2,answer);

               break;

           //For if a non-valid operation is entered

           default:

               printf("That is not a valid operation.\n");

               break;

       }

   }

  printf("Enter the operation of your choice:\n");

   printf("a. add      s. subtract\n");

   printf("m. multiply q. divide\n");

   printf("q. quit\n");

}

printf("Bye.\n");

return 0;

Read more about programming here:

https://brainly.com/question/23275071

#SPJ1

Tom is interested in becoming a dental hygienist. When he goes to the dentist for his regular checkup, he asks the hygienist there if she would be willing to talk to him about what her job is like. What is this talk called?

A.
jobs outlook

B.
informational interview

C.
data session

D.
counseling appointment

Answers

Since Tom is interested in becoming a dental hygienist and he asks the hygienist there if she would be willing to talk to him about what her job is like, this talk is called  D. counseling appointment.

What is the purpose of career counseling?

In order to make decisions about your job, education, and overall well-being, career counseling is a process that will help you get to know and understand yourself as well as the working environment.

Note that Choosing a major and determining what profession you want to acquire after graduation are only two aspects of career development.

A career counselor will assist a client in exploring abilities and strengths, taking into account education levels and others.

Learn more about counseling appointment from

https://brainly.com/question/28214390

#SPJ1

The given program reads a list of single-word first names and ages (ending with -1), and outputs that list with the age incremented. The program fails and throws an exception if the second input on a line is a string rather than an integer. At FIXME in the code, add try and except blocks to catch the ValueError exception and output 0 for the age.

Ex: If the input is:

Lee 18
Lua 21
Mary Beth 19
Stu 33
-1
then the output is:

Lee 19
Lua 22
Mary 0
Stu 34


# Split input into 2 parts: name and age
parts = input().split()
name = parts[0]
while name != '-1':
# FIXME: The following line will throw ValueError exception.
# Insert try/except blocks to catch the exception.
age = int(parts[1]) + 1
print('{} {}'.format(name, age))

# Get next line
parts = input().split()
name = parts[0]

Answers

The statements that catch the exception in the program are:

      age = int(parts[1]) + 1

      print('{} {}'.format(name, age))

      # Get next line

      parts = input ( ) . split ( )

      name = parts[0]

  except ValueError:

      print ( ' Invalid value ! ' )

      # Get next line

      parts = input().split()

      name = parts [ 0 ]

Complete Program

# Split input into 2 parts: name and age

parts = input().split()

name = parts[0]

while name != '-1':

  # FIXME: The following line will throw ValueError exception.

  # Insert try/except blocks to catch the exception.

  try:

      age = int ( parts [ 1 ] )  + 1

      print( ' { } { } ' . format ( name, age ) )

      # Get next line

     parts = input( ) . split ( )

      name = parts[0]

  except ValueError:

      print ( ' Invalid value ! ' )

      # Get next line

      parts = input ( ) . split ( )

      name = parts[0]

Read more about programming here:

https://brainly.com/question/23275071

#SPJ1

In this code block, the monkey sprite is an example of both an input and a(n)__

Answers

In this code block, the monkey sprite is an example of both an input and a option d: function.

What does CodeMonkey do?

It is an Another illustration is a function that directs a rat or a monkey to an object. "goto" is the name of this function. You can utilize the same code with multiple values by using arguments in a function. When using the function, the main code sends these values to it.

Note that In Game Lab, we refer to a group of values that depicts a character from a narrative, animation, or game as a sprite. Sprites can be saved in variables with labels, however unlike other types of values that you might have previously placed in variables, such numbers, sprites allow you to group together several related values under a single label.

Therefore, one can say that CoffeeScript and Python are two text-based programming languages covered by codeMonkey. The CoffeeScript is the name of the programming language employed in Coding Adventure. This computer language, which is related to JavaScript, is mostly used for web applications in the sector.

Learn more about coding from

https://brainly.com/question/27682740
#SPJ1

Answer: parameter

Explanation:

When we work on projects with others, we:
OA. are exposed to new possibilities.
OB. rely only on our own creativity.
O C. can take all the credit ourselves.
D. tend not to learn anything at all.

Answers

A makes the most sense

The government announces plans to create more accurate maps of a remote mountain range. This is good news for people in what line of work?

A.
architecture

B.
human resources management

C.
surveying

D.
cryptocurrency management

Answers

Creating more accurate maps of a remote mountain range would be a good news for people in this line of work: C. surveying.

What is a topographic map?

A topographic map can be defined as a type of map which contains an accurate and detailed graphical (two-dimensional) description, representation or records of both natural and man-made (artificial) features on the surface of planet Earth such as the following:

PlainsValleyMountainHillsPlateau

Generally speaking, surveying typically involves an examination and record of various information about the geographical area, landforms, and features of a particular region, especially through the use of maps.

Read more on topographic map here: https://brainly.com/question/181146

#SPJ1

Edit the program provided so that it receives a series of numbers from the user and allows the user to press the enter key to indicate that he or she is finished providing inputs. After the user presses the enter key, the program should print:

The sum of the numbers
The average of the numbers
An example of the program input and output is shown below:

Enter a number or press Enter to quit: 1
Enter a number or press Enter to quit: 2
Enter a number or press Enter to quit: 3
Enter a number or press Enter to quit:

The sum is 6.0
The average is 2.0

This is what I have but it just keep going with the numbers
# Edit the code below
theSum = 0.0
count = 0
while True:
number= input("Enter a number or press Enter to quit:")
if number=="":
break
theSum+=float(number)
count+=1
print("The sum is", theSum)
if count>0:
print("The average is ", theSum/count)

Answers

The edited and complete program is as follows

theSum = 0.0

count = 0

while True:

   number= input("Enter a number or press Enter to quit:")

   if not number:

       print("The sum is", theSum)

       if count>0:

           print("The average is ", theSum/count)

       exit()

   theSum+=float(number)

   count+=1

How to edit the program?

The complete program that calculates the average and the sum of numbers entered by the user is as follows:

Note that the program ends when the user presses the enter key and comments are used to explain each line

#This initializes the sum

theSum = 0.0

#This initializes the counter

count = 0

#This ensures the user enters numbers repeatedly

while True:

   #This gets the input

   number= input("Enter a number or press Enter to quit:")

   #When the user presses enter

   if not number:

       #This prints the sum and the average

       print("The sum is", theSum)

       if count>0:

           print("The average is ", theSum/count)

       #This exits the program

       exit()

   #This calculates the sum

   theSum+=float(number)

   count+=1

Read more about python programs at

https://brainly.com/question/26497128

#SPJ1

Make a program that, given a square matrix, identify the largest number and what position it has, indicate how many even and odd numbers it has. With functions in pseint.

Answers

A program that, given a square matrix, identifies the largest number and what position it has, and indicates how many even and odd numbers it has, is given below:

The Program in C++

// C++ implementation to arrange

// odd and even numbers

#include <bits/stdc++.h>

using namespace std;

// function to arrange odd and even numbers

void arrangeOddAndEven(int arr[], int n)

{

  int oddInd = 1;

   int evenInd = 0;

   while (true)

   {

       while (evenInd < n && arr[evenInd] % 2 == 0)

           evenInd += 2;

           

       while (oddInd < n && arr[oddInd] % 2 == 1)

           oddInd += 2;

           

      if (evenInd < n && oddInd < n)

           swap (arr[evenInd], arr[oddInd]);

           

       else

           break;

   }

}

// function to print the array

void printArray(int arr[], int n)

{

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

       cout << arr[i] << " ";

}

// Driver program to test above

int main()

{

   int arr[] = { 3, 6, 12, 1, 5, 8 };

   int n = sizeof(arr) / sizeof(arr[0]);

   cout << "Original Array: ";

  printArray(arr, n);

   arrangeOddAndEven(arr, n);

   cout << "\nModified Array: ";

   printArray(arr, n);

   return 0;

}

Output

Original Array: 3 6 12 1 5 8

Modified Array: 6 3 12 1 8 5

Read more about programming here:

https://brainly.com/question/23275071

#SPJ1

Other Questions
Many doctors rely on the use of intravenous medication administration in order to achieve an immediate response of a particular drug's effects. The concentration, C, in mg/L, of a particular medication after being injected into a patient can be given by the function C of t is equal to the quantity negative 8 times t squared plus 56 times t end quantity over the quantity t squared plus 3 times t plus 2 end quantity comma where the time, t, is hours after injection.Part A: What is the domain of the function C(t) based on the context of the problem? Show all necessary calculations. (5 points)Part B: Graph the function to determine the greatest concentration of the medication that a patient will have in their body. (5 points) Bullying In Early adolescence question 5 Is Puerto Rico a sovereign state? Yes/ No. Defend your answer with evidence. Which of the following is a career that includes a role relating to the formal sciences?Question 2 options:AnthropologistMathematicianTeacherGeologist PLEASE SOLVE ASAP!!!! (lc)which african-american inventor received numerous patents for improvements on the functioning of steam engines? elijah mccoy granville woods jan e. matzeliger booker t. washington Write a C++ program using only one loop that will display the ASCII Code and the correspondingcharacter in a table for each of the following: CAPITAL LETTERS, lowercase letters and the numbersfrom 0-9. The table should have six (6) columns: ASCII CODE for CAPITAL LETTERS, CAPITALLETTERS, ASCII CODE for lowercase letters, lowercase letters, ASCII CODE for the numbers from0-9, and ASCII CODE for the numbers from 0-9. Hint: Remember how characters are stored in memoryValidate your input using loops.In C++ What factors contributed to the wealth of some Europeans and the great poverty of others in this period 1500-1750? All points on the chain of a bicycle have the same linear speed. Is the magnitude of the linear acceleration also the same for all points on the chain? How are the angular accelerations of the two sprockets related? Pregunta, si hay 3% de probabilidades de encontrara algo especial en una caja cuantas cajas debera abrir para encontrarlo? There are 3 consecutive integers that add up to 33. What are the integers? Read the point and the chart below.Point: Gilgamesh believes in the power of supernatural forces.Chart with quoted evidence from the epic poem Gilgamesh of Gilgamesh's belief in the power of supernatural forces. The chart has an area to add paraphrased evidence.Which statement best completes the blank in this chart?So frightened that he is trembling and crying, Gilgamesh prays fervently for anyone to hear and protect him.Frightened by what he faces, Gilgamesh pleads to the god Shamash to protect him on this dangerous journey.Believing that Shamash is the most powerful god, Gilgamesh cries and begs him for help on the journey.Gilgamesh is scared about his dangerous journey, and he has no idea where to turn for help aside from the gods. Substitute the length of the sides (8in, 15 in, z) into the Pythagorean Theorem. Then, find the length of the missing side z. 3/11 x 4/9 answered in a fraction form Which is greater 16/20 or 9/20 Write the equation of the line in slope-intercept form. The coefficients in the equation are b=4 and m=-5 PLS SOMEONE HELP ME PLS!A figure is dilated by a scale factor of 4. Which of the following is true about the figure and its dilation? A. The perimeter of the image is 4 times as large as the perimeter of the pre-image.B The perimeter of the image is 8 times as large as the perimeter of the pre-image.C The perimeter of the image is 16 times as large as the perimeter of the pre-image.D The perimeter of the image is the same as the perimeter of the pre-image. A letter to your principal requesting a permission to participate in an event where you have an important function Out of 350 applicants for a job, 163 are male and 56 are male and have a graduate degree. Step 1 of 2 : What is the probability that a randomly chosen applicant has a graduate degree, given that they are male? Express your answer as a fraction or a decimal rounded to four decimal places. choose the equation that matches each line