Answer: The construction company could have drawn a 3D model on a CAD app.
Explanation: This would help the blueprints look more realistic and easy to measure the leangths.
In which directory would a system administrator store scripts that should be run monthly by the cron daemon?
Answer: /etc/cron.monthly
Explanation:
Uer report that when turning the tablet to work the application in landcape mode, the oftware doe not automatically adjut to landcape why
There could be several reasons why the software is not automatically adjusting to landscape mode when the tablet is turned. Some possible causes include:
The software has not been designed to automatically adjust to different orientations.The device's orientation settings may not be properly configured.The software may have a bug that is preventing it from adjusting to landscape mode.The device's hardware may be malfunctioning, preventing it from detecting the change in orientation.It's also possible that the software does not support landscape mode and has only been designed for portrait mode.It would be helpful to check the software's documentation or contact the developer to see if there is any information about this behavior, or to see if there is an update or fix available. Additionally, checking the device's settings and making sure that the device's hardware is functioning properly can help to identify the cause of the issue.
The complete question is:
User report that when turning the tablet to work the application in landscape mode, the software does not automatically adjust to landscape why
Learn more about software, here https://brainly.com/question/985406
#SPJ4
Which can be used to plan a program?
pseudochart
pseudoplan
pseudocode
flowcode
Answer:
it is Pseudo-code
Explanation:
i am sure of it because i was taught that a couple days ago
Please Help ASAP
1) Which Python statement correctly launches a CSV file named "statdata.csv"?
A) csv.reader("statdata.csv", delimiter=",")
B) import csv
C) open("statdata.csv")
D) read("statdata.csv")
2) You wrote a code that validates a user key. The key should be a number between 1000 and 9999 inclusive. What should be in place of the question mark?
def validate(key):
if key > 999 and key ? 10000:
return True
return False
A) <
B) >
C) <=
D) >=
3) You work in a game development industry and want to create a game that closely resembles reality. You want to make sure that every detail of the game is realistic, from the color of the sky to the facial features of the characters. What type of developer are you?
A) The maker
B) The perfectionist
C) The talker
D) The visionary
4) Does a broken login put a password protected computer at risk? Why or why not?
A) No, computer logins are enciphered, and data stored on the computer is cryptic.
B) No, computers logins are encrypted, and data stored on the computer cannot be read.
C) Yes, computer logins and data stored on the computer are each encrypted.
D) Yes, some computer logins are encrypted, but data stored on the computer is not.
5) The program below needs to output "14." What is the missing line in the program?
def Function(A,B):
for i in range(1, len(B)):
/*missing line*/
return B[i]
X = [20, 24, 4, 98, 9]
Y = [2, 4, 14, 9, 98]
print(Function(X,Y))
A) if B[i] == A[i]:
B) if B[i] >= A[i]:
C) if B[i] <= A[i]:
D) if B[i] > A[i],
Python statement correctly launches a CSV file named "statdata.csv" C) open("statdata.csv")
2. D) >=
3. B) The perfectionist
4. B) No, computers logins are encrypted, and data stored on the computer cannot be read.
5. C) if B[i] <= A[i]
What is Python statementA Python statement is a line of code that does something in the Python language. A Python code is made up of small parts called "units" that include important words, calculations, and symbols.
There are many types of sentences in Python, like simple ones. Each instruction is usually on its own line, and Python reads and follows them one after the other from beginning to end.
Read more about Python statement here:
https://brainly.com/question/30392710
#SPJ1
When an entrepreneur has three employees at a busy and growing software company, what is the primary responsibility of the employees?
create the product that customers want
explain business decisions to stakeholders
identify and contact financial investors
select new types of software to sell
Answer:
A: Create the product that customers
Explanation:
I did it on edgy
Answer:
(A). Create the product that customers want
Explanation:
I got it right on edge2020.
The service within Kerberos that generates and issues session keys is known as __________.
a. AS
b. KDC
c. TGS
d. VPN
The service within Kerberos that generates and issues session keys is known as KDC.
What is session keys?A session key is any symmetric cryptographic key that is only used to encrypt a single communication session. To put it another way, it is a temporary key that is only used once, during a specific period of time, to encrypt and decrypt data sent between two parties; subsequent conversations between the two would be encrypted with different session keys.
Every time someone logs in, they must reset their password, which is analogous to a session key. The client and the server generate session keys during the TLS handshake at the beginning of any communication session in TLS (previously known as "SSL"). The term "session keys" is not used in the TLS RFC, but that is exactly what these keys are in terms of functionality.
Learn more about session keys
https://brainly.com/question/4674185
#SPJ1
How does the onEvent block work?
Answer:The onEvent() block takes three parameters. The first two are the id of the element and the type of event that should be “listened” for. The third parameter is a function. If you were going to read the onEvent block like a sentence it would read “on the event that this id experiences this event, call this function”
Explanation:
!!!!!16 POINTS!!!!Can a computer evaluate an expression to something between true and false? Can you write an expression to deal with a "maybe" answer?
DO NOT JUST ASWERE FOR POINTS OR YPU WILL BE REPORTED AND BLOCKED. IF YOU HAVE ANY QUESTION PLEASE ASK THE IN THE COMMENTS AND DO NOT ASWERE UNLESS YOU KNOW THE ANSWER TO THE PROBLEM, thanks.
Answer:
Yes a computer can evaluate between a true or false. x < 1, and if the condition is met, the value is true, else its false. A computer itself cannot handle any "maybe" expression, but with the influence of human opinion, in theory its possible. Chocolate cake < Vanilla cake, is an example. Entirely on opinion.
What is the text output by the program?
A. Less than 10
B. Less than 20
C. Less than 30
D. 30 or more
Answer:
30 or more
Explanation:
Given two strings, find the number of times the second string occurs in the first string, whether continuous or discontinuous.
Given two strings, we need to find the number of times the second string occurs in the first string, whether continuous or discontinuous. For example, let's consider the two strings "abcabcd" and "abc". The second string "abc" occurs twice in the first string "abcabcd".One of the most straightforward ways to solve this problem is by using a sliding window technique.
We can slide a window of size equal to the length of the second string over the first string and check whether the substring in the window is equal to the second string or not. We can then count the number of times the second string occurs.
Here is the implementation of the sliding window technique in Python:
```def count_substring(s1, s2): count = 0 for i in range(len(s1) - len(s2) + 1): if s1[i:i+len(s2)] == s2: count += 1 return count```In the above code, `s1` represents the first string and `s2` represents the second string. We initialize a counter variable `count` to 0, and then slide a window of size `len(s2)` over the first string `s1`.
We check whether the substring in the window is equal to the second string `s2` or not. If it is, we increment the counter `count`. Finally, we return the counter `count`, which represents the number of times the second string occurs in the first string. This implementation has a time complexity of O(n * m), where n is the length of the first string and m is the length of the second string.
To know more about complexity visit :
https://brainly.com/question/31836111
#SPJ11
Write a simple program to input three float values(Hint: Use nextFloat() instead of nextlnt()). Calculate the sum, product and average and print the results Sample output: Enter three float values: \(
Surely, I will help you to write a program in java that inputs three float values, calculates the sum, product, and average and print the results.
Here is the program which is compiled and tested in the Eclipse IDE.```import java.util.Scanner;public class Main { public static void main(String[] args) {
float value1, value2, value3, sum, product, average;
Scanner input = new Scanner(System.in);
System.out.println("Enter three float values: ");
value1 = input.nextFloat();
value2 = input.nextFloat();
value3 = input.nextFloat();
//calculate the sum
sum = value1 + value2 + value3;
//calculate the product
product = value1 * value2 * value3;
//calculate the average
average = sum / 3;
//print the results
System.out.println("Sum: " + sum);
System.out.println("Product: " + product);
System.out.println("Average: " + average);
}}```When you execute the program, it will ask the user to input three float values. After taking input from the user, it will calculate the sum, product, and average of the given values. Then, it will print the results.Sample output:Enter three float values: 12.3 23.4 34.5Sum: 70.2Product: 10692.09Average: 23.4Note: The program takes the input from the user by using the Scanner class and the nextFloat() method. The nextFloat() method reads the float value entered by the user. Then, the program calculates the sum, product, and average of the given float values and print the results.
To know more about program visit:
https://brainly.com/question/30142333
#SPJ11
hris has received an email that was entirely written using capitalization. He needs to paste this text into another document but also ensure that the capitalization is removed.
What should Chris do?
Sarah is having a hard time finding a template for her advertising buisness that she mah be able to use at a later date and also make it availible to her colleagues, What is her best option?
Answer: create a custom template
Explanation:
Since Sarah is having a hard time finding a template for her advertising business that she may be able to use at a later date and also make it available to her colleagues, her best option will be to create a custom template.
Creating a custom template will ensure that she makes the template based on her requirements and can tailor it specifically to her needs which then makes it unique.
Write a loop that reads positive integers from standard input and that terminates when it reads an integer that is not positive. After the loop terminates, it prints out, on a line by itself, the sum of all the even integers read.
This is the first attempt, but it was marked wrong by MyProgrammingLab:
----------------------
Sum = 0
n=1
while(n>0):
n = int(input("Enter positive integer "))
if (n < 0):
break
if(n%2==0):
Sum+=n
print(Sum)
----------------------
MyProgrammingLab is stating that I should be using sum, True, and False.
The code provided is correct, but MyProgrammingLab is expecting the use of the built-in functions sum(), True, and False. Here is an example of how to use these functions in the code:
Sum = 0 n = 1 while True: n = int(input("Enter positive integer ")) if n < 0: break if n % 2 == 0: Sum += n print(sum([Sum]))
To further explore this topic, you can look into different ways of using the sum(), True, and False functions to improve the efficiency of your code. Additionally, you can explore other ways of looping through data, such as using a for loop or a while loop, and look into different ways of using conditional statements.
Finally, you can also look into other methods of manipulating data, such as using list comprehensions.
Learn more about programming:
https://brainly.com/question/26134656
#SPJ4
inheritance is one of the core concepts of object-oriented programming (oop) languages. it is a mechanism where you can derive a class from another class for a hierarchy of classes that share a set of attributes and methods. you can use it to declare different kinds of exceptions, add custom logic to existing frameworks, and even map your domain model to a database. write a program that creates employee and productionworker classes. the employee class keeps data attributes for the following pieces of information: - employee name - employee number the productionworker class is a subclass of employee class. the productionworker class should keep data attributes for the following information: - shift number (an integer, such as 1, 2, and 3) - hourly pay rate the workday is divided into two shifts: day and night. the shift variable will hold an integer value representing the shift that the employee works. the day shift is shift 1, and the night shift is shift 2. provide a constructor and the appropriate accessor and mutator functions for the class. demonstrate the classes by applying a python list of productionworker objects in your main program. extend your program above by
The program creates two classes, Employee and ProductionWorker, demonstrating the use of inheritance in object-oriented programming.
Inheritance is a core concept in object-oriented programming that allows for the creation of a hierarchy of classes sharing common attributes and methods. In this program, we create two classes, Employee and ProductionWorker, to demonstrate the use of inheritance. The Employee class stores data attributes for employee name and number, while the ProductionWorker class is a subclass of Employee and adds data attributes for shift number and hourly pay rate. The program provides a constructor for both classes and accessor/mutator functions to access and modify the attributes. Finally, the program demonstrates the creation of a list of ProductionWorker objects in the main program.
Learn more about programming here;
https://brainly.com/question/14368396
#SPJ11
Which logical address is responsible for delivering the ip packet from the original source to the final destination, either on the same network or to a remote network?.
Source and destination IP logical address is responsible for delivering the IP packet from the original source to the final destination, either on the same network or to a remote network.
The IP packet field holding the IP address of the workstation from which it originated is known as the source IP address. The IP packet field holding the IP address of the workstation to which it is addressed is known as the destination IP address. An IP address is a logical address that is given by router or server software, and that logical address may occasionally change. For instance, when a laptop starts up in a different hotspot, it is likely to receive a new IP address. The IP addresses for the source and destination can match. That merely denotes a connection between two peers (or client and server) on the same host. Ports at the source and destination may also match.
Learn more about Destination here-
https://brainly.com/question/12873475
#SPJ4
how can i stop this stupid thing from sending me emails because my school decides to not give you a block option
Answer:
If it on g mail you go to the spam box and then press the spammers to account and then press block and then you will block them.
A Machine Learning olution produce incorrect output once it' deployed for general ue. After an extended period of time, the olution begin to inget more data and increae in accuracy without any code update. Why could thi be the cae?
The number one problem facing Machine Learning is the lack of good data. While enhancing algorithms often consumes most of the time of developers in AI, data quality is essential for the algorithms.
What is the most common issue when using machine learning?Rewarding desired behaviours and/or punishing undesirable ones are the foundations of the machine learning training method known as reinforcement learning. A reinforcement learning agent is often capable of observing and interpreting its surroundings, acting, and learning through mistakes. Error (statistical error) is the term used to indicate the discrepancy between a value produced through a data gathering procedure and the population's "actual" value. The data are less indicative of the population as the inaccuracy increases. The two forms of errors that might affect data are sampling error and non-sampling error. When a model is overfit, it cannot generalise and instead fits too closely to the training dataset.To learn more about machine learning refer to:
https://brainly.com/question/30028950
#SPJ4
Predict the output... LET A= -20.50 LET B = ABS(A) PRINT B END
Answer:
full and then I would like this
What is the first step when creating a 3-D range name?
Open the New Range window, and click 3-D.
Press the Shift key while selecting the new sheet .
Open the Name Manager, and click New.
Click a cell to insert the cell reference.
Answer:
Open the Name Manager, and click New.
Explanation:
i
need a step by step showing calculations. As well as how to input
into excel using the fuctions cells of excel. like =pv(D8,D9...)
Bond \( X \) is a premium bond making semiannual payments. The bond pays a 9 percent coupon, has a YTM of 7 percent, and has 13 years to maturity. Bond \( Y \) is a discount bond making semiannual pay
To calculate the present value (PV) of bonds X and Y, with different coupon rates and yields to maturity, you can use the PV function in Excel. The PV function requires inputs such as the discount rate, number of periods, and future cash flows.
In Excel, you can use the PV function to calculate the present value of cash flows. The syntax of the PV function is: =PV(rate, nper, pmt, [fv], [type]).
For bond X, with a 9% coupon rate, a yield to maturity (YTM) of 7%, and 13 years to maturity, you can calculate the present value of the bond using the PV function. Set the rate argument as the YTM divided by 2 (since it is a semiannual payment), the nper argument as the number of periods (13 years multiplied by 2), and the pmt argument as the coupon payment divided by 2. The fv argument is the future value of the bond at maturity, which is typically set as 0. The type argument indicates the timing of the cash flows, with 0 representing payments at the end of the period.
For bond Y, with a discount rate of 7% (YTM equal to the discount rate), the process is similar. Set the rate argument as the YTM divided by 2, the nper argument as the number of periods (13 years multiplied by 2), and the pmt argument as the coupon payment divided by 2. Since bond Y is a discount bond, the fv argument would typically be the face value of the bond, but it is not provided in the question. Therefore, the present value would be calculated using the PV function without the fv argument.
By using these calculations in Excel, you can obtain the present value of bonds X and Y, which represents the current worth of their future cash flows based on the given coupon rates, yields to maturity, and time to maturity.
Learn more about Excel here: https://brainly.com/question/32702549
#SPJ11
1. How do we know if the information in a websites is fake or not?
2. How important is respect for truth?
Answer: 1)Ingrese la URL del sitio web y podrá ver detalles como el nombre de la organización del propietario, el país de registro y la antigüedad del dominio
2)Como individuos, ser veraces significa que podemos crecer y madurar, aprendiendo de nuestros errores
Explanation:
Write a program that takes a date as input and outputs the date's season in the northern hemisphere. The input is a string to represent the month and an int to represent the day. Note: End with a newline.
A program that takes a date as input and outputs the date's season in the northern hemisphere will bear this order
cout << "Winter"
cout << "Spring"
cout << "Summer"
cout << "Autumn"
Complete Code below.
A program that takes a date as input and outputs the date's season in the northern hemisphereGenerally, The dates for each season in the northern hemisphere are:
Spring: March 20 - June 20Summer: June 21 - September 21Autumn: September 22 - December 20Winter: December 21 - March 19And are to be taken into consideration whilst writing the code
Hence
int main() {
string mth;
int dy;
cin >> mth >> dy;
if ((mth == "January" && dy >= 1 && dy <= 31) || (mth == "February" && dy >= 1 && dy <= 29) || (mth == "March" && dy >= 1 && dy <= 19) || (mth == "December" && dy >= 21 && dy <= 30))
cout << "Winter" ;
else if ((mth == "April" && dy >= 1 && dy <= 30) || (mth == "May" && dy >= 1 && dy <= 30) || (mth == "March" && dy >= 20 && dy <= 31) || (mth == "June" && dy >= 1 && dy <= 20))
cout << "Spring" ;
else if ((mth == "July" && dy >= 1 && dy <= 31) || (mth == "August" && dy >= 1 && dy <= 31) || (mth == "June" && dy >= 21 && dy <= 30) || (mth == "September" && dy >= 1 && dy <= 21))
cout << "Summer" ;
else if ((mth == "October" && dy >= 1 && dy <= 31) || (mth == "November" && dy >= 1 && dy <= 30) || (mth == "September" && dy >= 22 && dy <= 30) || (mth == "December" && dy >= 0 && dy <= 20))
cout << "Autumn" ;
else
cout << "Invalid" ;
return 0;
}
For more information on Programming
https://brainly.com/question/13940523
♥my phone is super cracked and i need 30 dollars to fix it. i'm 14. does anyone know how i can make 30 dollars really fast without taking those dumb surveys? i really need help.♥
Answer:
hi u could sell some old stuff online?
help a nieghbor?
lemonade stand?
Explanation:
a data analyst is given a dataset for analysis. it includes data only about the total population of every country in the previous 20 years. based on the available data, an analyst would have the full picture and be able to determine the reasons behind a certain country's population increase from 2016 to 2017.
Based on the available data, an analyst would have the full picture and be able to determine the reasons behind a certain country's population increase from 2016 to 2017. This, statement is false. Thus, option (b) is correct.
A data analyst analyzes data to find important consumer insights and useful applications for the knowledge. They also give management of the business and other interested parties access to this data.
Data analytics (DA) is the process of examining data collections to identify trends and draw conclusions about the information they contain. Data analytics is increasingly being done with specialized tools and programs.
Therefore, option (b) is correct.
Learn more about on data analyst, here:
https://brainly.com/question/30402751
#SPJ4
Learn more about on data analyst, here:
https://brainly.com/question/30402751
#SPJ4
Your question is incomplete, but most probably the full question was.
TRUE or FALSE: A data analyst is given a dataset for analysis. It includes data about the total population of every country in the previous 20 years. Based on the available data, an analyst would be able to determine the reasons behind a certain country's population increase from 2016 to 2017.
Trojans depend on ________ to spread. A rootkits B self-replication C code injection D social engineering
Trojans depend on social engineering to spread.
Social engineering refers to malicious activities accomplished through human interactions.
Trojan Horse Virus is a type of malware that downloads onto a computer disguised as a legitimate program.
Trojan horses take advantage of the people who need a certain program to operate on their computer system. They use social engineering to bait in endpoint users to download the fake programs.
Find out more on Trojan horses at: https://brainly.com/question/354438
A data analyst uses _____ to decide which data is relevant to their analysis and which data types and variables are appropriate
Answer:
I believe that the answer is a database organization.
model of social relations, individuals go through life embedded in a personal network of individuals to whom they give and from whom they receive social support.
According to the social convoy theory of social relationships, people live their lives as part of a personal network of people to whom they provide support and from whom they receive it.
What is the meaning of social convoy?The people that travel with us on the road of life are referred to as the social convoy. At every stage of development, this social grouping is a crucial component of successful adjustment and wellbeing.
As one matures and develops, they rely on these interactions and connections because all are social beings. Social convoy is a network of friends that travel through life with us and support us through both good and difficult times.
Learn more about social convoy from here:
https://brainly.com/question/7318152
#SPJ1
The complete question has been attached in text form:
In the social ______ model of social relations, individuals go through life embedded in a personal network of individuals to whom they give and from whom they receive social support.
what is computer hardware
Answer:
stuff like a mouse or a keyboard and that kind of stuff
What is data communication..
Hope this helps you❤!!