which is the best software application to be used by a hotel manager
Answer:
Cloudbeds
:))
hope it helps
PLEASE HELPP
Why do you think it is important to write your high school plan in middle school? Explain your answer in 3-4 well written sentences.
Answer:
Es muy importante que escriba su plan para la escuela secundaria antes de llegar a la escuela secundaria. Te da algo a lo que admirar cuando llegas a la escuela secundaria. Cuando lo complete, sabrá que hizo algo bien. Entonces puede establecer sus metas cada vez más altas, dándole la oportunidad de una buena vida.
Assume that you want two C# or C++ programs to share some data. You can write the first program so that it writes it's output to a file, and then write the second program so that it reads the data from this file. However this process can be difficult and time consuming, especially if you don't know how to program in C# or C++. What feature of the UNIX/Linux shell can you use to simplify the process of sharing data between programs?
Certain ways exist to simplify the process of data sharing between programs.some of these ways are;
A) When there are two programs that are not running at the same time,then the pipes or the sockets won't be able to work as their buffers would not be able to hold large files because they are small.
Looking at this scenerio,shared memory can be used.
The Sysv IPC shared memory API, POSIX shared the memory API or rather files on a tmpfs system of files can actually be used for shared memory operations.
B) Another possible solution can be named file. Instead of using an unnamed and shell pipeline,a name pipeline them uses the file system.
However,it can be treated with the use of mkfifo() or mknod() commands and then two separate programs or also processes can as well access the pipe by making use of the name of the pipe.
But one process(program) can actually open the pipe but as a reader for reading purposes and the other for writing purposes as a writer.
Which of these are steps in the testing cycle? Check all of the boxes that apply.
testing the fixed code
releasing debugging version
fixing the error
reproducing and diagnosing the error
Answer:
A,C and D
Explanation: You're welcome
Answer:
A and D
Explanation:
An example of a _________________ impact is when a consumer wants to buy a product on the internet but is afraid the company won’t fulfill their request due to an unsure reputation of that business.
A)Negative
B)Positive
Answer:
ooof
Explanation:
Answer:
B) negative
Explanation:
the evidence shown "unsure reputation of that business"
Which statement is true? A. Pseudocode uses shapes such as rectangles and diamonds to plan a program. B. You only use comments for pseudo code. C. A flowchart uses comments that can be kept as a permanent part of a program. D. A comment line begins with # Please hurry also you can only choose one answer so idk which one thank you
Answer:
D) A comment line begins with #
Explanation:
Comments are used in programming to explain what a line or block of code is doing.
It helps the programmer easily remember what their code was about when they come back to it having left it for a while.
Also comments help other programmers understand code written by one programmer.
A comment or an in-line comment usually begins with #. That way the computer skips it and doesn't regard it as a line of code.
Answer: D. A comment line begins with #.
Explanation:
In the text, it stated, "The easiest way to add a comment is to start the line with the pound sign (#)."
(Comments are notes that allow you to write anything without affecting the code itself. Comments can be utilized to indicate when and how you later changed a program, and provide a description of the changes.)
I hope this helped!
Good luck <3
Martin is responsible for translating the script into a visual form by creating a storyboard. Which role is he playing?
Martin is playing the role of a(n)
Answer:
The correct answer to this question is given below in the explanation section.
Explanation:
The question is about to identify the role of Martin, who converts script into visual form by creating a storyboard.
The correct answer to this question is:
Martin is playing the role of Production Design and he is working at the position of the production designer.
Before shooting a film, the production designer is the first artist who converts script into a visual form such as creating storyboards. And, that storyboard serves as the first film draft.
A storyboard is a series of sketches, paintings, etc arranged on a panel to show the visual progress of the story from one scene to the next. These storyboards are used from start to finish of the film. Because these storyboards or sketches serve as the visual guide for the director of the film throughout the production.
Answer:
Hi
Explanation:
THE ANSWER UP TOP IS WRONG LIKE DEAD WRONG
____________________________ and _________________________ are 2 negative impacts of the internet on businesses.
A)Unlimited Availability and Low Confidence in the business
B)Competition and Poor Impersonality
C)Competition and Unlimited Availability
D)Low Confidence in the business and Improved Communication
Answer:
i no you its me remember and the answer is b.
Explanation:
express cards functionalities
Answer:
ExpressCard, initially called NEWCARD, is an interface to connect peripheral devices to a computer, usually a laptop computer. The ExpressCard technical standard specifies the design of slots built into the computer and of expansion cards to insert in the slots.
How goes design again ones attention?
Answer:
the only thing i could think of is creating a different way to get someone to pay attention to you like maybe instead of shouting or tapping on ones shoulder maybe try to ask the person closest to them to get their attention for you. or by doing something extremely impressive or distracting
Explanation:
solve the system of equations and choose the correct ordered pair.
4x+5y=22
2x+3y = 12
Answer:
(3,2) x = 3, y = 2
Explanation:
Channel logging tokens can be set to all but:________. a. Relaxed b. Strict c. Both versions d. None
Answer:
c. Both versions
Explanation:
The Windows Remote management has hardening levels that could be set to Relaxed, Strict, or None based on the channel binding token associated with a request. This feature could be automatically found in the system or manually configured to a user's choice.
Relaxed settings mean rejection of channel binding token that are not valid and the acceptance of requests with no channel binding tokens, but which may be susceptible to attacks. Strict settings entail an automatic rejection of invalid channel binding tokens. None settings entail the acceptance of all requests with no protection against credential-forwarding attacks.
Write a program (main method) that advises the user on programming language. So if a user for instance enters "Java" the program might say "awesome" or if the user enters "Ruby" it might say "are you sure?" . Make the program comment on at least 5 programming languages.
import java.util.Scanner;
public class JavaApplication41 {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
String language = scan.nextLine();
if (language.toLowerCase().equals("java")){
System.out.println("Awesome!");
}
else if (language.toLowerCase().equals("python")){
System.out.println("A very simple language!");
}
else if (language.toLowerCase().equals("ruby")){
System.out.println("Are you sure?");
}
else if (language.toLowerCase().equals("javascript")){
System.out.println("Easy enough");
}
else if (language.toLowerCase().equals("c")){
System.out.println("Cool!");
}
}
}
I hope this helps!
How is a UDP socket fully identified? What about a TCP socket? What is the difference between the full identification of both sockets?
Answer:
Following are the solution to this question:
Explanation:
Two tuples were fully identified only with UDP socket.:
< IP address assigned, the port for destination >
Its two tuples have been used in UDP as demux, buttons to identify its UDP socket.
The IP address for the destination:
Its received data is directly provided by the IP address of its port.
Port number of the destination:
The function of the IP address of its port number whenever you obtain a UDP segment would be to control the IP addresses of a segment or send that segment to a port with the same IP address. Its port number for endpoint allows demultiplexing incoming information from its IP.
TCP socket is completely recognized by the following four tuples:
< source IP, port source, IP source, port location >
It tuples are being used to label the sockets by using a demultiplexing (demux) key.
IP address source:
The IP address is being used to identify the unique host that links to. It can assume that perhaps the source IP address shows us all the source Addresses of the sender.
Port number of source:
Its port number amount allows us to identify which section is arriving at which port.
IP address destination:
Its IP address of a destination is the IP address of a port accepting incoming information.
Port number of the destination:
It is port numbers number allows us to identify the facilities or section should be sent to.
Differentiation between TCP and UDP identifier:
As TCP ports (4 tuples) and UDP ports (2 tuples) are using demux keys to define socks, however, demux keys in UDP are unique from others in TCP for both the following reasons:
TCP uses a separate socket for every contact between both the server and client whereas UDP utilizes its same sockets to process all clients accessed by UDP servers with all communications, it maintains TCP is much more dependable and hence has to hold a different port.
Even so, UDP doesn't accomplish things apart from multicasting and demodulation, but no separate port is necessary by each link. Therefore the TCP socket becomes connection-driven as well as the UDP socket is direct link-free.
There are different ways' to identify the Socket. The presence or absence of a connection needs that the identifier format of each socket are known to be very different.
The TCP socket is identified by the quadruple. This includes;
Source IP addressSource port numberDestination IP addressDestination port numberAn UDP socket is identified by the tuple such as
Destination IP addressDestination port number
There are some difference between TCP socket and UDP socket. They are;
TCP is known to be a connection-oriented protocol but the UDP is a connectionless protocol. Another difference between TCP and UDP is speed. TCP is said to be slower than UDP. UDP is said to be faster, simpler, and efficient protocol than TCP.
Learn more about TCP socket from
ainly.com/question/17387945
a good look of a web page depends upon?
Answer: See explanation
Explanation:
• Font size: The font size used matters a lot in order to enhance readability. The ideal font size should be 16 pixel for the main body text. This is vital in order to help enhance readability. It should be noted that a don't size that is lower or higher than that can lead to challenges with readability.
• Graphics and animation: Using of exciting graphics and animations on a website can help in giving the web page a good look, help in grabbing the attention of the user, and also increase engagement.
• Use of colours: The color chosen also helps to give a web page a good look. It should be noted that when choosing colors, it is ideal to choose two or at most three colors to use for a web page. Mixing different colors or using very bright colors is typically a turn off.
Use your editor to open the cc_data.js file and study the data stored in the staff object to become familiar with its contents and structure. Close the file, but do not make any changes to the document.
Answer:Use your editor to open the tny_july_txt.html and tny_timer_txt.js files from the ... 3 Take some time to study the content and structure of the file, paying close ... the nextJuly4() function, insert a function named showClock() that has no parameters. ... Declare a variable named thisDay that stores a Date object containing the ...
Explanation:
who are the characters in the poem Padre power witness the execution of rizal
I MASTURBATE ON WEBCAM FIND ME HERE sex-today.fun
What is the minimum size of a data type, in bytes, to be impacted by system endianness. (Whole numbers only)?
Answer:
30
Explanation:
A data type must be at least 2 bytes in size to be affected by the endianness system.
What is endianness system?Endianness in computing refers to the arrangement of bytes inside a word of digital data stored in a computer's memory.
Big-endian or little-endian are the two main ways that endianness is stated.
The least significant byte in a word is kept at the largest memory location and the most significant byte is kept at the smallest address in a big-endian system.
The term "endianness" refers to the arrangement of bytes as they are stored in computer memory. Endianness is classified as big or little depending on which value is stored first.
Thus, for the endianness system to apply, a data type must be at least 2 bytes in size.
For more details regarding endianness system, visit:
https://brainly.com/question/14488920
#SPJ6
Please help I don’t know
Answer: Go down 1 time, then to the left 3 times, then down 1, finally, go left 1 time.
Explanation:
Assume a branch instruction bne $t1, $t2, Label is located in 0x00001840 in the instruction memory. The 16-bits branch address is 0x000C, If the branch is taken, what will be the new Program Counter (PC) value?
a. 0x00001844
b. 0x00001850
c. 0x00001870
d. 0x00001874
Answer:
a. 0x00001844
Explanation:
When the branch is takes the new program counter value is increased by 1. The value of existing memory is labelled with number sets and then next instruction is accepted in sequence. The new value is the increase in the current labelled value.
Just took a test and I got 5 wrong and I wanted to know the correct answers
Answer:
I need the pic
Explanation:
_decisions are more common at lower organizational levels
Which of the following is not a characteristic of a structured decision?
The first three phases of the decision-making process need not occur in any particular sequence.
Structured
________ decisions are more common at lower organizational levels.
Operational control
_____ is the efficient and effective execution of specific tasks.
unstructured
When there is no well-understood or agreed-on procedure for making a decision, the decision is said to be:
Users didn't have the right tools to access the data.
Refer to the Opening Case - Quality Assurance at Daimler AG: Which of the following best describes Daimler's Quality Information System (QUIS)?
digital dashboards
Which of the following information systems are very user friendly, supported by graphics, and provide exception reporting and drill down?
The number of alternatives is decreasing.
Which of the following is not a reason why managers need IT support?
implementation
Success in the _____ phase of the decision-making process results in resolving the original problem, and failure leads to a return to previous phases.
interpersonal
Being a figurehead and leader is part of the _____ managerial role.
write a C++ program that ask the user for the number of cookies eaten and display the calorie consumption
Answer:
#include <iostream>
using namespace std;
int main()
{
int cookies;
cin >> cookies;
cout << "The calorie consumption is: " << cookies * 142 << endl;
return 0;
}
Explanation:
First line: include basic library of C++(input and output).
using namespace std;
Says to compiler we are using std.
int main() Main function
int cookies, cookies variable, of int type
cin >> cookies
get the number of the cookies from user
cout Print the text and calories(one cookie have 142 calories)
Have a nice day ;)
What is the first step a user should take toward generating an index?
--finding and marking words or phrases that should be included in the index
--making sure that headers at different levels are using consistent styles
--bolding every word or phrase that should be included in the index
--writing down information about the author and publisher of other books used
Answer:
I think that it's A
Explanation:
What is the purpose of a poster frame?
to allow the contents of an embed code to be displayed
to insert a downloaded video for offline playback and editing
to create the frame in which a screen recording will be inserted
to capture a portion of a video clip to show as a preview image
Answer: the last one
Explanation:
Here is the answer::
the formula to calculate percentage is the same as which other functions
Answer:
Division
Explanatio
Answer: everyone’s saying division, so I’m guessing the correct answer is division
Explanation: hope y’all have a blessed day
which best explains the relationship among these three facts question 8
Answer:
no attachment
Explanation:
For the function below, which variables have the same scope?
def square(numA, numB):
return numA ** numB
base = 5
power = 2
answer = square (base,power)
print(answer)
numA and power
power and base
numB and power
base and numA
Answer:
numB and power
Explanation:
Correct answer edge 2020
The variables have the same scope for the given function is power and base. The correct option is B.
What are variables?A variable in mathematics is a symbol and placeholder for any mathematical object. A variable can specifically represent a number, a vector, a matrix, a function, a function's argument, a set, or an element of a set.
A variable in computer programming is an abstract storage location with an associated symbolic name that contains some known or unknown quantity of information referred to as a value; or, to put it another way, a variable is a named container for a specific set of bits or type of data.
Because power and base are declared in the same container, they have the same scope. Because they are not present in a function, their scope is said to be global.
Thus, the correct option is B.
For more details regarding variables, visit:
https://brainly.com/question/17344045
#SPJ2
In the rapid application development (RAD) model, the _____ phase focuses on program and application development tasks similar to the SDLC.A) requirements planningB) user designC) constructionD) cutover
Answer:
C) construction
Explanation:
Rapid application development abbreviated RAD is an agile software development strategy that reduces time spent on planning so that prototype development takes priority and project turnaround time is greatly reduced consequently. There are four phases in rapid application development :
requirements planning, user design, construction, cutover
The construction phase is the third stage in rapid application development. This stage builds on the progress of the previous stages- the requirements planning stage and user design stage- to go ahead to finalize the application development which has been agreed on through iterations and communication between developer and client in the user design stage. In other words, this stage basically takes the ideas, prototypes and beta products from the previous stages and makes it into a real final product. The rationale or perks behind this is that other problems such as what product would do or look like or any changes or modifications have been worked out in previous stages thereby speeding up development in this stage.
4.8 code practice question 2 edhesive
Answer:
for y in range(88, 43, -4):
print(y, end=" ")
Explanation:
yw
The code practice is an illustration of loops;
Loops are program statements that are used to perform iterative operations
The complete program in PythonThe program in Python, where comments are used to explain each action is as follows:
#This iterates from 88 to 42, with a difference of -4
for i in range(88, 43, -4):
#This prints the numbers on a single line
print(i, end=" ")
Read more about loops at:
https://brainly.com/question/24833629
#SPJ2