What is a key consideration when evaluating platforms?

Answers

Answer 1

Answer:

The continuous performance of reliability data integrity will lead to the benefit and profit of the platform's regular structure changes. Cleanliness in the platform whereas addresses the straightforward structure of task performance and adequate data integrity.


Related Questions

. Which of these perform real-world activities such as eating, sleeping, walking, and running in virtual worlds?

Answers

Answer:

all

Explanation:

Answer:

avatars

Explanation: I just took the test

how to learn python ?

Answers

Answer:

See below.

Explanation:

To learn python programming language, first, you have to know the basic. Surely, you may recognize this function namely print()

print(“Hello, World!”) — output as Hello, World!

First, start with familiarizing yourself with basic function such as print. Then step up with arithmetic and declare or assign variable then list.

Here are example of functions:

1.) print(argument) — If argument is a string (word-typed), make sure to use “” or ‘’ or else it’ll output an error and say the argument is not defined.

print(“Hi, Brainly”) will output Hi, Brainly

print(2+3) will output 5

Numerical data or numbers do not necessarily require “ “ or ‘ ‘

print(3+3) will output 6 but print(“3+3”) will output 3+3 which is now a string.

2.) type(argument) - this tells you which data/argument it is. There are

< class ‘str’ > which is string, meaning it contains “ “ or ‘ ‘< class ‘int’ > which is integer< class ‘float’ > which is decimal (20.0 is also considered as float, basically anything that contains decimal is all float type)< class ‘list’ > which is a list. List is something that contains elements within square brackets [ ]

etc.

Make sure you also do print(type(argument)) as well so it will print out the output.

3.) Arithmetic

+ is addition

Ex. print(1+3) will output 4

   2. - is subtraction

Ex. print(5-4) will output 1

   3. * is multiply

Ex. print(4*5) will output 20

   4. ** is exponent

Ex. print(5**2) will output 25

   5. / is division

Ex. print(6/3) will output 2 — sometimes will output the float type 2.0

   6. % is modulo or remainder

Ex. print(7%2) will output 1

4.) Variables

To assign a variable, use =

An example is:

x = 2

y = 5

print(x+y) will output 7

print(type(x)) will output the < class ‘int’ >

These are examples of what you’ll learn in basic of python - remember, programming depends on experience and always focus on it. Keep practicing and searching will improve your skill at python.

NO LINKS OR I WILL DELETE YOUR FORTNITE ACCOUNT
What can you do with the free version of the splice editor

Answers

Answer:

can i have ur fortnite account if u hav one and dont use it :) i only say that cuz u mentioned fortnite

Explanation:

with the free version you can add effects (cheap effects) cut the video, crop some parts. and posting leaves a watermark until u buy money

Answer:

It has a 7 day free trial while your using the free version

Explanation:

An administrator wants to restrict access to a particular database based upon a stringent set of requirements. The organization is using a discretionary access control model. The database cannot be written to during a specified period when transactions are being reconciled. What type of restriction might the administrator impose on access to the database

Answers

Answer:

Time of the day and object restrictions

Explanation:

From the question, we understand that the database is not allowed to be accessed at a certain period of time.  

Because this has to do with time (period), the administrator will need to set a time of the day object restriction on the database in order to prevent the users from accessing the database objects

See the lseek_example.c file. Modify the lseek_example.c, such that it reads from an input file (named "start.txt") and will print to an output file (named "end.txt") every (1+3*i)th character, starting from the 1st character in the input file. In other words, it will print the 1st character, then skip 2 characters and print the 4th one, then skip 2 characters and print the 7th one, and so on.
For instance, for input file:
ABCDEFGHIJKLM
It will output:
ADGJM
Iseek_example.c file contant:
// C program to read nth byte of a file and
// copy it to another file using lseek
#include
#include
#include
#include
void func(char arr[], int n)
{
// Open the file for READ only.
int f_read = open("start.txt", O_RDONLY);
// Open the file for WRITE and READ only.
int f_write = open("end.txt", O_WRONLY);
int count = 0;
while (read(f_read, arr, 1))
{
// to write the 1st byte of the input file in
// the output file
if (count < n)
{
// SEEK_CUR specifies that
// the offset provided is relative to the
// current file position
lseek (f_read, n, SEEK_CUR);
write (f_write, arr, 1);
count = n;
}
// After the nth byte (now taking the alternate
// nth byte)
else
{
count = (2*n);
lseek(f_read, count, SEEK_CUR);
write(f_write, arr, 1);
}
}
close(f_write);
close(f_read);
}
// Driver code
int main()
{
char arr[100];
int n;
n = 5;
// Calling for the function
func(arr, n);
return 0;
}

Answers

Answer:

See the lseek_example.c file. Modify the lseek_example.c, such that it reads from an input file (named "start.txt") and will print to an output file (named "end.txt") every (1+3*i)th character, starting from the 1st character in the input file. In other words, it will print the 1st character, then skip 2 characters and print the 4th one, then skip 2 characters and print the 7th one, and so on.

For instance, for input file:

