Answer:
a, b = 100, 50
if a < b:
m = a
else:
m = b
The program which assigns the smaller of the values in variable a and b using an if/else statement ls :
a = 100
b = 50
#assign the 100 and 50 to the variables a and b respectively
if a > b :
# the if statement checks if the variable a is greater the value on variable b
m = a
# if true assign the value of a to the variable m
else :
# if otherwise, then b would be greater
m = b
#assign the value of b to m
#the sample run of the program is attached
print(m)
Learn more :https://brainly.com/question/15727806
Conducting a thorough assessment to document what sensitive information an organization is collecting, where it is stored, how long it is kept, who has access to it, and how the organization is using this data is one of the critical tasks in establishing an effective data______program.
a. data structuring.
b. data privacy.
c. data recovery.
d. data piracy.
Answer:
b. data privacy
Explanation:
one of the importance jobs is establishing an effective data privacy program inorder to keep tracks of sensitive information or documents and how it is collected, stored, and use.
Data privacy which is also refer to as information privacy is the aspect of information technology that deals with the capacity of an organization in safeguarding the information received.
if a person walks 10 metres due to south in 10 seconds 10 due east in the next 10 seconds and transmitted you're not in the next 10 seconds then he has Dash velocity
Answer:
[tex]\frac{1}{3}\ m/s[/tex]
Explanation:
The computation of the velocity by using the following formula is
As we know that
[tex]Velocity = \frac{Displacement}{Total\ time\ taken}[/tex]
where,
Displacement is 10 meters
Total time taken is 30 seconds
Now placing these values to the above formula
So, the velocity of Dash is
[tex]= \frac{10\ meters}{30\ seconds}[/tex]
[tex]= \frac{1}{3}\ m/s[/tex]
We simply applied the above formula so that we can get the velocity and the same is to be considered
A systems administrator is designing a directory architecture to support Linux servers using Lightweight Directory Access Protocol (LDAP). The directory needs to be able to make changes to directory objects securely. Which of these common operations supports these requirements?
The options available are:
Search, modify.
StartTLS, delete.
Bind, modify.
Bind, add.
Answer:
StartTLS, delete
Explanation:
StartTLS is a computer networking term for email protocol command, in which a system administrator buses it to command an email server that an email client running in a web browser, wants to turn an existing insecure connection into a secure one. Thus, during this process, StartTLS permits a client to communicate securely using LDAPv3 over TLS.
On the other hand, the DELETE operation can make a change to a directory object.
According to the given question, the common operations that supports requirements where directory needs to be able to make changes to directory objects securely are;
Bind, addSearch, modifyBind, modifyStartTLS, deletAccording to the question, we are to discuss the common operations that supports some requirements as regards the changing of directory objects securely.
As a result of this we can see that making use of StartTLS, delete can serve this purpose and other function as well.
Therefore, common operations that supports requirements where directory needs to be able to make changes to directory objects securely is Search and modify.
Learn more about directory architecture at:
https://brainly.com/question/13171394
How I to turn this ''loop while'' in ''loop for''? var i = 0; while (i < 20) { var lineY = 20 + (i * 20); line(0, lineY, 400, lineY); i++; }
Answer:
for(i = 0; i<20;i++){
lineY = 20 + (i * 20);
line(0, lineY, 400, lineY) }
Explanation:
First declare and initialize the variable i. You have not specified the data type of i so if the data type of i is integer i.e. int then you should declare i variable in the for loop as for(int i = 0; i<20;i++)
So the given while loop has a variable i which is initialized to 0. Then while(i<20) means that while loop executes until the value of i exceeds 20. If this while condition is true then the two statements inside its body will execute. The two statements are: lineY = 20 + (i * 20);
line(0, lineY, 400, lineY);
The value of i ins incremented after each iteration i.e. i++
So while loop has the following syntax"
1) initialization; ----> i = 0
2) while(condition) { ----> i<20
3) loop body -----> lineY = 20 + (i * 20); line(0, lineY, 400, lineY);
4) increment or decrement loop variable } ----> i++
For loop has the following syntax:
for( initialization of loop variable ; condition; decrement/increment loop variable) {
loop body }
Here:
initialization ----> i = 0
condition ----> i<20
loop body -----> lineY = 20 + (i * 20); line(0, lineY, 400, lineY);
increment or decrement loop variable ----> i++
You are working the 8:00 AM shift at the help desk. An irate user who fails to identify himself calls in claiming that his workstation is malfunctioning and that you need to fix it NOW. What is the first action you should take?
Answer:
Calmly ask him for his name and a more detailed explanation of the problem.
Explanation:
Since in the question, it is mentioned that the anger use who fails to identify himself and claim that his workstation is malfunctioning and want to fix it now
Now the action which would be taken is to ask his name in a calmy manner and understand what the actually problem he is suffering by understanding it in a detailed way
Therefore according to the given case, the correct option is d.
What is the best use of a line chart? (A.)to show parts of a whole while emphasizing specific data,(B.)to compare and contrast discrete categories of data,(C.)to display data that changes over time(D.)to display data points that are unconnected and distinct
I think the answer to the question is C
What are the types of computers?
Answer:There are 5 types of computers.
Explanation:(1)Super computer: are the fastest and expensive computer.super computer can do trillion calculations in every second.
(2)Mainframe: are similar to the super computers all use raw power focus on few tasks.
(3)Server computer: is a central computer that contain of collection data and program.
(4)Personal computer: is also known as a microcomputer.personal computer is all around can be used as productivity tool.
(5)Work station: are expensive computers and more complex and are intended one user at a time.
Answer:
the four types of computers are;
personal computerMainframe computersuper computersMini computerswhat are the different categories of a computer
Answer:Computer is a machine that can be program to manipulate the symbols.
Explanation:There are five different categories of a computer.
(1)super computer (2) mainframe (3) personal computer (4) workstation
(5) minicomputer
(1)super computer: super computer is the term fastest computer available current time.super computers are very expensive and specialized computer.
(2)mainframe : mainframe computer is perform to the execute the program the currently.
(3) personal computer: The most popular use for personal computer playing games and surfing internet.
(4)workstation: This type of computer used for the engineer applications desktop publishing , software development.
(5)minicomputer: The general a minicomputer is multiprocessing system it is a midsize computer.
Does anyone know how to fix this problem My kali Linux is getting stuck on the failed to send host log message the first time I run it but when I reset it it gets fixed but I wanna stop it from freezing and getting stuck on that error message
Answer:
Is
Explanation:
You should check with a person repairing computers or call him and ask him Wats the problem with your pc or laptop or computer. This is just a suggestion. U can also get what to do from sites in the internet.
Hope this helps....
Have a nice day!!!!
HIPAA requires the following controls for medical records: A. Encryption of all data B. Technical safeguards C. Physical controls D. Administrative, technical, and physical controls
Answer:
D
Explanation:
Based on HIPAA Privacy Rule requires that covered entities apply appropriate administrative, technical, and physical safeguards to protect the privacy of protected health information, in any form.
Write a program that takes in a positive integer as input, and outputs a string of 1's and 0's representing the integer in binary. For an integer x, the algorithm is: As long as x is greater than 0 Output x modulo 2 (remainder is either 0 or 1) Assign x with x divided by 2
Answer:
Following are the code to this question:
def binarynumber(num):#defining a method binarynumber that accepts a parameter num
x=""#defining a string variable x
if (num!=0):#defining if condition to check number not equal to 0
while (num>=1):#defining a loop that check value is grater then equal to one
if (num %2==0):#defining if condition to check num is even
x=x+"0" #add string value 0 in num variable
num=num/2 #divide the value by 2
else:#defining else block
x=x+"1"#add string value 1 in num variable
num=(num-1)/2#first subtract 1 into num variable then divide the value by 2
else:
x="0"#assign string value 0 in num variable
return "".join(reversed(x))#return value
num = int (input ("Enter any number: "))#defining num variable that input the integer value
print (binarynumber(num))#using print method to call method binarynumber with passing num parameter
Output:
Enter any number: 12
1100
Explanation:
In the above python code a method "binarynumber" is declared, in which the "num" variable passes as the parameter inside the method a string variable "x" is declared that stores all converted values. Inside the method and if the block is declared that checks number value is not equal to 0 if this condition is false then it will add string value and reverse its value. Or if the condition is true it defines a while loop that calculates the given number binary digits and returns its value. At the last step, the num variable is declared that inputs the integer value from the user end and calls the method by using the print method.Which of the following statements is false? a. The Java API consists of packages. b. The Java API helps programmers avoid "reinventing the wheel." c. The Java API consists of import declarations. d. None of the above.
Answer:
The answer is "Option c".
Explanation:
In Java programming, the API stands for "application programming interface", which is also known as the lists of all classes in the JDK. It contains all packages, classes, and interfaces, with their techniques, fields. It is a built-in class, which gives the programmer a great deal of usability, and correct choices can be described as follows:
In option a, It is correct because it imports the package to use API. In option b, It allows you to "re-invent the wheel" by developers, that's why it is correct.can a 0.90 GB storage left android phone download an app of 28 MB plsssss fast I will give you brainliest why and why not?
Answer:
Yes
Explanation:
0.9 GB = 900 MB. That is a plenty of space for a 28 MB app.
Tom walks into the accounting department and walks into a mess! User A can't access the Internet, User B has forgotten her password, User C's system is overheating to the point of smoking and the administrator is worried there might be a virus on all the systems. Whose system should he address first
Answer:
User C.
Explanation:
As per the given details, the problem of user C's system must be addressed first due to the seriousness of his case. His computer is excessively overheating up to the smoking point and if his problem is not addressed soon, it will damage the vital parts of the computer or may also explode. The other users having the problem of inability to access the internet or issue of forgotten password can be addressed later as these are minor problems that do not have as such consequences. Thus, user C is the correct answer.
A _____ cloud allows an organization to take advantage of the scalability and cost-effectiveness that a public cloud computing environment offers without exposing mission-critical applications and data to the outside world.
Answer:
Hybrid
Explanation:
Hybrid cloud is a solution that combines a private cloud with one or more public cloud services, with proprietary software enabling communication between each distinct service.
Which of the following statements is true? A. Ethernet connections allow the most mobility for users. B. Maximum advertised connection speeds are for Wi-Fi connections only. C. Every computer user can expect the same Internet connection speed. D. The actual speed of a network can differ from the maximum advertised speeds. E. Wi-Fi is the best option for intensive Internet users who have high data
Answer:
A
Explanation:
Ethernet connections allow the most mobility for users
Employees often have more than one laptop-so one or both of them are always handheld. For this cause, companies turn to the versatility and scalability of wireless networks. It is convenient to grant workers connectivity through a wireless network, which they can use to connect several devices. Tablets, smartphones and laptops can all be connected to the network, which enables employees to access
Answer: D. The actual speed of a network can differ from the maximum advertised speeds
Explanation:
just got it correct on the test
Assuming that a user enters 68 as the score, what is the output of the following code snippet? int score = 68; if (score < 50) { System.out.println("F"); } else if (score >= 50 || score < 55) { System.out.println("D"); } else if (score >= 55 || score < 65) { System.out.println("C"); } else if (score >= 65 || score < 75) { System.out.println("B"); } else if (score >= 75 || score < 80) { System.out.println("B+"); } else { System.out.println("A"); } D C B A
Answer:
D
Explanation:
Using if in this way will validate one by one, and finding a true value will not validate the rest of "else if"
score = 68
if (score < 50) --> print "F"
68 < 50 --> falseelse if (score >= 50 OR score < 55) --> print "D"
68 > = 50 TRUE .... (The OR operator displays a record if any of the conditions separated by OR is TRUE)As this condition is true the system will not validate the other conditions
The ___________ button represents the start of a hyperlink in Table of contents.
Answer:
An LS button
Explanation:
It appears on the (structure line 3)on the structure line, place your cursor in the white field to the right of the E button (Recall that the E button represent the entry test).
What is the role of bpo in growth of Indian economy ?
Answer:
BPO Role in India's Economic Growth
The role played by BPOs in boosting India's economy shows that the IT and ITeS sector have been contributing largely to the economic growth of India. The growth in the contribution of BPOs to Gross Domestic Product has shown a steady rise from 1.2% to 5.4%.
Which of the following statements is false? a. Java allows a class to implement multiple interfaces in addition to extending one class. b. Classes declared with implementation inheritance are tightly coupled. c. Classes declared with interface inheritance are tightly coupled. d. An interface also may extend one or more other interfaces
Answer:
The answer is "Option d".
Explanation:
In java, programming language interface is used to achieve the multiple inheritances, that's why it used the extends keyword to inherit the interface to interface, that's why above given point is correct and \wrong choices can be described as follows:
The choice (a) is incorrect because it uses the implement keyword to inherit the class to an interface. Choice b and choice c both are wrong because it can't be tightly coupled.An interface consists of the shared boundary within the 2 separate components of the computer system of interchange.
The exchange takes place between the software computer and periphery devices. An interface cannot be extended to more than one devices. Hence e the option D is correct.Learn more about the following statements are false.
brainly.com/question/17095049.
what is the best phone company that sells long lasting battery life phones?
Answer:
A lot of people won't agree with me, but I have had phones from a variety of companies and found Motorola phones to be by far the best.
Explanation:
Answer:
apple but sometimes the batterys be breaking fast lol
Explanation:
Pre-made, copyright-free illustrations are called __________. apps clip art graphic design stock photos
Answer: clip art
Explanation:
The clip arts are graphic images that are pre-made illustrations for the purpose of creating any medium (designs or art). It has no restrictions to use them, it can be used by anyone, hence its copyright-free.It comes in both electronic and printed form.But mostly they are designed and distributed and used by a person in an electronic form.Hence, the complete statement is "Pre-made, copyright-free illustrations are called clip art".
Answer:
B) clip art
Explanation:
I got this question correct
Write a method, getFirstLine, that is passed a String argument and that returns the first line. (Recall that lines are terminated with the "\n" character.) Assume that the argument contains at least one complete, newline-terminated line.
My Solution:
public String getFirstLine(String a)
{
String[] myLines = a.split("\n");
return(myLines[0]);
}
Answer: The answer to this question can be given as:
Method definition :
String getSecondLine (String aString) //define function getSecondLine()
{
return aString.substring(aString.indexOf("\n") + 1, aString.indexOf("\n") + 1 + aString.substring(aString.indexOf("\n") + 1, aString.length()).indexOf("\n"));
//return value.
Explanation:
Refer to the exhibit. A web designer calls to report that the web server web-s1.cisco is not reachable through a web browser. The technician uses command line utilities to verify the problem and to begin the troubleshooting process. Which two things can be determined about the problem? (Choose two.)
A. The web server at 192.168.0.10 is reachable from the source host.
B. The default gateway between the source host and the server at 192.168.0.10 is down.
C. There is a problem with the web server software on web-s1.cisco.com.
D. A router is down between the source host and the server web-s1.cisco.com.
E. DNS cannot resolve the IP address for the server web-s1.cisco.com.
......Explanation:
ascsmlmcm
Based on the information, it is clear that the web server at the IP address is reachable, yet there may be a DNS goal issue for its space name. Option A and E is the correct answer
How is the web server part of the problem?The problem can be understood in two ways based on the information provided:
A. The web server at 192.168.0.10 is reachable from the source.
This is not entirely set in stone by the fruitful ping order reaction to the IP address of the web server. Assuming that the web server was inaccessible, the ping would fall flat.
E. DNS cannot resolve the IP address for the server web-s1.cisco.com.
This may be induced by the truth that the specialist utilized the IP address (192.168.0.10) rather than the space title (web-s1.cisco.com) to test the network. On the off chance that DNS was working appropriately, the expert would have utilized the space name all things being equal.
As a result, we are able to conclude from the exhibit that the web server at the specified IP address can be reached; however, there may be a problem with DNS resolution for the server's domain name.
Learn more about web servers here:
https://brainly.com/question/29490350
#SPJ2
B. Imagine yourself to be a tube light. Write a short paragraph about your life. (50 to 80 words)
plese help me
Do you know LED light- I mean the tubelight that people perch and switch it on. It is used in offices, homes, schools and anywhere there are tube lights but I am something different. I am that light that shines on children’s head.
Ok, it is not actually a light in children’s head. It’s when they think of an idea so they are switching me on and they spread that means they are allowing me to shine. My head means the base is the brain that tells me that this idea is there so I shout and spread it.
Like that I was also a light in a boys head his name was Rahul. Rahul was a boy that when his mind is on studies he can top in his class but he was not understanding that he was only focusing on his sports.
One day in the classroom didi said that there is a problem that in our school there is a problem that out toilets are stinking and we need help from you children. All the lights around me were flickering because all the children were thinking of ideas. I was the only one of them who was not flickering. Rahul switched me on and let me shine, he spread it. I also know that he is not going to shatter me into pieces. He is going to persevere and he did it.
From that day, it was my daily life..on off..on off..on off..
Thanks to the availability of computers, mobile devices and ISs, information flowing through companies is almost always available to executives, managers, and workers who no longer struggle to find information they need to make sound decisions or do their jobs.
a. True
b. False
Answer:
False
Explanation:
The advent of computers, mobile devices and ISs, information flowing through companies is almost always available to executives, managers, and workers who no longer struggle to find information they need to make sound decisions or do their jobs.
It has made information flowing through companies to be readily available to executives, managers and workers. It helps workers to make sound decisions and discharge their duties effectively.
A college marketing department has a networked storage device that uses the IP address 10.18.7.5, TCP port 443 for encryption, and UDP port 4365 for video streaming. The college already uses PAT on the router that connects to the Internet. The router interface has the public IP address of 209.165.200.225/30. The IP NAT pool currently uses the IP addresses ranging from 209.165.200.228-236. Which configuration would the network administrator add to allow this device to be accessed by the marketing personnel from home
Answer:
The answer to this question can be defined as follows:
Explanation:
The static NAT stands for (static Network Address Translation), which enables the user to modify a single interpretation for a local second-order to the external environment addresses, and all IP and port numbers were also transcribed inside to random traffic as well as from outside with the internal traffic.
It is used to map network traffic by an internal IP address from a static external IP address. It provides a fixed conversion for actual addresses onto maps. It offers Internet access to the network equipment via a private LAN with such a private IP address which is not recorded.Please find the attachment of the ip address.Referential integrity states that:______.
A. Something assigned to an attribute when no other value applies (N/A) or when the applicable value is unknown;
B. Values of an attribute must be taken from a pre-defined domain;
C. No primary key attribute (or component of a primary key) can be null;
D. Each foreign key value MUST match a primary key value in another relation or the foreign key value must be null;
Answer:
D. Each foreign key value MUST match a primary key value in another relation or the foreign key value must be null.
Explanation:
In Computer programming, integrity constraints can be defined as a set of standard rules that ensures quality information and database are maintained.
Basically, there are four (4) types of integrity constraints and these are;
1. Key constraints.
2. Domain constraints.
3. Entity integrity constraints.
4. Referential integrity constraints.
Referential integrity states that each foreign key value must match a primary key value in another relation or the foreign key value must be null.
For instance, when a foreign key in Table A points to the primary key of Table B, according to the referential integrity constraints, all the value of the foreign key in Table A must be null or match the primary key in Table B.
Hence, the referential Integrity constraints ensures that the relationship between the data in a table is consistent and valid.
How do I make my kali Linux faster in my virtual box?
Answer:
If you run any operating system as a VM, it is going to be slower than if you were to run it as a native OS. You can, however, make a VM run faster by allocating more CPU cores and RAM to it in your hypervisor's (such as Virtualbox or VMWare) settings menu for your VM.
does that make sense?
What VM are you using? if your using virual box then try adding more RAM to it. I use VMware player 16 and its REALLY fast so try that. Also, go on online and look up this guy called network chuck.
A binary search function is searching for a value that is stored in the middle element of an array. How many times will the function read an element in the array before finding the value?
Answer: 1 time.
Explanation:
A binary function is also known as a half-interval search is a search algorithm to find the position of a given element x within a well-sorted array []. Binary search compares the target value to the middle element of the array.It ignores half of the elements just after one comparison. it compares x with the middle element.So, the function read an element one time in the array before finding the value.