The statement " Social media providers build and host website platform" is one of the most accurately distinguishing social media providers from social media sponsors.
What are web platforms?
The World Wide Web Consortium, as well as other standardization organizations like the Web Hypertext Application Technology Working Group, the Unicode Consortium, the Internet Engineering Task Force, and Ecma International, developed a collection of technologies known as the Web platform as open standards. a general phrase used to describe a website's architecture Website authoring tools like Dreamweaver or WordPress, as well as server software like Microsoft's IIS or Apache, can both be referred to as web platforms. web publishing and web authoring software.
To learn more about web platforms, use the link given
https://brainly.com/question/29481636
#SPJ4
State two skills to be used to access information from the internet inorder to avoid unwanted materials
Answer:
Two skills that can be used to access information from the internet while avoiding unwanted materials namely effective search strategies, critical evaluation of sources.
Why is it important to format your spreadsheets and use conditional formatting?
Answer:
So people can read it and quickly make sense of the data
Consider sorting n numbers stored in array A by first finding the smallest element of A and exchanging it with the element in A[1]. Then find the second smallest element of A, and exchange it with A[2]. Continue in this manner for the first n − 1 elements of A. Write pseudocode for this algorithm, which is known as selection sort. What loop invariant does this algorithm maintain? Why does it need to run for only the first n − 1 elements, rather than for all n elements? Give the best–case and worst–case running times of selection sort in Θ–notation.
Answer:
1. create the first array A
2. create the second array A1, the same length as array A.
3. create a loop to iterate over both arrays for a number of times specific to the length of the arrays, with a condition to get and pop only the minimum value of which arrays for every loop.
4. save both items to "a" for minimum value A and "b" for minimum value A1.
5. call a function to push the "a" variable value to A1 and "b" variable value to the array A.
Explanation:
This code would interchange the values of both arrays, the best-case scenario for the code is O( n ) where n is the number of items in both arrays and worst is the best-case multiplied by the number of time to compare all the items with the minimum value.
Abstract: Design, implement, explain, test, and debug a simple, but complete command- line interpreter named cli.
Detail: Design, implement, document, test and run a simple shell, known here as a command-line interpreter (cli). This tool is invoked via the cli command plus possible arguments. Commands are OS commands to be executed. Multiple commands are separated from one another by commas, and each may in turn require further arguments. Cli 'knows' a list of commands a-priori; they are predefined. When invoked, cli checks, whether the first argument is an included command. If so, cli confirms this via a brief message. If not, a contrary message is emitted, stating this is not one the predefined commands. After the message, cli executes all commands in the order listed. After executing the last command, cli prints the current working directory, i.e. it acts as if the pwd command had been issued. Sample runs are shown further below.
Multiple commands of cli must be separated from one another by commas. Possible parameters of any one command are separated from the command itself (and from possible further parameters) by white space. White space consists of blanks, tabs, or a combination, but at least 1 blank space. Here some sample runs with single and multiple commands; outputs are not shown here: .
/cli pwd looks like Unix command pwd; is your sw .
/cli rm -f temp, mv temp ../temp1 ditto: input to your running homework 5
./cli ls -la another "single unix command"
./cli rm a.out, gcc sys.c, cp a.out cli
Cli starts out identifying itself, also naming you the author, and the release date. Then cli prints the list of all predefine commands. Finally, cli executes all commands input after the cli invocation. For your own debug effort, test your solution with numerous correct and also wrong inputs, including commas omitted, multiple commas, leading commas, illegals commands, other symbols instead of commas etc. No need to show or hand-in your test and debug work.
The output of the cli command "cli pwd" or "./cli pwd" should be as shown below, assuming your current working directory is ./classes Sac State/csc139. Here is the output of a sample run with a single command line argument:
herbertmayer$ ./cli pwd
hgm cli 4/12/2020
Legal commands: cd exec exit gcc Is man more mv rm pwd sh touch which $path
2 strings passed to argv[]
next string is 'pwd'
new string is 'pwd
1st cind 'pwd' is one of predefined
/Users/herbertmayer/herb/academia/classes Sac State/csc139
Here the output of another sample run, also with a single cli command:
herbertmayer$ ./cli ls
hgm cli 4/12/2020
Legal commands: cd exec exit gcc ls man more mv rm pwd sh touch which Spath
2 strings passed to argv[]
next string is 'ls'
new string is 'ls!
1st cmd 'is' is one of predefined. admin cli.c sac state yyy
backup 1 24 2020 docs sac state hw
backup 3 9 2020 grades sac state xxx
cli 1 notes
/Users/herbertmayer/herb/academia/classes Sac State/csc139
Interpretation of commands that cli handles can proceed through system(), executed from inside your C/C++ program cli.
List of all commands supported by your cli:
char * cmds [ ] = {
"cd",
"exec",
"exit",
"gcc",
"ls",
"man",
"more",
"mv",
"Im
"pwd"
"sh",
"touch",
"which",
"Spath"
What you turn in:
1. The source program of your homework solution; well commented, preferably one single source file.
2. Four progressively more complex executions of your correctly working cli program, showing all user inputs and corresponding output responses.
Answer:
that is very long question ask a profesional
Explanation:
how to find tax rate using VLOOKUP in microsoft excel
To find a tax rate using VLOOKUP in Microsoft Excel, you would set up a table with tax brackets and corresponding rates, and then use the VLOOKUP function to match the income amount and retrieve the corresponding tax rate.
What is VLOOKUP?
When you need to find anything in a table or a range by row, use VLOOKUP. Look for the pricing of an automobile item by its part number, or locate an employee's name by their employee ID.
The VLOOKUP method requires three inputs, in this order: lookup value, table array, and column index number. The lookup value is the value for which you wish to locate matching data and must be in the lookup table's first column; it can be a value, a text string, or a cell reference.
Learn more about VLOOKUP:
https://brainly.com/question/30154536
#SPJ1
which country did poker originate from?
Poque, a game that dates back to 1441 and that was supposedly invented in Strasbourg, seems to be the first early evidence of the French origin of the game. Poque in particular used a 52-card deck
France/French
Write a program that prints the square of the product. Prompt for and read three integer values and print the square of the product of all the three integers.
Answer:
ok
Explanation:
aprogram that prints the square of the product. Prompt for and read three integer values and print the square of the product of all the three integers. is written below
a program that prints the square of the product. Prompt for and read three integer values and print the square of the product of all the three integers.
What would be an ideal scenario for using edge computing solutions?
Answer:
An ideal scenario for using edge computing solutions would be a situation where data needs to be processed quickly and efficiently, without the need for a central server
Explanation:
Why is it difficult to convince top management to commit funds to develop and implement a Strategic Information System
Answer:
It is difficult to convince top management to commit funds to develop and implement an SIS because it can lead to reengineering, which requires businesses to revamp processes to undergo organizational change to gain an advantage.
Explanation:
After the following lines of code are executed, what will be the output? (python)
def calc(x, y):
x = 20
y = 10
def main():
a = 2
b = 3
calc(a, b)
print(‘The values are:’, a, b)
main()
After executing the code, the output will be: The values are: 20 10. The main() function initializes the variables a and b with the values 2 and 3, respectively.
What is the explanation?The main() function initializes the variables a and b with the values 2 and 3, respectively. The calc() function takes two arguments, x and y, but then immediately overwrites them with the values 20 and 10, respectively. This means that whatever values were passed to calc() will be ignored. The calc() function returns two values, x and y, which are then assigned to the variables a and b in the main() function.
Finally, the print() statement outputs the values of a and b, which were set to 20 and 10, respectively, by the calc() function.
Learn more about values, here:
https://brainly.com/question/30145972
#SPJ1
Multimedia can be used in
a) schools
b) advertising
c) all of these
c) all of these
multimedia can be used in schools, specially when there' an educational videos.
Which of the following is a list of networks known to a specific device, when on a router or PC/server?Question 1 options:Static IP addressDynamic IP addressDefault gatewayRouting table
A routing table is a list of networks known to a specific device, when on a router or PC/server. It contains information about the various routes that a device can use to reach different destinations on a network.
The routing table is used by the device to determine the best path to a destination, based on factors such as network congestion, network distance, and network reliability. A static IP address is a fixed IP address that is assigned to a device, rather than being assigned dynamically by a DHCP server. A dynamic IP address is an IP address that is assigned to a device dynamically by a DHCP server. A default gateway is the IP address of the router on a network that is used to forward packets to destinations outside of the local network.
Learn more about routing table: https://brainly.com/question/29654124
#SPJ4
Zoom,Adobe connect and webinar are examples of teleconferencing tools___
Zoom, Adobe connect and webinar are examples of teleconferencing tools is a true statement.
What varieties of teleconferencing that exist?The term or tool teleconferencing is one that allows a group of individuals to meet up from various areas.
It helps them in Conference calls, videoconferences, as well as in web-based conferences and these are the three most popular varieties of teleconferences.
Companies utilize Adobe Connect, a web conferencing software program, to hold online meetings, webinars, as well as training sessions.
Therefore, Zoom, Adobe connect and webinar are examples of teleconferencing tools is a true statement.
Learn more about teleconferencing from
https://brainly.com/question/28391160
#SPJ1
Zoom,Adobe connect and webinar are examples of teleconferencing tools___ True or false
What steps should a user follow to add SmartArt to a document? Use the drop-down menus to complete the steps.
1. Put the cursor on the insertion point.
2. Go to the
tab on the ribbon.
3. In the Illustrations group, click
4. Select the design choice and click
5. Type in the desired text, and click
to exit the dialog box.
Note that the steps that a user should follow to add SmartArt to a document are:
2. Go to the tab on the ribbon.
3. In the Illustrations group, click
4. Select the design choice and click
1. Put the cursor on the insertion point.
5. Type in the desired text, and click to exit the dialog box.
What is Smart Art?A SmartArt graphic is a graphical representation of your data and thoughts. You make one by selecting a layout that best suits your message. Some layouts (for example, organization charts and Venn diagrams) depict certain types of information, while others just improve the aesthetic of a bulleted list.
SmartArt is a PowerPoint application that allows you to make complex charts and diagrams with minimal effort. SmartArt is "smart" in that it adjusts for size automatically as you work on the arrangement.
Learn more about SmartArt:
https://brainly.com/question/5832897
#SPJ1
Answer:
Put the cursor on the insertion point.
Go to the
✔ Insert
tab on the ribbon.
In the Illustrations group, click
✔ SmartArt
.
Select the design choice and click
✔ OK
.
Type in the desired text, and click
✔ Close
to exit the dialog box.
Explanation:
How is the query wizard used on a table?
The query wizard is a tool in database management systems that helps users create queries to retrieve specific data from a table. Here are the steps to use the query wizard on a table:
1. Open the database management system, such as Microsoft Access.
2. Open the table you want to query.
3. Locate the "Query Wizard" option, which is typically found in the toolbar or menu.
4. Click on the "Query Wizard" option to launch the wizard.
5. Follow the instructions provided by the query wizard.
6. Select the fields you want to include in your query from the available options.
7. Choose the criteria you want to use to filter the data. This can be based on specific values, ranges, or conditions.
8. Specify the sorting order for the query results, if desired.
9. Name the query and choose whether to immediately view the results or modify the design of the query further.
10. Click "Finish" or "OK" to generate the query and view the results.
By using the query wizard, you can easily create and customize queries without needing to write complex SQL statements manually. It provides a user-friendly interface to guide you through the process of querying a table.
For more such questions wizard,Click on
https://brainly.com/question/30670647
#SPJ8
Guess The Song:
She don't like her body, left the doctor with a new shape
Blowing up my phone 'cause she just see me with my new bae
Heart breaker, ladies love me like I'm Cool J
Answer:pop out
Explanation:
A free software license allows users to
obtain the software at no cost.
view the source code but not alter it.
use, alter, and distribute the software as
desired.
distribute the original software but no altered
versions.
A free software license allows users to obtain the software at no cost and use, alter, and distribute it as desired.
A free software license grants users certain rights and freedoms to use, modify, and distribute the software. One of the key aspects of a free software license is that it allows users to obtain the software at no cost, meaning they can acquire it without any financial obligation.
Additionally, a free software license typically grants users the freedom to use, alter, and distribute the software as desired. This means that users have the freedom to customize and modify the software according to their needs, and they can distribute both the original software and any altered versions they create.
The ability to view and modify the source code is often an important characteristic of free software licenses. While the option to view the source code may be available, it is not exclusive to free software licenses, as other types of licenses may also provide access to the source code.
However, the specific freedom to alter the source code is typically associated with free software licenses.
In summary, a free software license allows users to obtain the software at no cost and provides them with the freedom to use, alter, and distribute the software as desired.
For more questions on software
https://brainly.com/question/32393976
#SPJ8
Answer: C (use, alter, and distribute the software as desired.)
Explanation: i got i right
As you consider computer hardware and software, what hardware element do you think impact software performance the most? Justify your answer.
Answer:
The central processing unit (CPU)
Explanation:
CPU contains the ALU- arithmetic and logical unit and other part which helps the to and fro information processing and allows to send data from the software back and front to the hardware.
What is generated from the following HTML code:
Hello
Answer:
<h1>Hello</h1>
<h1>Hello</h1>
<h1>Hello</h1>
Explanation:
the h1 tag is depending on what size you want it to be. You can go from h1 to h6 and beyond
Answer: Hi, Hello, whatsup, konichiwa, sup,
In theory, a hacker with a small but powerful directional antenna could access a wireless network from more than one mile away. In a real-world situation, what is the more likely range involved
In a certain code, CAT is written as SATC & DEAR is
Answer:
CAT becomes ATC (First letter is shifted to the last) and then letter preceding T (Last letter), i.e. S is added in the beginning. Thus, it becomes SATC. Same way, DEAR becomes EARD, and the letter preceding R i.e. Q is added in the beginning. Thus, it becomes QEARD.
In a certain code, CAT is written as SATC & DEAR is QEARD
What is a puzzle?A puzzle is defined as a piece in which there will be a logical way through which the answer will be solved. This will be on the basis of various logic that will be presented in the sheet.
CAT becomes SATC
In the following word, the first letter is shifted to the last
The letter that is preceding T that is the last letter.
Thus, S is added in the beginning.
Thus, it becomes SATC.
In the given above manner
DEAR becomes EARD,
the letter which is preceding R is Q is written in the beginning.
Thus, the word will become QEARD.
Learn more about puzzle , here:
https://brainly.com/question/30357450
#SPJ1
Kaiden would like to find the list of physical disk drives that are connected to a Linux system. Which directory contains a subdirectory for each drive
Answer:
The answer is "\root"
Explanation:
The root directory is the part of the Linux OS directory, which includes most other system files and folders but is specified by a forward slash (/). These directories are the hierarchy, which is used to organize files and folders on a device in a standardized protocol framework. This root is also known as the top directory because it .supplied by the os and also is designated especially, that's why it is simply called root.Christian is conducting a survey to find out what technology device is the most popular. He wants to make sure his question is relevant to his topic. What question should Christian ask on his survey
A pedometer treats walking 1 step as walking 2.5 feet. Define a method named feetToSteps that takes a double as a parameter, representing the number of feet walked, and returns an integer that represents the number of steps walked. Then, write a main program that reads the number of feet walked as an input, calls method feetToSteps() with the input as an argument, and outputs the number of steps.
Use floating-point arithmetic to perform the conversion.
Ex: If the input is:
150.5
the output is:
60
The program must define and call a method:
public static int feetToSteps(double userFeet)
CODE:
import java.util.Scanner;
public class LabProgram {
/* Define your method here */
public static void main(String[] args) {
/* Type your code here. */
}
}
Answer:
Here's the completed code that implements the feetToSteps method and the main program that reads the number of feet walked as input and outputs the number of steps walked:
import java.util.Scanner;
public class LabProgram {
public static int feetToSteps(double userFeet) {
double steps = userFeet / 2.5; // Convert feet to steps
return (int) Math.round(steps); // Round steps and convert to integer
}
public static void main(String[] args) {
Scanner scnr = new Scanner(System.in);
double feetWalked = scnr.nextDouble();
int stepsWalked = feetToSteps(feetWalked);
System.out.println(stepsWalked);
scnr.close();
}
}
Explanation:
In this code, the feetToSteps method takes a double parameter userFeet, representing the number of feet walked, and converts it to the number of steps walked by dividing it by 2.5 (since 1 step = 2.5 feet). The result is then rounded to the nearest integer using the Math.round method and casted to an integer before being returned.
The main program reads the number of feet walked as input using a Scanner object, calls the feetToSteps method with the input as an argument, and outputs the number of steps walked using System.out.println. Finally, the Scanner object is closed to free up system resources.
When multiple architects work on a construction plan, which section of a construction plan will help them keep track of when the changes are made and by whom?
A.
framing plan
B.
schedule
C.
title block
D.
bill of materials
Answer:
I believe that it is . A. framing plan
Explanation:
But I am not certain But I do know that it IS NOT B..
Answer:
the answer is schedule!!!
Explanation:
Create a Java program that asks the user for three test
scores. The program should display the average of the
test scores, and the letter grade (A, B, C, D or F) that
corresponds to the numerical average. (use dialog boxes
for input/output)
Answer:
there aren't many points so it's not really worth it but here
kotlin
Copy code
import javax.swing.JOptionPane;
public class TestScoreGrader {
public static void main(String[] args) {
double score1, score2, score3, average;
String input, output;
input = JOptionPane.showInputDialog("Enter score 1: ");
score1 = Double.parseDouble(input);
input = JOptionPane.showInputDialog("Enter score 2: ");
score2 = Double.parseDouble(input);
input = JOptionPane.showInputDialog("Enter score 3: ");
score3 = Double.parseDouble(input);
average = (score1 + score2 + score3) / 3;
output = "The average is " + average + "\n";
output += "The letter grade is " + getLetterGrade(average);
JOptionPane.showMessageDialog(null, output);
}
public static char getLetterGrade(double average) {
if (average >= 90) {
return 'A';
} else if (average >= 80) {
return 'B';
} else if (average >= 70) {
return 'C';
} else if (average >= 60) {
return 'D';
} else {
return 'F';
}
}
}
Explanation:
Write a program that takes in an integer in the range 10 to 100 as input. Your program should countdown from that number to 0, printing
the count each of each iteration After ten numbers have been printed to the screen, you should start a newline. The program should stop
looping at 0 and not output that value
I would suggest using a counter to cổunt how many items have been printed out and then after 10 items, print a new line character and
then reset the counter.
important: Your output should use %3d" for exact spacing and a space before and after each number that is output with newlines in order
to test correctly. In C please
Answer:
The program written in C language is as follows
#include<stdio.h>
int main()
{
//Declare digit
int digit;
//Prompt user for input
printf("Enter any integer: [10 - 100]: ");
scanf("%d", &digit);
//Check if digit is within range 10 to 100
while(digit<10 || digit >100)
{
printf("Enter any integer: [10 - 100]: ");
scanf("%d", &digit);
}
//Initialize counter to 0
int counter = 0;
for(int i=digit;i>0;i--)
{
printf("%3d", i); //Print individual digit
counter++;
if(counter == 10) //Check if printed digit is up to 10
{
printf("\n"); //If yes, print a new line
counter=0; //And reset counter to 0
}
}
}
Explanation:
int digit; ->This line declares digit as type int
printf("Enter any integer: [10 - 100]: "); -> This line prompts user for input
scanf("%d", &digit);-> The input us saved in digit
while(digit<10 || digit >100) {
printf("Enter any integer: [10 - 100]: ");
scanf("%d", &digit); }
->The above lines checks if input number is between 10 and 100
int counter = 0; -> Declare and set a counter variable to 0
for(int i=digit;i>0;i--){ -> Iterate from user input to 0
printf("%3d", i); -> This line prints individual digits with 3 line spacing
counter++; -> This line increments counter by 1
if(counter == 10){-> This line checks if printed digit is up to 10
printf("\n"); -> If yes, a new line is printed
counter=0;} -> Reset counter to 0
} - > End of iteration
Which part of the Result block should you evaluate to determine the needs met rating for that result
To know the "Needs Met" rating for a specific result in the Result block, you should evaluate the metadata section of that result.
What is the Result blockThe assessment of the metadata section is necessary to determine the rating of "Needs Met" for a particular outcome listed in the Result block.
The metadata includes a field called needs_met, which evaluates the level of satisfaction with the result in terms of meeting the user's requirements. The needs_met category usually has a score between zero and ten, with ten implying that the outcome entirely fulfills the user's demands.
Learn more about Result block from
https://brainly.com/question/14510310
#SPJ1
When should programmers use variables to store numeric data?
Programmers should use variables to store numeric data when they need to reference and use the same data multiple times throughout a program.
What is program?A program is a set of instructions that can be executed by a computer to perform a specified task. It can be written in any of a number of programming languages, such as C, Java, Python or Visual Basic. Programs can range from simple scripts that automate a task, to complex applications with many features. Programs are designed to solve a particular problem or provide a specific benefit to the user.
Variables are a convenient way to store and access data that may be needed in multiple different places.
To learn more about program
https://brainly.com/question/28028491
#SPJ1
state the base of correct addition of 27 + 6 =34
Answer:
9
Explanation:
lets do calculations with ONLY the rightmost digits, ie., 7 + 6 = 4, so we're ignoring the carry.
Then, following must be true as well:
7+5 = 3
7+4 = 2
7+3 = 1
7+2 = 0 <= this reveals our base 9
7+1 = 8
7+0 = 7