The computing paradigm that can solve a problem by describing the requirements, without writing code in a step-wise fashion to solve the problem is called; Imperative
Programming ParadigmThe correct answer here is Imperative Paradigm because imperative programming is a programming paradigm that utilizes statements which change the state of a program.
Now, further to the definition, an imperative program usually consists of commands that the computer should perform and this imperative programming focuses on describing the way that a program operates.
Read more about Programming paradigm at; https://brainly.com/question/14260799
What is it called when u want 2 or more cells into 1
Answer:
Concatenate
Explanation:
mark me brainliest!!
Jobs of the future can use robots to replace humans in which areas
The use of robots and automation is expected to continue to increase in many industries, including:
Manufacturing: Robots are already widely used in manufacturing to perform repetitive and dangerous tasks, such as welding, painting, and assembly.
What are the Jobs?Others are:
Agriculture: Robots and drones are being developed to perform tasks such as planting, harvesting, and monitoring crops, which could reduce the need for human labor in the agricultural sector.
Healthcare: Robots are being used to perform tasks such as surgery, patient care, and drug delivery, which could help address shortages of healthcare workers and improve patient outcomes.
Lastly, Transportation: Self-driving cars and trucks are being developed, which could eventually replace human drivers and reduce the need for logistics and delivery workers.
Read more about Jobs here:
https://brainly.com/question/6947486
#SPJ1
BestMed Medical Supplies Corporation sells medical and surgical products
and equipment from more than 700 manufacturers to hospitals, health clinics,
and medical offices. The company employs 500 people at seven locations in
western and midwestern states, including account managers, customer service
and support representatives, and warehouse staff. Employees communicate by
traditional telephone voice services, email, instant messaging, and cell phones.
Management is inquiring about whether the company should adopt a system for
unified communications. What factors should be considered? What are the key
decisions that must be made in determining whether to adopt this technology?
Use the web, if necessary, to find out more about unified communications and
its costs.
Management of the company should adopt a system for unified communications.
What is unified communications?Unified Communications (UC) is a term that connote a kind of a phone system that uses or “unifies” a lot of communication methods within one or the same business.
Note the one's business can be able to communicates in a lot of ways such as phone calls, video conferencing and as such, Best Med Medical Supplies Corporation should be considered adopting a system for unified communications.
They should look into:
The level of productivityTotal costsCompatibility with their business model Productivity.Learn more about communications from
https://brainly.com/question/26152499
#SPJ1
Which of these symbols is the assignment operator?
{ }
( )
#
=
Answer:
# i think
Explanation:
Its = (D) I made my own game in python
What is revising?
UMMM ye I
Answer:
Revise a manuscript again in order to make corrections or improvements. Revision is a process in the writing of rearranging, adding, or removing paragraphs, sentences, or words. During the writing process or after a draft is completed, writers may revise their work.
Explanation:
You see a picture of three people having fun in an IG post. Beneath the photo is a text about a prty. You wrongly assume this picture was taken at a prty when it was actually taken during a family dinner. This type of misunderstanding is an example of
From the information given this type of misunderstanding is an example of: Communication Barrier.
What are communication Barriers?Communication obstacles prohibit us from accurately receiving and accepting the messages used by others to transmit their information, thoughts, and ideas. Communication difficulties include information overload, selective perceptions, workplace gossip, semantics, gender disparities, and so on.
It is to be noted that the Assumption that you comprehend what the other person is saying is one of the most significant communication barriers. People frequently make assumptions based on their own experiences and interpretations. You don't always know you're not talking about the same subject.
Learn more about Communication Barrier:
https://brainly.com/question/8588667
#SPJ1
Answer:
error, i think.
Create a program that will ask the user to specify a file in the current directory. The program will count and report the number of lines, words and characters. There are several approaches that can be used. Hint: You may want to consider read(), readlines(), readline(), split() method, and/or a for statement such as 'for line in thisfile' might be helpful. The approach is up to you. It is correct if it works!
Answer:
Explanation:
The following code is written in Python. It is a function that takes in the file directory as an argument, reads the file. Then it counts the lines and words in the file and saves that count in separate variables. Then it loops through the entire file counting the characters, without counting whitespace and newlines breaks. Finally, it prints all of that information out.
def countText(file):
f = open(file, 'r')
text = f.read()
lines = len(text.split('\n'))
words = len(text.split(' '))
characters = 0
for char in text:
if (char != ' ') and (char != '\n'):
characters += 1
print("File Count:")
print("Lines: " + str(lines))
print("Words: " + str(words))
print("Characters: " + str(characters))
factors to consider when selecting an operating system to install in a computer
Answer:
what do you want your computer to do, how do you want your computer to look, how fast do you want your computer to run, etc
You enjoy helping people find solutions to problems that they are having with technology. Which job might be best for you?
A database manager
B technical support
C website design
D data scientist
Answer: B - technical support
Explanation:
Assuming int numbers[SIZE]; is initialized somehow, write a function counter() that you can send the array to, plus an extra integer, and the function will return the number of times that value is found in the array. For example, if the array of SIZE 7 contains {1,2,3,2,3,3,3}then the call
x=counter(numbers,SIZE,3); will put 4 into x.
Answer:
Explanation:
The following function is written in Java and takes in three parameters the array, its size, and the chosenNumber that will be counted. The function then creates an instance variable called Counter and loops through the given array looking for the chosenNumber. Every time that the number is found in the array it adds 1 to the counter. Once the loop is done it returns the total value of the counter variable.
public static int counter(int[] numbers, int Size, int chosenNumber) {
int counter = 0;
for (int x = 0; x < Size; x++) {
if(numbers[x] == chosenNumber) {
counter++;
}
}
return counter;
}
what type of computer is an ATM attached to ?
How to protect data in transit Vs rest?
Implement robust network security controls to help protect data in transit. Network security solutions like firewalls and network access control will help secure the networks used to transmit data against malware attacks or intrusions.
If this helps Brainliest please :)
cell d1 contains the value 7.877 you want cell d1 to display this value as 7.9 how can you accomplish
Answer:
You round?
Explanation:
The round function in excel can be used to change the value of 7.877 to 7.9 by writing the following code in cell d1 ; =round(7.877, 1)
The round function is used in excel to approximate numbers to a certain number of decimal places. The round function takes in two arguments ; the number to be rounded and the number of decimal places. To obtain a value of 7.9 ; round 7.877 to 1 decimal place., the value after the first decimal is above 5 ; it is rounded to 1 and added to the first decimal value.Therefore, the round function could be used to accomplish the above task.
Learn more :https://brainly.com/question/17566733
Write a program that contains a class to encapsulate a word that is entered by the user. An appropriate accessor method should be written and used. Write appropriate methods to do the following: Convert the word to all lowercase letters. Scramble the word into all possible permutations and store them in a list or array. Sort the permutations in alphabetical order. Display the list of permutations. Report the number of permutations. Test all constructors and methods using a separate driver class.
Answer:import random
class Word(object):
def __init__(self):
self.word = ""
def set_word(self, word):
self.word = word
def lowercase(self):
self.word = self.word.lower()
def scramble(self):
length = len(self.word)
perm = 1
for x in range(1, length+1):
perm *= x
scrambled = list()
for i in range(0, perm):
woo = [x for x in self.word]
random.shuffle(woo)
scrambled.append("".join(woo))
scrambled = sorted(scrambled)
print(scrambled)
print(f"Number of permutations: {len(scrambled)}")
d = Word()
d.set_word("under")
print(d.lowercase())
print(d.scramble())
Explanation:
The python program defines a class called "Word" that uses an accessor "set_word" to pass in a string value to the object variable "self.word". The lowercase() method converts the string to lowercase if it is capitalized and the scramble() method returns a list of possible rotations of the letters of the word.
Transitive spread refers to the effect of the original things transmitted to the associate things through the material, energy or information.
a. True
b. False
What the advantages and disadvantages of file sharing to the users
Answer:
.....................................
Oliver wants to send a report to his boss discussing the upcoming project. Which communication facility would he use to send a formal message to his boss?
A. email
B. chat
C. forum
D. blog
I don't know who to do this assignment
An employee’s total weekly pay equals the hourly wage multiplied by the total number of regular hours plus any overtime pay. Overtime pay equals the total overtime hours multiplied by 1.5 times the hourly wage. Write a program that takes as inputs the hourly wage, total regular hours, and total overtime hours and displays an employee’s total weekly pay.
wage=int(input("What the hourly wage?: "))
total_reg_hours=int(input("Enter total regular hours: "))
total_over_hours=int(input("Enter total overtime hours: "))
#Calculate the weekly pay.
print("The weekly pay of this employee is ",(total_reg_hours*wage)+(total_over_hours*(1.5*wage)))
C++:#include <iostream>
int main(int argc, char* argv[]) {
int wage,t_reg,t_over;
std::cout << "Enter wage: "; std::cin>>wage;
std::cout << "\nEnter total regular hours: "; std::cin>>t_reg;
std::cout << "\nEnter total overtime hours: "; std::cin>>t_over;
//Calculate the weekly pay.
std::cout << "The weekly pay of this employee is " << (t_reg*wage)+(t_over*1.5*wage) << std::endl;
return 0;
}
what is the importance of file management and how do you control files over time?\
Answer:
File management improves productivity by lowering the amount of time employees spend looking for documents. It also cuts down on the time it takes to recreate files when an employee can't find the original.
To control files over time, here are some tips.
-Delete unnecessary files
-Take immediate action on files you encounter
-Consolidate files when possible
-Have less folders as possible
Describe the different compents of QBASIC editor window
Answer:
The QBasic Editor Screen has three parts. They are- Editor Window, Immediate Window and Output Window.
A help desk technician is troubleshooting a workstation in a SOHO environment that is running above normal system baselines. The technician discovers an unknown executable with a random string name running on the system. The technician terminates the process, and the system returns to normal operation. The technician thinks the issue was an infected file, but the antivirus is not detecting a threat. The technician is concerned other machines may be infected with this unknown virus. Which of the following is the MOST effective way to check other machines on
the network for this unknown threat?
answer choices
Monitor outbound network traffic.
Manually check each machine.
Provide a sample to the antivirus vendor.
Run a startup script that removes files by name.
The best approach to verify additional machines mostly on network for this unidentified danger is to manually examine each one.
What is an example of workstation?The Alto, created in 1973 at Xerox PARC, was the first single-user computer featuring high-resolution graphics (and hence a workstation in the contemporary sense of the word). This same Terak 8510/a (1977), Rivers Flow PERQ (1979), and also the later Xerox Star are further vintage workstations (1981).
What distinguishes a workstation from a server?Servers are pieces of hardware & software that process client requests, control network resources, and store data. Workstations, which comprise laptops and desktop computers, efficiently carry out challenging, technical tasks including producing digital content and doing in-depth analysis.
To know more about workstation visit:
brainly.com/question/30468847
#SPJ1
children and texhnology
Answer: technology better
Explanation:
Joshua always participate in team meetings and comes up with ideas and suggestions. what quality is he demonstrating?
A. Honestly
B. Innovativeness
C. approahability
D. confidence
E. resourcefulness
its plato!! pls help!!
Answer:
recoursefulness
Explanation:
because he is being a good recourse and is actively participating
Resourcefulness quality is demonstrated in this particular instance. Thus, option E is correct.
What is quality?Quality refers to how well the goods adhere to all rules, regulations, and guidelines. the benchmark by which something is evaluated in comparison to other items of a similar nature; the level of brilliance of something.
The skill and ingenuity to deal with challenging circumstances or uncommon difficulties are referred to as resourcefulness. It entails overcoming challenges and limitations to solve problems and complete tasks. Making the most of your assets in order to create someone new or improved is another aspect of being resourceful.
Additionally, they possess the ability to remain resourceful in the midst of difficulty and come up with original solutions to challenges. Therefore, option E is the correct option.
Learn more about quality, here:
https://brainly.com/question/31317502
#SPJ2
1.14 zylab training : one large program
1.14 zyLab training*: One extensive program The majority of zyLabs focus on a single concept and are meant to be finished in 20–25 minutes.
What is difference between program and Programme?
Program is the proper spelling in American English. Program is spelled more frequently in Australian and Canadian English. Although program is frequently used in computing contexts, programme is the preferred spelling in British English. Here's a hint: Want to ensure that your writing is flawless?
A program, often known as an application or software, is a set of instructions that processes input, manipulates data, and outputs a result. For instance, Microsoft Word is a word processing tool that enables users to create and write documents.
Know more about concept visit:
https://brainly.com/question/16185615
#SPJ1
What is the output?
>>>import time
>>>time.localtime()
a. the number of seconds since the epoch
b. the user's time zone
c. the date
d. the time
e. the time-zone offset
It is a select all that apply type of question
Answer:
a. the number of seconds since the epoch
Explanation:
time.localtime(), returns the number of seconds since the epoch if no argument is passed oyherwise it return struct_time in local time if you pass in seconds since epoch
How many types of Robots are there ?
Can you please Write them down.
Answer:
There are 6.
Explanation:
1) Polar
2) Delta
3) Cartesian
4) SCARA
5) Cylindrical
6) Vertically articulated
The most common types of robots are
-Autonomous mobile robots (AMRs)
-Automated guided vehicles (AGVs)
-Robotic arms
-Humanoid robots
-Hybrids
-Cobots
Hope this helps :)
What computer program is best for business correspondence
It might be a Microsoft
What font family is Times New Roman an what font family is Arial?
Answer:
Some Font Examples
Generic Font Family Examples of Font Names
Serif Times New Roman Georgia Garamond
Sans-serif Arial Verdana Helvetica
Monospace Courier New Lucida Console Monaco
Cursive Brush Script MT Lucida Handwriting
Explanation:
hope it help
Answer:
R family Font on Windows Font on Unixsans Arial Arialserif Times New Roman Timesmono Courier Couriersymbol Standard Symbols L SymbolWhich type of programming language translates all lines of code together and then executes them at once?
Compiled
Interpreted
Machine
Python
Answer:
Compiled
Explanation:
pedigree worksheet try to identify the genotypes of the following individuals using the pedigree above
Using the pedigree above, determine the genotypes of the following people (homozygous dominant, recessive allele, heterozygous).
What is genotypes?An organism's genotype is made up of all of its genetic components. The term "genotype" can also be used to describe the alleles or genetic variations that a person carries in a certain gene or genetic region. The ploidy, or number of copies of each chromosome, found in that species, determines how many alleles a person can have for a given gene. In diploid organisms like humans, there are two complete sets of chromosomes, which means that each person has two alleles for each gene. Homozygous refers to a genotype when both alleles are the same. Heterozygous refers to a genotype when there are two distinct alleles. Phenotype, the observable qualities and attributes of an individual or creature, is influenced by genotype.
To know more about genotypes visit:
https://brainly.com/question/14553311
#SPJ4