ABCDEFGHIJKLM

It will output:

ADGJM

Iseek_example.c file contant:

// C program to read nth byte of a file and

// copy it to another file using lseek

#include

#include

#include

#include

void func(char arr[], int n)

{

// Open the file for READ only.

int f_read = open("start.txt", O_RDONLY);

// Open the file for WRITE and READ only.

int f_write = open("end.txt", O_WRONLY);

int count = 0;

while (read(f_read, arr, 1))

{

// to write the 1st byte of the input file in

// the output file

if (count < n)

{

// SEEK_CUR specifies that

// the offset provided is relative to the

// current file position

lseek (f_read, n, SEEK_CUR);

write (f_write, arr, 1);

count = n;

}

// After the nth byte (now taking the alternate

// nth byte)

else

{

count = (2*n);

lseek(f_read, count, SEEK_CUR);

write(f_write, arr, 1);

}

}

close(f_write);

close(f_read);

}

// Driver code

int main()

{

char arr[100];

int n;

n = 5;

// Calling for the function

func(arr, n);

return 0;

}

Explanation:

User ideas for ro blox? I prefer no numbers or underscores.

Answers

do what the other person said

What Are the Components of a Web Address? *​

Answers

Answer:

What Are the Components of a Web Address?

1.Protocol. The first component of a web address is the protocol, which is also known as the scheme. ...

2.Domain Name. The domain name part of the web address is the unique identifier for the website on the internet. ...

3.Domain Extension. ...

4.Path & Filename.

Other Questions
Which line from a simple way to Create suspense best support the central idea that rider should not give their readers answers to quickly What was the new name for Russia and what form of government did it put in place? An object is placed on a surface. A student tries to apply various combinations of forces on the object. Which pair of forces will not move the object? Q7: Subtract(a) -6x 3 from 2x 5,(b) 6x y + 5z from 10x 2y + z,(c) 8p + 99 5rs from 4p 49 + 15sr,(d) 8a 3b + 50 4d from 10a b - 40 - 8d. How did habeas corpus affect the rights of citizens?A. For the first time the king could throw anyone in jail he wantedB. For the first time people could not be jailed without a reasonC.for the first time barons could throw anyone in jail without trail Suma40grados 35 con60grados7erq' wa' rty ua s d f g h j k l en espaol Explain why Hermione is a wizard even though both of her parents were muggles. The average number of people who attended football games at a stadium increased from 8000 people in the year 2005 to 12500 people in the year 2012. By what percentage did the average number of people at the games increase from 2005 to 2012? Can u help me I did not mean to click the other thing Use the text of the opinion piece, "What's for Lunch," and your completed graphic organizer to answer the question below. Include evidence from the article to support your answer. Do you think this author has an agenda? If so, what is it? If not, what is the purpose of her article? Does she achieve her purpose? Whats for Lunch?Marcia Amidon LustedZachary Maxwell was tired of trying to explain to his parents why he wanted to bring lunch to school instead of eating hot lunch. They couldnt understand why he didnt want to eat the gourmet food described on the schools online menu, which sounded both nutritious and interesting. Zachary just couldnt convince them that the food wasnt as great as it sounded. So in the fall of 2011, he began sneaking a small video camera into the cafeteria at his school, to show his parents what the lunches were really like. Six months and 75 school lunches later, Zachary made a documentary film about his lunch called Yuck: A 4th Graders Short Documentary About School Lunch. Describe the type of people Andrew Jackson supported. Recommendations for anime and video games(also if you need points)or write any data of any subjecte it her spanish or english(^^) Which is longer, 2 feet or 18 inches? Use the scenario to answer the following question. In 1946, the United States Supreme Court ruled in King v. Chapman that white primary systems in Georgia were unconstitutional. In the election of 1946, black voters were able to take part in the primary election for the first time since Reconstruction. Which of the following BEST connects the end of the white primary to the 1946 governor's race? O A. Ellis Arnall remained governor for a second term in order to protect the white primary. O B. Melvin Thompson became governor after Talmadge's death and promised to protect the white primary. C. Eugene Talmadge ran on a campaign to restore the white primary but died before he could take office. O D. Eugene Talmadge ran for governor promising to reinstate the white primary and died before he took office. What is the name for the cartaliginous joint that connects the right and left coxal bones in the anterior At the amusement park, Laura paid $6.00 for small cotton candy. Her older brother works at the park, and he told her they mark up the cotton candy by 300%. What is the price of the cotton candy before the markup? Calculate the distance Katie rides her bike if she rides 7/10 mile each day for 9 days? My neighbor, Principal Skinner, gives out applesHalloween. Change the following sentences to negatives.1. Tengo algo en mi mochila. 2. Alguien me escribe de Espaa. 3. Siempre recibo regalos de mis amigos. 4. Me gusta el pastel de fresa tambin. 5. Tengo algunos amigos en una ciudad en Espaa. pls help fast i will make you a brailyest PLS HELP!!!!!!!!!!!!!!! I NEED THIS AS SOOM AS POSSIBLE