Explanation:
Data is processed into information. Information is not processed into data
write a loop that reads positive integers from stands input and that terinated when it reads an interger that is not positive after the loop termpinates
Loop takes only positive numbers and terminates once it encounters a negative numbers.
Answer and Explanation:
Using javascript:
Var positiveInt= window.prompt("insert positive integer");
While(positiveInt>=0){
Alert("a positive integer");
Var positiveInt= window.prompt("insert positive integer");
}
Or we use the do...while loop
Var positiveInt= window.prompt("insert positive integer");
do{
Var positiveInt= window.prompt("insert positive integer");
}
While (positiveInt>=0);
The above program in javascript checks to see if the input number is negative or positive using the while loop condition and keeps executing with each input until it gets a negative input
Name the processes that the information processing cycle consist of:
Answer:
Hello Dear!...Explanation:
The information-processing cycle consists of four basic operations: input, processing, output, and storage.
Hope that helps you Buddy..
Buhbye!
Take care!
Which statement is true?
1)A deque is a type of collection,
2)A collection is a type of deque.
3)A list is a type of deque.
4)A deque is a type of list.
Answer:
1. A deque is a type of collection.
Explanation:
The statement that is true is as follows:
A deque is a type of collection.Thus, the correct option for this question is A.
What is Deque?Deque may be defined as an ordered and systematic collection of items similar to the queue. It is also known as a double-ended queue. It consists of two ends, a front, and a rear, and the items remain positioned in the collection.
According to the context of this question, a deque is a kind of collection that holds data and information identical to a queue. From here, elements can be added to or eliminated from either the front or back very efficiently.
It is also often called a head-tail linked list. Though properly this signifies specific data with appropriate structure that has been the implementation of a deque.
Therefore, a deque is a type of collection that is a true statement. Thus, the correct option for this question is A.
To learn more about Deque, refer to the link:
https://brainly.com/question/16750037
#SPJ2
To rename a worksheet, you change the text on the ? HELP ASAP
A. Sheet Columns
B. Sheet Header
C. Sheet tab
How can an IS managers keep up with the endless demand for more software to support new information systems
An IS manager can keep up with the endless demand for more software to support new information systems by thinking outside the box.
To think outside the box, the IS manager should try the following strategies:
Use predetermined application components that are operating on low-code or no-code platforms.Use better software-testing practices and tools that spread programming into small sprints.Engage in shift-left testing, which enables software-testing to be done at every phase of the development process.Involve product managers and business users at the beginning of software development, making them to drive innovation that satisfies their requirements.Finally, the IS manager can utilize AI and Machine Learning to speed up the development of required software, thereby enhancing its qualities and capabilities with reduced time and costs.Thus, the IS manager must realize that there are always solutions to every software problem outside the mainstream box.
Learn more about information systems here: https://brainly.com/question/1521627
what is big data life cycle?
Explanation:
The data life cycle is the sequence of stages that a particular unit of data goes through from its initial generation or capture to its eventual archival and/or deletion at the end of its useful life. Although specifics vary, data management experts often identify six or more stages in the data life cycle.
PLEASE MARK ME AS BRAINLIST
What two terms are used for the methods that are used to observe or modify the state of an object, respectively
The two terms used for the method that is used to observe or modify the state of an object, are accessors, and mutators.
What are accessors, and mutators?Arrangements and mutators are both used in Java to find and set the value of private fields, respectively. Accessors and algoritmo are both referred to as getters and setters, respectively.
The verb "access," which enables the user to access the secret data in a class, serves as the inspiration for the name of the accessor function.
Accessors are the same as "winners," the "get" operation, and other similar terms. The private constants and variables are retrieved by the getters so that they can be used outside of a class.
To learn more about accessors and mutators,
https://brainly.com/question/13098886
#SPJ12
according to rutherford, anthropologists emphasize the importance of _________when they compare people from different backgrounds
According to Rutherford, anthropologists emphasize the importance of anthropologists when they compare people from different backgrounds.
What are Anthropologists and archeologists?Anthropologists and the archeologists have a look at the beginning, improvement, and behavior of people. Danilyn Rutherford use to test the cultures, and the languages, archeological remains, and physical trends of the humans in numerous factors of the sector.
Anthropologists have look at the human conduct, biology, cultures, and societies from historical instances thru the cutting-edge. Armed with this many anthropologists painted inside their personal societies, examining complicated troubles in economics, fitness, training, laws, and rules.
Therefore, According to Rutherford, anthropologists emphasize the importance of anthropologists when they compare people from different backgrounds.
Learn more about Rutherford on:
https://brainly.com/question/7151882
#SPJ1
Write a Python program to keep track of data for the following information in a medical clinic: doctors, patients, and patient_visits
Patients and Doctors have an ID, first name, and last name as common attributes. Doctors have these additional attributes: specialty (e.g. heart surgeon, ear-nose-throat specialist, or dermatologist), total hours worked, and hourly pay. Further, doctors keep track of the patient_visits. A patient_visit has the following attributes, number_of_visits to the clinic, the patient who is visiting, the doctor requested to be visited, and the number of hours needed for consultation. Based on the number of consultation hours, the doctor will get paid.
The following functions are required:
1. addVisit: this function adds a patient_visit to the doctor. A new visit will NOT be added if the doctor has already completed 40 hours or more of consultation. If this happens, an error is thrown mentioning that the doctor cannot have more visits this week.
2. calculatePay: this function calculates the payment for the doctor using the following logic: Each hour is worth AED 150 for the first two visits of the patient and all further visits are billed at AED 50.
3. calculateBill: this function calculates the bill for the patient, which displays the doctor's details, patient details, and payment details. An additional 5% of the total is added as VAT.
The student is required to identify classes, related attributes, and behaviors. Students are free to add as many attributes as required. The appropriate access modifiers (private, public, or protected) must be used while implementing class relationships. Proper documentation of code is mandatory. The student must also test the code, by creating at-least three objects. All classes must have a display function, and the program must have the functionality to print the current state of the objects.
A student made the following table describing matter and non-matter. Why is the table incorrect?
Light energy is a form of matter.
All matter takes up space.
Non-matter has a mass.
Rock is an example of non-matter.
(science btw)
Answer:
The table is incorrect because "All matter takes up space" because Matter = Mass
Explanation:
It is only likely for a guest to receive outstanding service at luxury brands. That's why Ritz-Carlton, Mandarin Oriental, Four Seasons, and others are the best at what they do.
Answer:
FALSE
Explanation:
Draw a simple calculator
I can help you program a simple calculator using Python.
Here's some sample code:# Define a function to perform addition
def add(num1, num2):
return num1 + num2
# Define a function to perform subtraction
def subtract(num1, num2):
return num1 - num2
# Define a function to perform multiplication
def multiply(num1, num2):
return num1 * num2
# Define a function to perform division
def divide(num1, num2):
return num1 / num2
# Ask the user to enter the numbers and the operation they want to perform
num1 = float(input("Enter the first number: "))
num2 = float(input("Enter the second number: "))
operation = input("Enter the operation (+, -, *, /): ")
# Perform the selected operation and display the result
if operation == '+':
result = add(num1, num2)
print(num1, "+", num2, "=", result)
elif operation == '-':
result = subtract(num1, num2)
print(num1, "-", num2, "=", result)
elif operation == '*':
result = multiply(num1, num2)
print(num1, "*", num2, "=", result)
elif operation == '/':
result = divide(num1, num2)
print(num1, "/", num2, "=", result)
else:
print("Invalid operation selected")
This program defines four functions to perform addition, subtraction, multiplication, and division.
It then asks the user to enter the two numbers they want to calculate and the operation they want to perform. Finally, it uses a series of if statements to perform the selected operation and display the result.
Note that this code assumes that the user will enter valid input (i.e., two numbers and one of the four valid operations). In a real-world application, you would want to include more error handling and validation to ensure that the program doesn't crash or produce unexpected results.
Read more about programs here:
https://brainly.com/question/26134656
#SPJ1
4.24 LAB: Exact change
Write a program with total change amount as an integer input, and output the change using the fewest coins, one coin type per line. The coin types are Dollars, Quarters, Dimes, Nickels, and Pennies. Use singular and plural coin names as appropriate, like 1 Penny vs. 2 Pennies.
Ex: If the input is:
0
or less than 0, the output is:
No change
Ex: If the input is:
45
the output is:
1 Quarter
2 Dimes
The Exact change program is an illustration of conditional statements;
Conditional statements are used to make decisions
The Exact change programThe Exact change program written in java programming language, where comments explain each action purposes
import java.util.*;
public class Money{
public static void main(String [] args){
Scanner input = new Scanner(System.in);
// Declare Variables
int amount, dollar, quarter, dime, nickel, penny;
// Prompt user for input
System.out.print("Amount: ");
amount = input.nextInt();
// Check if input is less than 1
if(amount<=0) {
System.out.print("No Change"); }
else {
// Convert amount to various coins
dollar = amount/100; amount = amount%100;
quarter = amount/25; amount = amount%25;
dime = amount/10; amount = amount%10;
nickel = amount/5; penny = amount%5;
// Print results
if(dollar>=1) {
if(dollar == 1) { System.out.print(dollar+" dollar\n");}
else { System.out.print(dollar+" dollars\n"); }
}
if(quarter>=1){
if(quarter== 1){System.out.print(quarter+" quarter\n");}
else{System.out.print(quarter+" quarters\n");}
}
if(dime>=1){
if(dime == 1){System.out.print(dime+" dime\n");}
else{System.out.print(dime+" dimes\n");} }
if(nickel>=1){
if(nickel == 1){System.out.print(nickel+" nickel\n");}
else{System.out.print(nickel+" nickels\n");}}
if(penny>=1){
if(penny == 1) {System.out.print(penny+" penny\n");}
else { System.out.print(penny+" pennies\n"); }}}}}
Read more about conditional statements at:
https://brainly.com/question/11073037
#SPJ1
which one is larger in size. a word document file or a pdf file?
Answer:
Pdf file is larger than document file
Explanation:
.
How is LUA different from Python?
Give an example.
This is the answer I couldn't write it here since brainly said it contained some bad word whatever.
Answer:
good old brainly think stuff is bad word even tho it is not had to use txt file since brainly think code or rblx is bad word
what is technology and it uses
Answer:
Technology is the application of knowledge for achieving practical goals in a reproducible way. The word technology can also mean the products resulting from such efforts, including both tangible tools such as utensils or machines, and intangible ones such as software.
uses
Communication
social media
health care
Answer:
We use technologies to exchange information, to clean our clothes, to prepare our meals and to get from one place to another. But even everyday items like door locks, floor panels and furniture are technologies that we now take for granted and that seem less impressive to us than self-driving cars or 3D printing. But technology doesn’t automatically have to be complicated. Simply put, we are always using technology when we use scientific knowledge to achieve a specific purpose, whether in industry or in our daily lives. From the discovery of the wheel to computers and from mp3 players to the latest technologies like self-driving cars, countless technological innovations have shaped daily life and will continue to influence it in the future.
You can write a function to find Fibonacci numbers using recursion.
How do you find the next number?
add five to the previous number
add one to the previous number
multiply the two previous numbers
add the two previous numbers
Answer:
Add the two previous numbers
Explanation:
A recursive definition of the Fibonacci sequence would look like this, in python:
def fibonacci(n)
if n <= 1:
return n
else:
return(fibonacci(n-1) + fibonacci(n-2))
which are the focus area of computer science and engineering essay. According to your own interest.
Answer:
Explanation:
While sharing much history and many areas of interest with computer science, computer engineering concentrates its effort on the ways in which computing ideas are mapped into working physical systems.Emerging equally from the disciplines of computer science and electrical engineering, computer engineering rests on the intellectual foundations of these disciplines, the basic physical sciences and mathematics
The are two schools of ____________ are Symmetry and Asymmetry.
The two schools of design that encompass symmetry and asymmetry are known as symmetrical design and asymmetrical design.
Symmetrical design is characterized by the balanced distribution of visual elements on either side of a central axis. It follows a mirror-like reflection, where the elements on one side are replicated on the other side, creating a sense of equilibrium and harmony.
Symmetrical designs often evoke a sense of formality, stability, and order.
On the other hand, asymmetrical design embraces a more dynamic and informal approach. It involves the intentional placement of visual elements in an unbalanced manner, without strict adherence to a central axis.
Asymmetrical designs strive for a sense of visual interest and tension through the careful juxtaposition of elements with varying sizes, shapes, colors, and textures.
They create a more energetic and vibrant visual experience.
Both symmetrical and asymmetrical design approaches have their merits and are employed in various contexts. Symmetry is often used in formal settings, such as architecture, classical art, and traditional graphic design, to convey a sense of elegance and tradition.
Asymmetry, on the other hand, is commonly found in contemporary design, modern art, and advertising, where it adds a sense of dynamism and creativity.
In conclusion, the schools of symmetry and asymmetry represent distinct design approaches, with symmetrical design emphasizing balance and order, while asymmetrical design embraces a more dynamic and unbalanced aesthetic.
For more such questions on symmetry,click on
https://brainly.com/question/31547649
#SPJ8
I need help finishing this coding section, I am lost on what I am being asked.
Answer:
when cmd is open tell me
Explanation:
use cmd for better explanatios
What enables image processing, speech recognition & complex gameplay in ai
Deep learning, a subset of artificial intelligence, enables image processing, speech recognition, and complex gameplay through its ability to learn and extract meaningful patterns from large amounts of data.
Image processing, speech recognition, and complex gameplay in AI are enabled by various underlying technologies and techniques.
Image Processing: Convolutional Neural Networks (CNNs) are commonly used in AI for image processing tasks. These networks are trained on vast amounts of labeled images, allowing them to learn features and patterns present in images and perform tasks like object detection, image classification, and image generation.Speech Recognition: Recurrent Neural Networks (RNNs) and their variants, such as Long Short-Term Memory (LSTM) networks, are often employed for speech recognition. These networks can process sequential data, making them suitable for converting audio signals into text by modeling the temporal dependencies in speech.Complex Gameplay: Reinforcement Learning (RL) algorithms, combined with deep neural networks, enable AI agents to learn and improve their gameplay in complex environments. Through trial and error, RL agents receive rewards or penalties based on their actions, allowing them to optimize strategies and achieve high levels of performance in games.By leveraging these technologies, AI systems can achieve impressive capabilities in image processing, speech recognition, and gameplay, enabling a wide range of applications across various domains.
For more such question on artificial intelligence
https://brainly.com/question/30073417
#SPJ8
MIS as a technology based solution must address all the requirements across any
structure of the organization. This means particularly there are information to be
shared along the organization. In connection to this, a student has complained to MIS
grade recently submitted that he does not deserve C+. following the complaint, the
instructor checked his record and found out that the student’s grade is B+, based on
the request the Department Chair also checked the record in his office and found out
the same as the Instructor. Finally, the record in the registrar office consulted and the
grade found to be B+. Therefore, the problem is created during the data entry of
grades of students to the registrar system. Based on the explanations provided,
which of information characteristics can be identified?
The information characteristic that can be identified based on the explanations provided is accuracy. Accuracy is one of the main characteristics of good quality data, and it refers to the extent to which data is correct and free from error. In the scenario provided, the problem was caused during the data entry of grades of students into the registrar system. The student's grade was entered as C+ instead of B+ which was the correct grade.
The use of Management Information Systems (MIS) as a technology-based solution can help ensure accuracy in data entry and other information processing activities across an organization's structure. It does this by providing the necessary tools, processes, and procedures for collecting, processing, storing, and sharing data and information across various departments and units of the organization.
MIS helps to ensure that data is accurate, timely, relevant, complete, and consistent by providing a framework for the organization to collect, process, and store data in a manner that meets specific organizational requirements. Therefore, accuracy is an important information characteristic that must be maintained in any organization that relies on MIS for data processing and sharing.
For more such questions on Accuracy, click on:
https://brainly.com/question/14523612
#SPJ8
Example of mediated communication and social media
Answer: mediated communication: instant messages
social media: social platforms
Explanation:
Stanley is interested in crowdfunding his latest game project. What is the first step he will take in order to use crowdfunding as a way to fund his project?
Question 5 options:
He will share his game concept on a crowdsourcing website with a one-sentence pitch.
He will share his game concept on a crowdsourcing website with a lengthy document describing every aspect of his game concept.
He will share his game concept on a crowdsourcing website with mouth-watering concept art and demo videos.
He will share his game concept on a crowdsourcing website by hiring several professional writers to draft up a short e-book.
Answer: He will share his game concept on a crowdsourcing website with mouth-watering concept art and demo videos.
DOES THE GATEWAY NE56R41u have touch screen capabilities?
A.) Yes it does
B.) No it doesn't
Answer:
thats a good question
Explanation:
thats a good one
what is flow chart for which purpose flowchart is use in programmimg
A flowchart is a visual representation of a process or algorithm. It uses symbols and arrows to show the steps and the flow of the process. In programming, flowcharts are often used to design and document the logic of a program before it is written in code. They can help programmers visualize the structure of the program and identify potential problems or inefficiencies. Flowcharts can also be useful for explaining the logic of a program to others who may not be familiar with the code..
There is a surplus of scientific researchers for a vaccine. This means the demand for this career has
decreased
decreased then increased
increased
stayed the same
Discuss the term internal control
Answer:
Internal controls are procedural measures an organization adopts to protect its assets and property. Broadly defined, these measures include physical security barriers, access restriction, locks and surveillance equipment. They are more often regarded as procedures and policies that protect accounting data.
PLEASE MARK ME BRAINLIESTwhat connect webpages?
Answer:
"Hypertext links are those words that take you from one web page to another when you click them with your mouse. Although the same HTML tag you study in this hour is also used to make graphical images into clickable links, graphical links aren't explicitly discussed here" I got this from https://www.informit.com/articles/article.aspx?p=440289 sorry I couldnt take the time myself here to help :(
Explanation:
Which of these options is an example of a nested structure?A.
for loop
B.
while loop
C.
if-then-else loop
D.
if else inside a for loop
Answer:
D. if else inside a for loop
Explanation: