Answer:
it is a utility software....
You have been supporting CSM Tech Publishing's Windows Server 2016 server network for over a year. The office has two Windows Server 2016 servers running Active Directory and a number of other roles. Management has informed you that a small sales office is opening in the same building three floors up. The sales manager wants to install a sales application on a server located in the sales office. This server will have limited physical security because there's no special room dedicated for it, which means it will be accessible to non-IT personnel and visitors. You're considering installing Windows Server 2016 Server Core on the new server because accessing its console regularly probably won't be necessary, and this server will be managed from one of the other CSM Tech Publishing servers. What are the benefits and drawbacks of using Server Core for this branch office
Answer:
??
Explanation:
Order the steps for the correct path to adding defined names into a formula. Enter an equal sign into the cell. Type an open parenthesis and enter named cells instead of location. Type the function in caps.
Answer: Enter equal sign into the cell, Type the function in caps, and Type an open parenthesis and enter names cells instead of location.
Explanation: It's the correct order.
Answer:
Enter an equal sign into the cell
Type the function in caps
Type an open () and enter named cells instead of location
Explanation:
Lines in a publication used to align objects are known as _____. Guides Boundaries Rulers Fields
Answer:
Guides
Explanation:
3. Compilers and Assemblers translate each source file individually to generate object code files. Hence the object files need to be linked together before they can be executed. Theoretically, however, it is possible to skip the linking step and directly have compilers generate the final executable file. What would be the downside of taking the latter approach
Answer:
This could lead to a build error as the process called relocation is bypass which makes reference to external symbols, assigns final addresses to functions and variables, and rechecks code and data to match new addresses.
Explanation:
There are four stages in running a C language source code, they are;
PreprocessingCompilationAssemblyLinkingPreprocessing processes the file contents like the include statement, conditions, functions, etc. The Compilation stage compiles the file to an assembly file, while the Assembly stage creates an assembly list and offset of the assembly code and stores it in an object file. The linking stage relocates the object file to execute the program.
Write a program that prompts the user to enter a Social Security number in the format ddd-dd-dddd, where d is a digit. The program displays Valid SSN for a correct Social Security number or Invalid SSN otherwise.
ssn = input("Enter a valid Social Security number: ")
dashes = 0
nums = 0
message = "Invalid SSN"
if len(ssn) == 11:
for x in ssn:
if x.isdigit():
nums += 1
elif x == "-":
dashes += 1
if nums == 9 and dashes == 2:
message = "Valid SSN"
print(message)
I wrote my code in python 3.8. I hope this helps!
The program that prompts the user to enter a Social Security number in the format ddd-dd-dddd, where d is a digit can be implemented in Python using regular expressions. The regular expression pattern for the SSN format can be used to validate the input.
Pythons code:
```python
import re
ssn_pattern = re.compile(r'^\d{3}-\d{2}-\d{4}$')
ssn = input("Enter your Social Security Number (format: ddd-dd-dddd): ")
if ssn_pattern.match(ssn):
print("Valid SSN")
else:
print("Invalid SSN")
```
In the above code, we first import the `re` module to work with regular expressions.
We then define the regular expression pattern for the SSN format as `^\d{3}-\d{2}-\d{4}$`. This pattern matches any string that starts with three digits, followed by a hyphen, then two digits, another hyphen, and finally, four digits.
We then prompt the user to enter their SSN using the `input()` function. We then check if the entered SSN matches the pattern using the `match()` function of the regular expression object `ssn_pattern`.
If the SSN matches the pattern, we print "Valid SSN". Otherwise, we print "Invalid SSN".
Know more about SSN,
https://brainly.com/question/31778617
#SPJ4
Complete the function to return the factorial of the parameter,
def factorial(number):
product = 1
while number
product = product number
number
return product
strNum = input("Enter a positive integer:)
num = int(strNum)
print(factorial(num))
def factorial(number):
product = 1
while number > 0:
product = product * number
number = number - 1
return product
strNum = input("Enter a positive integer:")
num = int(strNum)
print(factorial(num))
I hope this helps!
Answer:
def factorial(number):
product = 1
while number > 0:
product = product * number
number = number - 1
return product
strNum = input("Enter a positive integer:")
num = int(strNum)
print(factorial(num))
Explanation:
i got it right on edge 2020
Exercise 3.6.9: 24 vs. "24"5 points
Using the correct data type is important when math operators are involved.
Strings can also be “added” together. This is called concatenation.
A substring is part of an existing string. When strings are concatenated, each separate substring is combined to create a new string. Let’s check this out!
In this exercise, change the variables in the second code segment to strings and run the code. What do you notice?
# Code Segment One - Data Type - numbers
num_result = 24 + 24
print(num_result)
# Code Segment Two - Data Type - Strings
# Change both numbers to strings and run code
# Change only one number to a string and run code. What happens?
string_result = 24 + 24
print(string_result)
python
This is all you need to do for this one add quotes around the number to make it a string. Then for the question I don't know if you need to answer it but I said that when there is only one string it creates and addition problem of 24 + 24 and then when there are two strings it puts them right next to each other making it look like the number 2424.
The string in Python is indeed an unchangeable data type. A Unicode character is sequentially wrapped in single, double, or triple quotes. In Python, a whole number is null, negatively or positively ironclad, and has unlimited precise accuracy, such as 0, 100, -10.
Program Explanation:
In this code two-variable "num_result and string_result" is defined in which one is a string and one is an integer.In the integer and string variable, it adds two integer values with the "+" symbol.So, it will print the value that is "48" and "24 + 24".Program:
num_result = 24 + 24#defining an integer variable that use 2 integer value with "+" symbol
print(num_result)#print adding value
string_result = "24 + 24"#defining a string variable that use 2 integer value with "+" symbol
print(string_result)#print string value
Output:
Please find the attached file.
Learn more:
brainly.com/question/18494749
Imagine you were going to use a dedicated workstation for an animation job rather than a personal PC or the all-purpose PCs you see in libraries and most schools. What differences would you expect to see between a dedicated 3D animation workstation and a typical PC
Answer:
Explanation:
The three most notable differences that any user will notice between these two would be the following
High-Resolution DisplaySpecific Hardware (graphics tablet, camera, etc)Increased SpeedAn individual that is working in a career in Animation needs a workstation that is capable of rendering animations which take lots of processing power. Therefore, the workstation would have to be high-end meaning that it will be much faster than a normal personal PC. Animation and Digital Design require a very High-Resolution display and specific hardware to allow you to bring your creations to life and make sure they look as beautiful as possible. All of this is not found in a normal personal PC either.
2) A simple operating system supports only a single directory but allows it to have arbitrarily many files with arbitrarily long file names. Can something approximating a hierarchical file system be simulated
Answer:
Yes it can
Explanation:
The answer is Yes something approximating a hierarchical file system can be simulated. A way to carry out this simulation is through appending to each file name the name of the directory that contains it. But an offside to it is that it may end up becoming too complex to manage because the file name may be too long.
What is the main purpose of the status report? O A. To ensure that management and the team has a clear picture of the state of the project. B. To alert management to exceptional or unusual situations, C. To document the impact of change requests from the client. D. To detail the mistakes made in planning and budgeting,
Answer:
A. To ensure that management and the team has a clear picture of the state of the project
Explanation:
hope this helps!
Answer:
A
Explanation:
uses of prototype and who made the prototype
Answer:
A prototype is an early sample, model, or release of a product built to test a concept or process. It is a term used in a variety of contexts, including semantics, design, electronics, and software programming. A prototype is generally used to evaluate a new design to enhance precision by system analysts and users.
Explanation: The place that made prototype was Radical Entertainment.
Hoped this helped.
What is the empty space inside the character 'O' called?
Answer:
In typography, a counter is the area of a letter that is entirely or partially enclosed by a letter form or a symbol (the counter-space/the hole of). The stroke that creates such a space is known as a "bowl".
power point programm
Your company decided to upgrade to 10Gbps using 10GBASE-T networking. Which category of Ethernet cable would you use, to cover distance up to 100m (328ft)
Answer:
Cat 6A
Explanation:
Many networking experts agree that the Cat 6A (Category 6A) cable can offer highspeed internet access of up to 10Gbps.
Apart from the speed advantage it also has stability/scale advantages like being able to cover a maximum distance of up to 100m (328ft). However, other ethernet cables like Cat 6 are able to cover a length of just about 55 meters (180 ft) which lesser than Cat 6A. Hence, the Company should use a Cat 6A for the planned upgrade.
Which of the following best describes a hot spot? a. A zone in which it is unsafe to use your computer or network without additional security. b. Another term for the deep web, an unsearchable area of the Internet known for illegal activity. c. An area on a webpage that provides the most important, up-to-date content. O d. A wireless network that provides Internet connections to mobile computers and devices.
Answer:
d
A wireless network that provides Internet connections to mobile computers and devices.
Text that is positioned at the top of a column and labels the
column.
Answer:
column header
Explanation:
What is the output of the below Java program?
int a=1:
while (a=4)
{
System.out.print(a + "");
a ++:
}
What is the output of the following java program
Answer:
If you fix your program: instead of "while (a=4)" you will have: while(a<4)
It wil print:
> 123
Explanation:
You can check the output of that kind of programs in online repl consoles e.g: https://repl.it/languages/java10
The output for the given program will be 1, 2, 3. The correct option is B.
What is while loop?A while loop is a control flow statement that enables code to be performed repeatedly based on a specified Boolean condition in the majority of computer programming languages. The while loop can be viewed as an iterative version of the if statement.
While a predetermined condition is satisfied, a while loop is a loop that repeatedly executes the code provided in its body, also known as a while statement. The loop ends if or when the condition is no longer satisfied.
We can repeat the execution of various statements using the do-while loop. When we need to run the loop at least once, the do-while loop is typically utilised.
The given program will run till the value of a will be equal to 4, so till then it will display 1, 2, and 3.
Thus, the correct option is B.
For more details regarding while loop, visit:
https://brainly.com/question/15690925
#SPJ2
Your question seems incomplete, the missing options are:
A) 1 2 3 4
B) 1 2 3
C) 6
D) Compiler error
There are 4 classrooms for fifth grade and 4 classrooms for sixth grade at a school. Each classroom has 20 students. A teacher is planning a field trip for some fifth and sixth grade students at this school. The teacher knows the following information
Answer:
what do you want
Explanation:
there are 160 people in all if thatś what you want
Answer:
452
Explanation: Because i can clap you in a 1v1 my epic is ICY_Nilson Your complete dog water i can clap you up like a fish
Please help me!! It's due today!
Answer: whats the options?
Explanation:
The average number of entities completed per unit time -- the output rate -- from a process is called ____.
Answer:
Throughput.
Explanation:
The average number of entities completed per unit time -- the output rate -- from a process is called throughput.
Basically, throughput is a technical term used to describe the amount of data that can be transmitted or transferred from one place to another in a specific period of time. It is used to measure or determine the performance of RAM and hard drives.
Trish has bought a new computer that she plans to start on after a week
(50 points) {brainliest}
A design model needs to have several important characteristics. Which characteristic indicates that a model is useful and can be applied in different situations?
A. Philosophy
B. Reduction
C. Transformation
D. Pragmatism
Answer: the answer is actually not c I got D instead
Explanation:
I’m doing the exam for it right now
Answer:
Pragmatism
Explanation:
Pragmatism indicates that a model is useful and can be applied in different situations.
When do you use an else statement?
Answer: In JavaScript we have the following conditional statements: Use if to specify a block of code to be executed, if a specified condition is true. Use else to specify a block of code to be executed, if the same condition is false. Use else if to specify a new condition to test, if the first condition is false.
Explanation:
What is your favorite song/Singer?
Lily ~~~~~By: Alan Walker
Answer:
My favorite song: Titi me pregunto and Moscow Mule : both are by bad bunny
Explanation:
Favorite singer; bad bunny lol
Imagine you have a friend who is new to computing. He is not necessarily interested in going into programming, but he would like to know the basics in terms of how computers work, how programs are written, and how computers communicate with each other. You are talking to him about the basics, but he keeps confusing operating systems, programming language, computer language, and markup language. How would you use very plain language to explain to him the differences between these things and how they interact with each other?
An operating system is responsible for the overall function of a computer system and it enables us to program a computer through thes use of a computer language.
What is programming?Programming can be defined as a process through which software developer and computer programmers write a set of instructions (codes) that instructs a software on how to perform a specific task on a computer system.
What is an operating system?An operating system can be defined as a system software that is pre-installed on a computing device, so as to manage computer hardware, random access memory (RAM), software, and all user processes.
Basically, an operating system is responsible for the overall function of a computer system and as such without it, a computer cannot be used for programming. Also, a computer language is typically used for programming while a markup language is a type of computer language that is mainly used for designing websites through the use of tags.
Read more on software here: https://brainly.com/question/26324021
1timesinfinityequals
Answer:
1timesinfinity=1timesinfinity
any time your multiply a number buy one... its its self
Explanation:
Answer
1-time infinity is infinity and if infinity is multiplied with a negative it would be infinity and 0 multiplied by infinity will be........ Well none actually knows
What is the correct order of the phases of the software development process?
Answer: Planning, Requirements, Design, Build, Document, Test, Deploy, Maintain.
Explanation:
Software Development Life Cycle is the application of standard business practices to building software applications. It's typically divided into six to eight steps / provided above...
what is difference between data analytics and data mining?
Answer:
Difference Between Data Mining and Data Analytics
Data mining is catering the data collection and deriving crude but essential insights. Data analytics then uses the data and crude hypothesis to build upon that and create a model based on the data. Data mining is a step in the process of data analytics.
Answer:
Data mining is an approach to finding unknown relationships in data, i.e. not attempting to confirm a specific hypothesis but looking for “interesting” relationships. A classic example is an engineer looking at a data set from a convenience store chain noticed the high correlation of men buying beer and diapers on Friday afternoons. (Despite urban legend, the store did not change anything because of it).
Data analytics is the use of statistical techniques to test hypotheses in order to improve decisions in business. Its really just a new name for things advanced companies have been doing for years. Big data is just hype to push a non-relational agenda
what is the largest positive denormalized 5-bit floating point where there is 1 sign bit, 2 exponent bits and 2 mantissa bits.
Solution :
Sign = 0
Exponent = 0 0000
Mantissa = 11 1111 111
M2^e = 0.1111111111 2^-15 = 1111111111
A number with a fractional part is called as a real number. These Real Numbers when they are represented by a sign, some of the significant digits and the power of 10 is called a scientific notation.
A real number which is represented by some sign, significant digits and the power of 2 is known as Floating-point notation.
Readable code
1. is written in large font.
2. is written neatly in straight columns.
3. is easy to understand and useful to other programmers working with the code.
4. is password protected so that only authorized programmers can access it.
Answer:
Readable code is easy to understand and useful to other programmers working with the code, or C on Edge.
Explanation:
It's in the notes on edge in the "Readible Code" section
Readable code is code that is well-structured, commented, and easy to understand, making it useful to other programmers working with the code. Therefore, the correct answer is option C.
The most important part of writing readable code is making sure it is well-structured and easy to understand for other programmers. This means using consistent formatting such as clear indentations, consistent naming conventions, and including comments to explain logical operations. Additionally, making sure the code is written in a large font so that it is not too small can be helpful in improving readability. Finally, password protecting the code so only authorized programmers can access it can help prevent tampering and unauthorized modifications.
Therefore, the correct answer is option C.
Learn more about the readable code here:
https://brainly.com/question/19540657.
#SPJ2