xekksksksksgBcjqixjdaj
Scenario
A game developer has asked you to help build a card game. Your task is to allow the user to
pick the cards from the deck.
1. Random Numbers
Type the following code to pick a random number between 1 and 4:
import random
randomNum = random.randint(1,4)
print (randomNum)
2. Choosing a suit
Define a function called chooseSuit(number)
This code MUST go in between the import random line and the rest of the program.
Inside the function use an if..elif block that will turn each number into a suit
def chooseASuit (number):
if number
1:
suit
"Hearts" |
The function should return the value of suit at the end.
3. Calling the function
At the end of the program, call the chooseASuit function, passing the randomNum and
storing the answer in a variable called suit
4. Card Value
Define a function that will convert the values 1, 11, 12 and 13 to Ace, Jack, Queen
and King Capture the response in a variable called value.
5. Finally
The program should print "Your card is the 3 of clubs" (or something similar).
Make this happen 10 times.
In order to facilitate the selection of cards from a deck during a card game, the random module in Python can be utilized.
How to incorporate the random module?By incorporating the random module into our code and invoking the randint function, we can produce a random numerical value ranging from 1 to 4, which can be attributed to the individual cards in our deck.
The following code can be utilized to accomplish this task.
import random
randomNum = random.randint(1,4)
print(randomNum)
The randomly generated number can serve as a tool to identify the exact card selected by the user from the deck. The aforementioned procedure is applicable to every card chosen by the player throughout the game.
Read more about programs here:
https://brainly.com/question/23275071
#SPJ1
Which one of the statements is true about cryptocurrency?
Cryptocurrency controls blockchain technology.
Cryptocurrency is a type of digital asset that can be owned.
Cryptocurrency is a type of hash that gives value to a block of data.
Cryptocurrency gets its value based on how many blocks of data it is made of.
Cryptocurrency is a type of digital asset that can be owned.
The true statement about cryptocurrency is that it is a type of digital asset that can be owned.
Thus option B is correct.
Here,
Cryptocurrency is a digital or virtual currency that uses cryptography (the practice of secure communication) for security and operates independently of a central bank. It is decentralized and can be used to make transactions without the need for an intermediary such as a bank.
Cryptocurrency can be owned and stored in digital wallets, just like traditional money. Its value is determined by market demand and supply, meaning that the price of cryptocurrency can be highly volatile.
Cryptocurrency is not a type of hash or a control of blockchain technology.
Know more about cryptocurrency,
https://brainly.com/question/31646159
#SPJ6
Which core business etiquette is missing in Jane
Answer:
As the question does not provide any context about who Jane is and what she has done, I cannot provide a specific answer about which core business etiquette is missing in Jane. However, in general, some of the key core business etiquettes that are important to follow in a professional setting include:
Punctuality: Arriving on time for meetings and appointments is a sign of respect for others and their time.
Professionalism: Maintaining a professional demeanor, dressing appropriately, and using appropriate language and tone of voice are important in projecting a positive image and establishing credibility.
Communication: Effective communication skills such as active listening, clear speaking, and appropriate use of technology are essential for building relationships and achieving business goals.
Respect: Treating others with respect, including acknowledging their opinions and perspectives, is key to building positive relationships and fostering a positive work environment.
Business etiquette: Familiarity with and adherence to appropriate business etiquette, such as proper introductions, handshakes, and business card exchanges, can help establish a positive first impression and build relationships.
It is important to note that specific business etiquettes may vary depending on the cultural and social norms of the particular workplace or industry.
Which of the following accurately describes a user persona? Select one.
Question 6 options:
A user persona is a story which explains how the user accomplishes a task when using a product.
A user persona should be based only on real research, not on the designer’s assumptions.
A user persona should include a lot of personal information and humor.
A user persona is a representation of a particular audience segment for a product or a service that you are designing.
A user persona is a fictionalized version of your ideal or present consumer. In order to boost your product marketing, personas can be formed by speaking with people and segmenting them according to various demographic and psychographic data and user.
Thus, User personas are very helpful in helping a business expand and improve because they reveal the various ways customers look for, purchase, and utilize products.
This allows you to concentrate your efforts on making the user experience better for actual customers and use cases.
Smallpdf made very broad assumptions about its users, and there were no obvious connections between a person's occupation and the features they were utilizing.
The team began a study initiative to determine their primary user demographics and their aims, even though they did not consider this to be "creating personas," which ultimately helped them better understand their users and improve their solutions.
Thus, A user persona is a fictionalized version of your ideal or present consumer. In order to boost your product marketing, personas can be formed by speaking with people and segmenting them according to various demographic and psychographic data and user.
Learn more about User persona, refer to the link:
https://brainly.com/question/28236904
#SPJ1
You are given an array of integers, each with an unknown number of digits. You are also told the total number of digits of all the integers in the array is n. Provide an algorithm that will sort the array in O(n) time no matter how the digits are distributed among the elements in the array. (e.g. there might be one element with n digits, or n/2 elements with 2 digits, or the elements might be of all different lengths, etc. Be sure to justify in detail the run time of your algorithm.
Answer:
Explanation:
Since all of the items in the array would be integers sorting them would not be a problem regardless of the difference in integers. O(n) time would be impossible unless the array is already sorted, otherwise, the best runtime we can hope for would be such a method like the one below with a runtime of O(n^2)
static void sortingMethod(int arr[], int n)
{
int x, y, temp;
boolean swapped;
for (x = 0; x < n - 1; x++)
{
swapped = false;
for (y = 0; y < n - x - 1; y++)
{
if (arr[y] > arr[y + 1])
{
temp = arr[y];
arr[y] = arr[y + 1];
arr[y + 1] = temp;
swapped = true;
}
}
if (swapped == false)
break;
}
}
Edmentum computers and careers mastery test
The application that is an example of a locally installed email client is Thunderbird
The type of computer application that Oracle is, is called database
The view in a presentation program displays that your slides in full-screen mode is called Slide Show
What are the applications about?Thunderbird is a free, open-source email client that can be installed on a computer and used to manage and send email messages. It is an example of a locally installed email client, as opposed to a web-based email service like Yahoo Mail.
A database is a software program that is used to store and manage large amounts of data, such as customer information, product inventory, and financial transactions. Oracle is one of the most widely-used databases in the world, and is often used by large businesses and organizations to manage their data.
In a presentation program, such as Microsoft PowerPoint, the Slide Show view displays your slides in full-screen mode. This means that the slides fill the entire screen and there are no other elements, like the toolbar or ribbon, visible. This view is typically used when presenting the slides to an audience, as it allows the slides to be easily read and seen from a distance.
Learn more about presentation program from
https://brainly.com/question/24653274
#SPJ1
See correct question below
Examples of computers and careers mastery test
Email applications can either be local email client programs or web-based applications. Which application is an example of a locally installed email client?
Which type of computer application is Oracle?
Which view in a presentation program displays your slides in full-screen mode?
Based on three scores that the user inputs, display the average of the score and the letter grade that is assigned fort he test score average. The grading scheme is as follows:
// 90 - 100 A
// 80 - 89 B
// 70 - 79 C
// 60 - 69 D
// <60 F
return 'F';
Your display should look like:
Your average test score is 89.9. You earned a B.
1 public void calculateDisplayLetterGrade (double scorel, double score2, double score3)
2 {
3
4 }
5
I used python function to write the code.
def averageScore(x,y,z):
s = x + y + z
avg = s/3
if avg >= 90:
return f'Your average test score is {avg} You earned a A.'
elif avg >=80 and avg < 90 :
return f'Your average test score is {avg} You earned a B.'
elif avg >=70 and avg < 80 :
return f'Your average test score is {avg} You earned a .C'
elif avg >=60 and avg < 70 :
return f'Your average test score is {avg} You earned a D.'
else:
return f'Your average test score is {avg} You earned a F.'
print(averageScore(98, 90, 80))
Python function is used to write the code where x, y and z are the argument (user inputs) of the function. Then the inputs are summed and the average is gotten and stored with the variable, avg.
If the average is greater than or equal to 90 the program will give the appropriate score and response(grade). It does the same if the user scored 80 - 89, 70 - 79, 60 - 69 and less than 60.
Finally. the function is called with the user input(argument).
Note the bolded values in the code are keywords in python.
read more: https://brainly.com/question/14191443?referrer=searchResults
explain, in general terms, how the discipline of records management development
Explanation:
Records management is the systematic process of creating, organizing, maintaining, accessing, and disposing of records in order to meet the needs of an organization. Records management development involves the continuous improvement of this process to ensure that records are managed effectively and efficiently.
The discipline of records management has evolved over time in response to changes in technology, legislation, and business practices. It began with the simple storage and retrieval of physical records, but has since expanded to include electronic records management, which presents new challenges related to storage, security, and accessibility.
Records management development involves the creation and implementation of policies, procedures, and guidelines for managing records throughout their lifecycle, from creation to disposition. This includes establishing standards for recordkeeping, defining roles and responsibilities, and providing training and support to staff.
Records management development also involves the use of technology to automate and streamline recordkeeping processes. This includes the use of electronic document management systems, recordkeeping software, and other tools to manage and track records more efficiently.
leave a comment
Answer:
The discipline of records management development is the process of creating and maintaining an organized system for managing an organization's records. This includes setting up policies and procedures for how records are stored, maintained, and accessed. It also involves developing the technology and tools necessary to manage records efficiently and securely. This may include creating a records management system, setting up an electronic document management system, and developing processes for storage and retrieval of records. Records management development may also include training staff on how to use the tools and procedures, as well as integrating records management into the overall business processes of the organization.
In sql you use keywords to construct statements which are also known as . question 5 options: determinants solutions queries expressions
In sql you use keywords to construct statements which are also known as Queries, according to the question.
What do you mean by Queries?
A query is a question or a request for information that is used while searching a database or other source of information. Queries are typically made using a specialized language designed to extract specific data from the database. This language can be used to quickly and efficiently search through enormous volumes of data, and it typically takes inspiration from SQL. Queries can generate reports from data stored in a database or search for specific records, such as those associated with a certain client. Using queries, data can also be added to or removed from a database.
Therefore, in sql you use keywords to construct statements which are also known as Queries.
To learn more about Queries, visit:
brainly.com/question/25266787
#SPJ4
Remember to save _____ and be certain that you have your files saved before closing out.
Think up and write down a small number of queries for a web search engine.
Make sure that the queries vary in length (i.e., they are not all one word). Try
to specify exactly what information you are looking for in some of the queries.
Run these queries on two commercial web search engines and compare the top
10 results for each query by doing relevance judgments. Write a report that answers at least the following questions: What is the precision of the results? What
is the overlap between the results for the two search engines? Is one search engine
clearly better than the other? If so, by how much? How do short queries perform
compared to long queries?
how you plan to deal with stress?
Parallel Computing and Distributed Computing
Sequential computing has been great, but computer scientists need every speed and storage advantage they can get. Clever computer scientists have found even more efficient ways to use computer hardware for certain types of problems.
parallel Computing
Parallel computing is the use of a computer that performs multiple instructions at the same time. The programs used for parallel computing must be designed so they can be broken down into smaller independent parts that each processor can work on.
Parallel computing uses multiple computing cores. A computing core is one processor in the CPU. Parallel computers will have many different processors in their CPUs instead of just one.
Speedup in Parallel Computing
The advantage of a parallel computing solution over a sequential computing solution can be measured in speedup. Speedup is the amount of time used to perform a task with sequential computation divided by the amount of time used to perform the same task with parallel computation.
For example, imagine that you run a program on a sequential computer and it takes 10 minutes to complete. Next, you run the same program on a parallel computer and it takes 5 minutes to complete. You would divide the 10 by the 5 and come up with a speedup of 2. This means your program is two times faster on a parallel computer.
Distributed Computing
Many computer problems are so complex that they take an extremely long time to run on one computer. Distributed computing is the use of multiple computers to solve a problem. Distributed computing is like parallel computing but with many different computers; parallel computing is the use of one computer with many different processors.
QUESTION:
A program takes 10 minutes to compute sequentially and has a speedup of 2 on a parallel computer, meaning it takes how many minutes. ??
Answer:
5 minutes
Explanation:
It is there in the section on Speedup in Parallel Computing
For example, imagine that you run a program on a sequential computer and it takes 10 minutes to complete. Next, you run the same program on a parallel computer and it takes 5 minutes to complete. You would divide the 10 by the 5 and come up with a speedup of 2
HELP ASAPPPP PLSSSSS!!!!!! The purpose of capillary tubes is to:
permit oxygen and nutrients to be absorbed by cells
allow blood to complete a path between arteries and veins
reverse the flow of blood
provide a means for cell wastes to enter the blood stream
Answer:
Permit oxygen and nutrients to be absorbed by cells
Explanation:
Because ,the capillaries arw the smallest of the blood vessels they act as a bridge between the two main..vessels
The slope and intercept pair you found in Question 1.15 should be very similar to the values that you found in Question 1.7. Why were we able to minimize RMSE to find the same slope and intercept from the previous formulas? Write your answer here, replacing this text.
In 2019, the tuition for a full time student is $7,180 per semester. The tuition will be going up for the next 7 years at a rate of 3.5% per year. Write your program using a loop that displays the projected semester tuition for the next 7 years. You may NOT hard code each years tuition into your program. Your program should calculate the tuition for each year given the starting tuition in 2019 ($7, 180) and the rate of increase (3.5%). You should then display the actual year (2020, 2021, through 2026) and the tuition amount per semester for that year
Answer:
In Python:
tuition = 7180
year = 2019
rate = 0.035
for i in range(2019,2027):
print(str(year)+": "+str(round(tuition,2)))
tuition = tuition * (1 + rate)
year = year + 1
Explanation:
This initializes the tuition to 7180
tuition = 7180
This initializes the year to 2019
year = 2019
This initializes the rate to 3.5%
rate = 0.035
This iterates through years 2019 to 2026
for i in range(2019,2027):
This prints the year and tuition
print(str(year)+": "+str(round(tuition,2)))
This calculates the tuition
tuition = tuition * (1 + rate)
This increments year by 1
year = year + 1
Drag each label to the correct location on the table.
Match the correct features to virtualization and cloud computing.
allows multiple operating systems
to run on a single machine
consolidates hardware devices into
a physical server
allows users to access data from anywhere
includes services such as platform
as a service and desktop as a service
uses a hypervisor that can be type 1 or type 2
allows users to run software applications
on web browsers without installing
the application locally
Match the correct features to virtualization and cloud computing is allows multiple operating systems to consolidates hardware and uses a hypervisor to allows users to access
Divide the statement in virtualization and cloud computing ?
sing virtualization, different operating systems can operate on a single machine using a type 1 or type 2 hypervisor.
Users can access data from anywhere using cloud computing, which combines hardware devices into a physical server and offers services like platform as a service and desktop as a service. Users can execute software applications on web browsers without having to install them locally.
Know more about virtualization Visit:
brainly.com/question/31037702
#SPJ1
How does the CPU interface with the device to coordinate the transfer?
Explanation:
The CPU can initiate a DMA (Direct Memory Access) operation by writing values into special registers that can be independently accessed by the device, The device initiates the corresponding operation once it receives a command from the CPU.
The direct approach for bad news messages is best used when the message is complex
Question 6 options:
True
False
The direct approach for bad news messages is not typically best used when the message is complex. The direct approach is characterized by delivering the bad news straightforwardly and without extensive elaboration. It is more suitable for messages that are simple and do not require much explanation or justification.justification.So , the right answer is 'false'.
When the message is complex, it is often beneficial to use the indirect approach.
This approach involves providing context, explaining the reasons behind the decision, and presenting the bad news in a more cushioned manner. It allows the recipient to better understand the situation and rationale behind the decision, minimizing potential negative reactions.Using the indirect approach for complex messages allows for a more nuanced communication style, giving the recipient the opportunity to process the information and potentially seek further clarification. It helps maintain a positive relationship between the sender and recipient, as it demonstrates empathy and understanding of the recipient's perspective.The right answer For 'false'
For more such question on Bad news messages
https://brainly.com/question/15110535
#SPJ8
What do organizations need to implement to ensure their data is trustworthy and reliable?
A lot of organizations need to implement to ensure their data is trustworthy and reliable though the use of Multi-party computing(MPC) and blockchain.
How do you ensure that data is trustworthy and reliable?The methods that a person can use to Achieve Trustworthy Data are:
Delete Software Disparity and as such, Businesses will be said to have a lot of software systems in place to handle a lot of different processes. Improve on the User Training and Understanding. Do use and Implement Quality Business Intelligence Tools.Therefore, A lot of organizations need to implement to ensure their data is trustworthy and reliable though the use of Multi-party computing(MPC) and blockchain.
Learn more about data from
https://brainly.com/question/20263094
#SPJ1
Imagine yourself in the middle of Manhattan, where the streets are perpendicular on avenues. You are in a grid of streets, somewhat lost, and you randomly pick one of four directions and walk to the next intersection. Not knowing where you really want to go, you again randomly pick one of the four directions, and so on. After repeating the same movement for a number of times, you may want to know how far you got from the original point.
To know the total distance that we have moved, we must add the partial distances that we have traveled from the initial point.
What is the distance?Distance is a term that refers to the length between two points expressed numerically. According to this definition, if we want to know the distance between our point of origin and the final point, we must know the length of the streets that we have traveled.
According to the above, to know the total distance we have traveled, we could calculate approximately how long each of the streets we traveled and add them to obtain the total distance.
Learn more about distance in: https://brainly.com/question/989117
How can we work together to fix problems with our websites?
i think this is or what hihi
Explanation:
The value proposition, or mission statement, tells the visitor what you do and why you do it.
Put your value proposition on your home page, in your headline if possible. Add it to your blog or about page. Let the visitors know exactly what they will be getting if they hire you, buy your product, subscribe to your newsletter or read your blog.
1)
Set numMatches to the number of elements in userValues (having NUM_VALS elements) that equal matchValue. Ex: If matchValue = 2 and userVals = {2, 2, 1, 2}, then numMatches = 3.
#include
int main(void) {
const int NUM_VALS = 4;
int userValues[NUM_VALS];
int i = 0;
int matchValue = 0;
int numMatches = -99; // Set numMatches to 0 before your for loop
userValues[0] = 2;
userValues[1] = 2;
userValues[2] = 1;
userValues[3] = 2;
matchValue = 2;
/* Your solution goes here */
printf("matchValue: %d, numMatches: %d\n", matchValue, numMatches);
return 0;
}
2)Write a for loop to populate array userGuesses with NUM_GUESSES integers. Read integers using scanf. Ex: If NUM_GUESSES is 3 and user enters 9 5 2, then userGuesses is {9, 5, 2}.
#include
int main(void) {
const int NUM_GUESSES = 3;
int userGuesses[NUM_GUESSES];
int i = 0;
/* Your solution goes here */
return 0;
}
3)Array testGrades contains NUM_VALS test scores. Write a for loop that sets sumExtra to the total extra credit received. Full credit is 100, so anything over 100 is extra credit. Ex: If testGrades = {101, 83, 107, 90}, then sumExtra = 8, because 1 + 0 + 7 + 0 is 8.
#include
int main(void) {
const int NUM_VALS = 4;
int testGrades[NUM_VALS];
int i = 0;
int sumExtra = -9999; // Initialize to 0 before your for loop
testGrades[0] = 101;
testGrades[1] = 83;
testGrades[2] = 107;
testGrades[3] = 90;
/* Your solution goes here */
printf("sumExtra: %d\n", sumExtra);
return 0;
}
4)Write a for loop to print all NUM_VALS elements of array hourlyTemp. Separate elements with a comma and space. Ex: If hourlyTemp = {90, 92, 94, 95}, print:
90, 92, 94, 95
Note that the last element is not followed by a comma, space, or newline.
#include
int main(void) {
const int NUM_VALS = 4;
int hourlyTemp[NUM_VALS];
int i = 0;
hourlyTemp[0] = 90;
hourlyTemp[1] = 92;
hourlyTemp[2] = 94;
hourlyTemp[3] = 95;
/* Your solution goes here */
printf("\n");
return 0;
}
Answer:
1)
for(i = 0; i < NUM_VALS; ++i) {
if(userValues[i] == matchValue) {
numMatches++; } }
2)
for (i = 0; i < NUM_GUESSES; i++) {
scanf("%d", &userGuesses[i]); }
for (i = 0; i < NUM_GUESSES; ++i) {
printf("%d ", userGuesses[i]); }
3)
sumExtra = 0;
for (i = 0; i < NUM_VALS; ++i){
if (testGrades[i] > 100){
sumExtra = testGrades[i] - 100 + sumExtra; } }
4)
for (i = 0; i < NUM_VALS; ++i) {
if (i<(NUM_VALS-1))
printf( "%d,", hourlyTemp[i]);
else
printf("%d",hourlyTemp[i]); }
Explanation:
1) This loop works as follows:
1st iteration:
i = 0
As i= 0 and NUM_VALS = 4 This means for condition i<NUM_VALS is true so the body of loop executes
if(userValues[i] == matchValue) condition checks if element at i-th index position of userValues[] array is equal to the value of matchValue variable. As matchValue = 2 and i = 0 So the statement becomes:
userValues[0] == 2
2 == 2
As the value at 0th index (1st element) of userValues is 2 so the above condition is true and the value of numMatches is incremented to 1. So numMatches = 1
Now value of i is incremented to 1 so i=1
2nd iteration:
i = 1
As i= 1 and NUM_VALS = 4 This means for condition i<NUM_VALS is true so the body of loop executes
if(userValues[i] == matchValue) condition checks if element at i-th index position of userValues[] array is equal to the value of matchValue variable. As matchValue = 2 and i = 1 So the statement becomes:
userValues[1] == 2
2 == 2
As the value at 1st index (2nd element) of userValues is 2 so the above condition is true and the value of numMatches is incremented to 1. So numMatches = 2
Now value of i is incremented to 1 so i=2
The same procedure continues at each iteration.
The last iteration is shown below:
5th iteration:
i = 4
As i= 4 and NUM_VALS = 4 This means for condition i<NUM_VALS is false so the loop breaks
Next the statement: printf("matchValue: %d, numMatches: %d\n", matchValue, numMatches); executes which displays the value of
numMatches = 3
2)
The first loop works as follows:
At first iteration:
i = 0
i<NUM_GUESSES is true as NUM_GUESSES = 3 and i= 0 so 0<3
So the body of loop executes which reads the element at ith index (0-th) index i.e. 1st element of userGuesses array. Then value of i is incremented to i and i = 1.
At each iteration each element at i-th index is read using scanf such as element at userGuesses[0], userGuesses[1], userGuesses[2]. The loop stops at i=4 as i<NUM_GUESSES evaluates to false.
The second loop works as follows:
At first iteration:
i = 0
i<NUM_GUESSES is true as NUM_GUESSES = 3 and i= 0 so 0<3
So the body of loop executes which prints the element at ith index (0-th) index i.e. 1st element of userGuesses array. Then value of i is incremented to i and i = 1.
At each iteration, each element at i-th index is printed on output screen using printf such as element at userGuesses[0], userGuesses[1], userGuesses[2] is displayed. The loop stops at i=4 as i<NUM_GUESSES evaluates to false.
So if user enters enters 9 5 2, then the output is 9 5 2
3)
The loop works as follows:
At first iteration:
i=0
i<NUM_VALS is true as NUM_VALS = 4 so 0<4. Hence the loop body executes.
if (testGrades[i] > 100 checks if the element at i-th index of testGrades array is greater than 100. As i=0 so this statement becomes:
if (testGrades[0] > 100
As testGrades[0] = 101 so this condition evaluates to true as 101>100
So the statement sumExtra = testGrades[i] - 100 + sumExtra; executes which becomes:
sumExtra = testGrades[0] - 100 + sumExtra
As sumExtra = 0
testGrades[0] = 101
So
sumExtra = 101 - 100 + 0
sumExtra = 1
The same procedure is done at each iteration until the loop breaks. The output is:
sumExtra = 8
4)
The loop works as follows:
At first iteration
i=0
i < NUM_VALS is true as NUM_VALS = 4 so 0<4 Hence loop body executes.
if (i<(NUM_VALS-1)) checks if i is less than NUM_VALS-1 which is 4-1=3
It is also true as 0<3 Hence the statement in body of i executes
printf( "%d,", hourlyTemp[i]) statement prints the element at i-th index i.e. at 0-th index of hourlyTemp array with a comma (,) in the end. As hourlyTemp[0] = 90; So 90, is printed.
When the above IF condition evaluates to false i.e. when i = 3 then else part executes which prints the hourlyTemp[3] = 95 without comma.
Same procedure happens at each iteration unless value of i exceeds NUM_VAL.
The output is:
90, 92, 94, 95
The programs along with their output are attached.
"Write an SQL query that displays the Ssn and Last name of all employees who is a supervisor of a Department Manager"
Answer:
SELECT Ssn,
Last_name
FROM employees
WHERE position = supervisor;
Explanation:
SELECT is an SQL query statement that is used to initiate the display of wanted variables.
The names of the variables often succeed the SELECT statement and they are separated by commas.
FROM is an SQL query statement that indicates the table fro which the selected variables be displayed.
WHERE is used to filter your search and return only rows that meet the criteria.
; signifies the end of a query and calls for an execution.
Identify the symbol. please help!!
Explanation:
counter bore
Answer:
Diameter
Explanation:
On technical literature or drawings, it could be a symbol to mean diameter.
A (n) _______________ is a dot or other symbol positioned at the beginning of a paragraph
Question 2 options:
Bullet
Logo
Cell
Target
Answer:
Bullet
Explanation:
I've written a paragraph before. I should know!
Answer: bullet
A bullet is this:
These are placed at the beginning of paragraphs to jot/write down thinking.
So, the answer to this is bullet.
Hope this helps!
Samuel is designing a website. The website will display different types of radios that you can build on your own. The website will also explain how to assemble them from scratch. Which multimedia element should Samuel use to display live assemblin of the products parts?
1- video
2-animation
When do you use while loop instead of a for loop?
Group of answer choices
1: To loop exactly 10 times
2: To perform number calculations
3: To loop until a certain condition is reached
4: To make sure a correct number is entered
A while loop is used until a certain condition is reached unknown number of times.
Option 3
What is the difference between a while loop and a for loop?
Both the for loop and the while loop is used to execute the statements repeatedly while the program is running. The main distinction between the for loop and the while loop is that the for loop is used when the number of iterations is known, whereas the while loop executes until the statement in the program is proven incorrect.
Iteration refers to a single execution of the loop body. In the preceding example, the loop iterates three times.
If i++ were not present in the preceding example, the loop would (in theory) continue indefinitely. In practice, the browser provides methods to stop such loops, and we can kill the process in server-side JavaScript.
Any expression or variable, not just comparisons, can be used as a loop condition: while evaluating the condition and converting it to a boolean.
Hence to conclude use a while loop instead of a for loop, To loop until a certain condition is reached
To know more on loops follow this link
https://brainly.com/question/26098908
#SPJ1
The common field cricket chirps in direct proportion to the current temperature. Adding 40 to the number of times a cricket chirps in a minute, then dividing by 4, gives us the temperature (in Fahrenheit degrees). Write a program that accepts as input the number of cricket chirps in fifteen seconds, then outputs the current temperature.
Answer:
chirps = int(input("Enter the number of cricket chirps in fifteen seconds: "))
temperature = chirps + 40
print("The temperature is: " + str(temperature))
Explanation:
*The code is in Python.
Ask the user to enter the number of cricket chirps in fifteen seconds
Use the given formula to calculate the temperature (Note that since the user enters the number of cricket chirps in fifteen seconds, I did not divide the sum by 4)
Print the temperature
1.Start vim to create a new file named pizza. vim pizza 2.Type i (lowercase i for input to put vim in Input mode and enter the following text, pressing RETURN at the end of each line. Ignore typing mistakes you make for now. Press ESCAPE when you are done typing to put vim back in Command mode. Pizza is an oven-baked, flat, round bread typically topped with a tomato sauce, cheese and various toppings. Pizza was originally invented in Naples, Italy, and the dish has since become popular in many parts of the world. (from Wikipedia) I
Answer:
vi [ -| -s ] [-l] [-L] [-R] [ -r [ filename ] ] [-S] [-t tag] [-v] [-V]
[-x] [-w] [-n ] [-C] [+command | -c command ] filename
Explanation:
See attached image file