Answer:System Software
Explanation:
3-D animation software is for 3d animation
Sampling software is for audio
Computer aided design is an artistic media
A video game developer is is a software developer and is specialized in video game development. It relates to the creation of video games. The video game publisher have maintained a studio. And it involves 3rd party developer.
For making the games he needs 3D animated software such as shade 3D or K-3D. In order to make the game he needs to have all automation software that provides him the visual effects.Hence the option C is correct.
Learn more about the aspiring video game developer.
brainly.com/question/21539732.
3.5 code practice question 1
Answer:
what is this a question or just saying something?
Explanation:
Answer:
uh what?
Explanation:
list area where ICT tools can be integrated
Answer:
In surgical labs
In Aviation control centres
In secretarial sects of organizations
Chang investigates ways to improve the interactivity of computer hardware. His job title is best described as ✓ Computer and Information Research Scientist. Shay writes programs to make operating systems easier for people to use. Her job title is best described as ✓ Software Developer, Systems Software.
Dayna writes code for computer programs that allow people to communicate with each other. Her job title is best described as ✓ Software Developer, Applications
Answer:
B, D, C
Explanation:
got it right
Answer:
b d c
Explanation:
1.
Question 1
An online gardening magazine wants to understand why its subscriber numbers have been increasing. What kind of reports can a data analyst provide to help answer that question? Select all that apply.
1 point
Reports that examine how a recent 50%-off sale affected the number of subscription purchases
Reports that describe how many customers shared positive comments about the gardening magazine on social media in the past year
Reports that compare past weather patterns to the number of people asking gardening questions to their social media
Reports that predict the success of sales leads to secure future subscribers
2.
Question 2
Fill in the blank: A doctor’s office has discovered that patients are waiting 20 minutes longer for their appointments than in past years. To help solve this problem, a data analyst could investigate how many nurses are on staff at a given time compared to the number of _____.
1 point
doctors on staff at the same time
negative comments about the wait times on social media
patients with appointments
doctors seeing new patients
3.
Question 3
Fill in the blank: In data analytics, a question is _____.
1 point
a subject to analyze
an obstacle or complication that needs to be worked out
a way to discover information
a topic to investigate
4.
Question 4
When working for a restaurant, a data analyst is asked to examine and report on the daily sales data from year to year to help with making more efficient staffing decisions. What is this an example of?
1 point
An issue
A business task
A breakthrough
A solution
5.
Question 5
What is the process of using facts to guide business strategy?
1 point
Data-driven decision-making
Data visualization
Data ethics
Data programming
6.
Question 6
At what point in the data analysis process should a data analyst consider fairness?
1 point
When conclusions are presented
When data collection begins
When data is being organized for reporting
When decisions are made based on the conclusions
7.
Question 7
Fill in the blank: _____ in data analytics is when the data analysis process does not create or reinforce bias.
1 point
Transparency
Consideration
Predictability
Fairness
8.
Question 8
A gym wants to start offering exercise classes. A data analyst plans to survey 10 people to determine which classes would be most popular. To ensure the data collected is fair, what steps should they take? Select all that apply.
1 point
Ensure participants represent a variety of profiles and backgrounds.
Survey only people who don’t currently go to the gym.
Collect data anonymously.
Increase the number of participants.
The correct options are:
Reports that examine how a recent 50%-off sale affected the number of subscription purchasespatients with appointmentsa way to discover informationA business taskData-driven decision-makingWhen conclusions are presentedFairnessa. Ensure participants represent a variety of profiles and backgrounds.c. Collect data anonymously.d. Increase the number of participants.What is the sentences about?This report looks at how many people bought subscriptions during a recent sale where everything was half price. This will show if the sale made more people subscribe and if it helped increase the number of subscribers.
The report can count how many nice comments people said and show if subscribers are happy and interested. This can help see if telling friends about the company has made more people become subscribers.
Learn more about gardening from
https://brainly.com/question/29001606
#SPJ1
Reports, investigating, fairness, data-driven decision-making, gym classes
Explanation:Question 1:A data analyst can provide the following reports to help understand why the subscriber numbers of an online gardening magazine have been increasing:
Reports that examine how a recent 50%-off sale affected the number of subscription purchasesReports that describe how many customers shared positive comments about the gardening magazine on social media in the past yearReports that compare past weather patterns to the number of people asking gardening questions on their social mediaReports that predict the success of sales leads to secure future subscribersQuestion 2:A data analyst could investigate the number of patients with appointments compared to the number of doctors on staff at a given time to help solve the problem of longer waiting times at a doctor's office.
Question 3:In data analytics, a question is a topic to investigate.
Question 4:When a data analyst is asked to examine and report on the daily sales data from year to year to help with making more efficient staffing decisions for a restaurant, it is an example of a business task.
Question 5:The process of using facts to guide business strategy is called data-driven decision-making.
Question 6:A data analyst should consider fairness when conclusions are being presented during the data analysis process.
Question 7:Transparency in data analytics is when the data analysis process does not create or reinforce bias.
Question 8:To ensure the collected data is fair when surveying 10 people to determine popular classes for a gym, a data analyst should: ensure participants represent a variety of profiles and backgrounds, collect data anonymously, and increase the number of participants.
Learn more about Data analysis here:https://brainly.com/question/33332656
Which of the following is a reasonable capacity for a modern thumb drive? 10MB, 80Mb, 128GB, 8000Tb. Do an Internet search and think carefully about what these values mean. To get any credit you must provide a reason for your answer.
Answer:The reasonable capacity for a modern thumb drive is 128 GB.
Explanation:
A group of 8 bits of information produces a ____.
Answer: Byte
Explanation: Eight bits constitute a byte.
Python
A video club wants to reward its best members with a discount based on the member’s number of
movie rentals and the number of new members referred by the member. The discount is in percent
and is equal to the sum of the rentals and the referrals, but it cannot exceed 75 percent. Write a
program to calculate the value of the discount and display it in percent considering two digits after
the decimal point. Hint: use min() function.
Here is a sample run:
Enter the number of movie rentals: 56
Enter the number of members referred to the video club: 3
The discount is equal to: 59.00 %
Note 1: the code should display five spaces between the colon (:) and the first digit of the discount
(use formatted output tools).
Note 2: Do not use if-else statements.
Using the knowledge in computational language in python it is possible to write a code that calculate the value of the discount and display it in percent considering two digits after the decimal point.
Writting the code:The program will receive two inputs from the user, then it will generate two other numbers one is the sum of the inputs and the other is equal to 75, after that it will check if the sum of the inputs is greater than 75 and print the result to the user.
#Read movie rentals and movies which have been reffered
a=int(input("Enter the number of Movie rentals "))
b= int(input("Enter the number of Movie rentals reffered to video club"))
c=a+b
d=75
#check if Discount is gretarer than 75
if(c>=75):
print("The discount is equal to "+str(d )+ str("%"))
else:
print("The discount is equal to "+str(c)+ str("%" ))
See more about python at brainly.com/question/18502436
#SPJ1
When performing actions between your computer and one that is infected with a virus, which of the following offers No risk of your computer becoming infected?
A. Printing to the same printer as infected computer
B. Accepting email attachments sent from an infected computer
C. Sharing Word documents with an infected computer
D. Sharing removable disks with an infected computer
Answer:
d
Explanation:
The correct option is D: Sharing removable disks with an infected computer
Removable disks are disks that use to keep data as well transfer data or information from one computer to another computer.
With Removable disks a computer infected with a virus cannot infect another Computer as the what the user does is to simply insert the USB port of the Removable disks into the computer which inturn enable the transfer of data to the computer to take place .
Learn more about Removable disks here:
https://brainly.com/question/4327670
give me the answers to all the tasks
Assume you are using the text's array-based queue and have just instantiated a queue of capacity 10. You enqueue 5 elements and then deque elements. Which indices of the internal array elements hold the remaining elements? a) 0 to 2 b) 7 to 9 c) 2 to 4 d) 1 to 3
Full question:
Assume you are using the text's array-based queue and have just instantiated a queue of capacity 10. You enqueue 5 elements and then deque 2 elements. Which indices of the internal array elements hold the remaining elements? a) 0 to 2 b) 7 to 9 c) 2 to 4 d) 1 to 3
Answer and Explanation:
If you instantiate a capacity of 10 for the queue, you have the queue a capacity of not more than 10 values.
To enqueue means to add an element to the array(if it's not full, n<10)
To dequeue means to delete an element from the array or queue(if n! =0)
From the question, for example:
We create a queue of capacity 10:
Queue q(10);
We add elements/enqueue 5 elements to the queue :
q.queueEnqueue(10);
q.queueEnqueue(5);
q.queueEnqueue(8);
q.queueEnqueue(9);
q.queueEnqueue(2);
If we print this out:
q. queueDisplay()
We would get:
10, 5, 8, 9, 2
We remove elements/dequeue 2 elements from the queue :
q. queuedequeue();
q. queuedequeue();
We print it out:
q. queueDisplay()
8 ,9, 2
We observe that deletion/dequeue starts from the front/first index.
We are left with indices 2, 3, 4 or 2 to 4
Note: the above methods/ functions and objects used are merely for example purposes. The queue uses a floating front design approach.
Which feature is used to change the appearance of all slides of a presentation at one go? A. ruler B. Slide Master C. slide layout D. placeholder E. Slide Sorter
The feature that is used to change the appearance of all slides of a presentation in one go is called the "Slide Master" (Option B)
What is the slide master and why is it important?Slide Master is a function in Microsoft PowerPoint that allows you to build slide templates. Slide Master has the ability to store slide layouts, including the background, color, fonts, effects, placement, and so on.
With Slide Master, you can alter any of the formatting for your presentation at once and it will be applied to all slides instantaneously; for example, you may change the font of the title or text, the kind of bullets used, add an image to the backdrop, add an image to every slide, and so on.
Learn more about Slide Master:
https://brainly.com/question/8777080
#SPJ1
Which phrase in the job description indicates technical knowledge needed to be a web developer?
Web developers create and maintain websites for clients, as well as troubleshoot problems on the sites to fix them. They need to know basic programming and scripting languages to develop the websites. To create the sites, these professionals may use content creation and management tools. After creating the sites, developers test them before release and often afterword.
The phrase that indicates technical knowledge needed to be a web developer is "They need to know basic programming and scripting languages to develop the websites."
What does this suggest?This suggests that web developers should have a strong understanding of programming languages such as HTML, CSS, and JavaScript, which are essential to building websites.
The job description also mentions the use of content creation and management tools, indicating that familiarity with web development frameworks and software is also important for this role. Finally, the reference to testing and troubleshooting highlights the need for problem-solving skills and technical expertise in resolving issues that arise during the development process.
Read more about tech here:
https://brainly.com/question/7788080
#SPJ1
Responsible use of computer is known as ................. .
Answer:
This refers to the proper etiquettes and attitudinal posture to display while handling or using a computer system to ensure maximum performance, confidentiality and respect for other people's right.
Explanation:
numDistance is read from input as the size of the vector. Then, numDistance elements are read from input into the vector bikingNumbers. Use a loop to access each element in the vector and if the element is an odd number, output the element followed by a newline.
Ex: If the input is 4 128 173 129 47, then the output is:
173
129
47
The distance between and is the difference between the two numbers.
Thus, Since the distance is a positive quantity, we want to subtract a small number from a big number to get a positive result. However, sometimes we don't know which of the two numbers is bigger.
If the number line above wasn't given, we wouldn't know is greater than. To get a positive result every time, we take the absolute value of the difference.
The number line serves as the primary visual representation in statistics, it is common practice to compare two points on the number line and calculate their distance from one another.
Thus, The distance between and is the difference between the two numbers.
Learn more about Number distance, refer to the link:
https://brainly.com/question/19946572
#SPJ1
how did hitles rules in nazi germany exemplify totiltarian rule?
Answer:
hope this helps if not srry
You modified the GreenvilleRevenue program to include a number of methods. Now modify every data entry statement to use a TryParse() method to ensure that each piece of data is the correct type. Any invalid user entries should generate an appropriate message, and the user should be required to reenter the data.
using System;
using static System.Console;
class GreenvilleRevenue
{
static void Main(string[] args)
{
const int fee = 25;
int lastYearsContestants;
int thisYearsContestants;
const int LOW = 0;
const int HIGH = 30;
int other = 0;
int dancer = 0;
int musician = 0;
int singer = 0;
WriteLine("**********************************");
WriteLine("* The stars shine in Greenville. *");
WriteLine("**********************************");
WriteLine("");
lastYearsContestants = getContestantsNum(message, LOW, HIGH);
string[] contestant = new string[thisYearsContestants];
string[] talent = new string[thisYearsContestants];
getContestantsInfo(contestant, talent);
for (int x = 0; x < talent.Length; ++x)
{
if (talent[x] == "O")
{
++other;
}
else if (talent[x] == "S")
{
++singer;
}
else if (talent[x] == "D")
{
++dancer;
}
else if (talent[x] == "M")
{
++musician;
}
}
Clear();
WriteLine("Currently signed up, there are..");
WriteLine("{0} dancers", dancer);
WriteLine("{0} singers", singer);
WriteLine("{0} musicians", musician);
WriteLine("{0} everything else!", other);
contestantByTalent(contestant, talent);
Clear();
contestantInfo(thisYearsContestants, lastYearsContestants, fee);
}
static int getContestantsNum(string message, int LOW, int HIGH)
{
WriteLine("Please enter the number of contestants for last year.>>");
string input = ReadLine();
int contestantsNum = Convert.ToInt32(input);
while (contestantsNum < LOW || contestantsNum > HIGH)
{
WriteLine("Valid numbers are 0 through 30, Please try again.>>");
contestantsNum = Convert.ToInt32(ReadLine());
}
return contestantsNum;
WriteLine("Please enter the number of contestants for this year.>>");
string input = ReadLine();
int contestantsNum = Convert.ToInt32(input);
while (contestantsNum < LOW || contestantsNum > HIGH)
{
WriteLine("Valid numbers are 0 through 30, Please try again.>>");
contestantsNum = Convert.ToInt32(ReadLine());
}
return contestantsNum;
}
static string getTalent(int contestantsNum)
{
bool correct = false;
string talentType = "";
while (!correct)
{
WriteLine("What is contestant " + contestantsNum + "'s skill? Please enter 'S' for Singer, 'D' for Dancer, 'M' for " +
"Musician, 'O' for Other.>>");
talentType = ReadLine().ToUpper();
if (talentType == "S" || talentType == "D" || talentType == "M" || talentType == "O")
{
correct = true;
}
else
{
WriteLine("Please enter a valid response.>>");
}
}
return talentType;
}
static void contestantByTalent(string[] contestant, string[] talent)
{
WriteLine ("To see a list of all contestants with a specific talent, Please enter a talent code.talent codes are(S)inger, (D)ancer, (M)usician, (O)ther; altenatively, you may type (E) to exit.>>");
string entry = ReadLine().ToUpper();
while (entry != "E")
{
if (entry != "S" && entry != "D" && entry != "M" && entry != "O")
{
WriteLine("That wasn't a valid talent code. Valid talent codes are (S)inger, (D)ancer, (M)usician, (O)ther; altenatively, you may type (E) to exit.>>");
entry = ReadLine().ToUpper();
if (entry == "E")
break;
}
for (int x = 0; x < talent.Length; ++x)
{
if (entry == talent[x])
WriteLine("Contestant " + contestant[x] + " talent " + talent[x]);
}
WriteLine("To see a list of all contestants with a specific talent, Please enter a talent code. talent codes are (S)inger, (D)ancer, (M)usician, (O)ther; altenatively, you may type (E) to exit.>>");
entry = ReadLine().ToUpper();
}
}
static void getContestantsInfo(string[] contestant, string[] talent)
{
for (int x = 0; x < contestant.Length; ++x)
{
WriteLine("What is the name for Contestant " + (x + 1) + "?");
contestant[x] = ReadLine();
talent[x] = getTalent(x + 1);
}
}
static void contestantInfo (int thisYearsContestants, int lastYearsContestants, int fee)
{
if (thisYearsContestants > lastYearsContestants * 2)
{
WriteLine("The competition is more than twice as big this year!");
WriteLine("The expected revenue for this year's competition is {0:C}", (thisYearsContestants * fee));
}
else
if (thisYearsContestants > lastYearsContestants && thisYearsContestants <= (lastYearsContestants * 2))
{
WriteLine("The competition is bigger than ever!");
WriteLine("The expected revenue for this year's competition is {0:C}", (thisYearsContestants * fee));
}
else
if (thisYearsContestants < lastYearsContestants)
{
WriteLine("A tighter race this year! Come out and cast your vote!");
WriteLine("The expected revenue for this year's competition is {0:C}.", (thisYearsContestants * fee));
}
}
}
Question 7 of 10
What is a network?
A. Many people or things that are individually connected to one
another
OB. The main idea or information contained in a media piece
OC. A means of mass communication in print and other forms
OD. A group of individuals who share the same ideas and values
SUBMIT
A group of individuals who share the same ideas and values is a network.
Thus, Two or more computers connected together to share resources (such printers and CDs), exchange files, or enable electronic communications make up a network.
A network's connections to its computers can be made by cables, phone lines, radio waves, satellites, or infrared laser beams.
A network that is contained inside a very limited region is known as a local area network (LAN). It is typically constrained to a certain location, such a writing lab, building, or school.
Servers and workstations are the two primary categories of computers that are networked. In most cases, servers are not directly used by people; instead, they run continually to offer "services" to the other computers on the network and their human users.
Thus, A group of individuals who share the same ideas and values is a network.
Learn more about Network, refer to the link:
https://brainly.com/question/29350844
#SPJ1
4.14 LAB: Countdown until matching digits In C++ Write a program that takes in an integer in the range 20-98 as input. The output is a countdown starting from the integer, and stopping when both output digits are identical. Ex: If the input is: 93 the output is: 93 92 91 90 89 88 Ex: If the input is: 77 the output is: 77 Ex: If the input is: 15 or any value not between 20 and 98 (inclusive), the output is: Input must be 20-98 For coding simplicity, follow each output number by a space, even the last one. Use a while loop. Compare the digits; do not write a large if-else for all possible same-digit numbers (11, 22, 33, …, 88), as that approach would be cumbersome for larger ranges.
Answer:
Here is the C++ program:
#include <iostream> // to use input output functions
using namespace std; // to identify objects like cin cout
int main() { //start of main function
int number; //an integer value
cout<<"Enter an integer: "; //prompts user to enter a number
cin >> number; // reads integer value from user
if (number > 98 || number < 20) { //if number is not between 20 and 98
cout<<"Input must be 20-98"; } //display this message if number is not between 20 and 98
else { // if number is in range 20-98
while(number%11){ // loop keeps taking mod of input number with 11 until matching digits found
cout<<number<<" "; //displays the numbers
number--; } // decrements the value of number by 1
cout<<number<<" "; } } // displays the matching digits
Explanation:
I will explain the program with an example:
Let suppose the number = 90
The if condition evaluate to false because 90 is in the range of 20-98 so the else part executes which has a while loop that works as following:
while(number % 11)
At first iteration:
This while(number % 11) is basically equivalent to :
while(number % 11 != 0)
while(90 % 11)
The % operator is the modulo operator which returns the remainder of the division. So when 90 is divided by 11 the remainder is 2. This is not equal to 0. So the statement under while condition executes:
cout<<number<<" "; This statement displays the number on output screen. Since number = 90 so 90 is printed. " " adds a space with the number
90
Next the value of number is decremented to 1 so number = 89
At second iteration:
while(number % 11) becomes:
while(89 % 11)
When 89 is divided by 11 the remainder is 1. This is not equal to 0. So the statement under while condition executes:
cout<<number<<" "; This statement displays the number on output screen. Since number = 89 so 89 is printed. " " adds a space with the number
90 89
Next the value of number is decremented to 1 so number = 88
At third iteration:
while(number % 11) becomes:
while(88 % 11)
When 89 is divided by 11 the remainder is 0. So the while loop breaks because the condition while(number % 11 != 0) evaluates to false. So the statement in while loop does not execute and program control moves to the following statement:
cout<<number<<" "; This statement displays that number whose digits match on the output screen with a space. So the output of the entire program is:
90 89 88
The program along with the output using example given in the question i.e. input is 93 is attached in a screenshot.
A language learning app does not provide users with the ability to save their progress manually, although it can be verified that progress is auto-saved. What is the severity of this bug?
If a language learning app does not provide users with the ability to save their progress manually, although it can be verified that progress is auto-saved, the severity of this bug will be: Minor.
What is a minor bug?A minor bug is one that affects the system in some way although it does not totally stop the system from functioning.
In the description above, the learning app does not provide an option for saving progress manually but it can be seen that the progress is automatically saved, this poses no real challenge so, the bug's severity is minor.
Learn more about computer bugs here:
https://brainly.com/question/14371767
#SPJ1
What is eight bits of data called?
8 bits: octet, commonly also called byte.
III. FILL-IN THE BLANK (five points each)
11. Open divided scales have scales going in
directions.
12. There are
groups of scales.
13. The open divided scales have an
unit preceding zero.
14. The triangular scale can have up to
different scales on one piece of plastic.
15. The mechanical inch is divided into
equal parts.
Which of the following are advantages of converting analog audio to digital audio? Choose all that apply
Reduction in editing time
Consistently accurate copies of audio recordings
Preservation
Susceptibility to computer viruses
Answer:
b and c
Explanation:
sorry if there wrong
Answer: A, B, and C
Explanation:
I need help solving this, please. (Do not know if this is allowed but I definitely need help.)
You work as an IT manager for Bower Industries, a Web hosting company that provides off-site Web hosting for online businesses. Your current service level agreement promises customers 24/7 server availability; however, in the unlikely event of a server outage, you need to gauge the economic impact.
Based on your current user base, you estimate a cost of $1,500 an hour in customer refunds if an outage were to occur.
Your assistant has attempted to create a one-variable data table to estimate further the economic impact of outages between one and five hours in length.
Unfortunately, the one-variable data table is not returning the correct results due to an error in the input values.
You will correct the error and add existing range names to the Total Cost for Outage formula.
Finally, you will create a custom number format for cell E3.
Open e06d1NetworkOutage and save it as e06d1NetworkOutage_LastFirst.
Delete the inaccurate values in the range E4:E12.
Apply the pre-existing range names to the worksheet.
Enter a reference to the Total Cost for Outage (cell B6) in cell E3.
Create a one-variable data table to detail the sensitivity of expense based on an outage range of one to five hours based on half-hour increments.
Add a Custom number format to cell E3 to display the word Cost.
Create a footer with your name, the sheet name code, and the file name code.
Save and close the file. Submit e06d1NetworkOutage_LastFirst.
Answer:
hi sorry, this is excel right?
Explanation:
what is the name of the program or service that lets you view e -mail messeges?
The program or service that allows you to view email messages is called an email client.
What is the name of the program?An email client is a software program or service that enables users to access, manage and view their email messages. It provides user-friendly interface for reading, composing and organizing emails.
Popular examples of email clients include Micro/soft Outlook, Gm/ail, Mo/zilla Thunderbird and Ap/ple Mail. These clients allow users to connect to their email accounts, retrieve messages from email servers and display them in an organized manner for easy viewing and interaction.
Read more about email client
brainly.com/question/24688558
#SPJ1
Here are some instructions in English. Translate each of them into the Simple Machine language.
a. LOAD register 3 with the hex value 56.
b. ROTATE register 5 three bits to the right.
c. JUMP to the instruction at location F3 if the contents of register 7 are equal to the contents of register 0.
d. AND the contents of register A with the contents of register 5 and leave the result in register 0.
Answer:
a. LOAD register 3 with the hex value 56
2356
b. ROTATE register 5 three bits to the right.
A503
c. JUMP to the instruction at location F3 if the contents of register 7 are equal to the contents of register 0
B7F3
d. AND the contents of register A with the contents of register 5 and leave the result in register 0
80A5
Explanation:
To translate the English instructions to Machine language we have to consider Appendix C of A Simple Machine Language sheet.
a. LOAD register 3 with the hex value 56
The OP code for LOAD is:
2
Operand is:
RXY
Description is:
LOAD the register R with the bit pattern XY.
In a.
3 represents R
56 represents XY
Now following this we can join OP and Operand together to translate a.
2356
b. ROTATE register 5 three bits to the right
The OP code for ROTATE is:
A
Operand is:
R0X
Description is:
ROTATE the bit pattern in register R one bit to the right X times. Each time place the bit that started at the low-order end at the high-order end
In b.
5 represents R
three represents X
Now following this we can join OP and Operand together to translate b.
A503
c. JUMP to the instruction at location F3 if the contents of register 7 are equal to the contents of register 0.
The OP code for JUMP is:
B
Operand is:
RXY
Description is:
JUMP to the instruction located in the memory cell at address XY if the bit pattern in register R is equal to the bit pattern in register number 0.
In c.
7 represents R register
F3 represents XY
Now following this we can join OP and Operand together to translate c.
B7F3
d. AND the contents of register A with the contents of register 5 and leave the result in register 0.
The OP code for AND is:
8
Operand is:
RST
Description is:
AND the bit patterns in registers S and T and place the result in register R
In d.
A represents register S
5 represents register T
0 represents register R
Now following this we can join OP and Operand together to translate d.
80A5
fast guys can u tell its answer
find the count of value from cells a5 through e12
Answer:
See the bottom status bar of excel, it will show the average, count and sum of values in the selection.
In the following code, which conditions will lead to the booleans continue and needFill to both be true?
halfFull = (currentTank > fullTank * .5);
full = (currentTank == fullTank);
empty = (currentTank == 0);
almostEmpty = (currentTank < fullTank * .25)
if (full || halfFull) {
continue= true;
needFill = false;
}
else if (almostEmpty && !Empty ) {
continue = true;
needFill = true;
}
else {
continue = false;
needfill = true;
}
a. almostEmpty == true && empty == false
b. full == true || halfFull == true
c. almostEmpty == true || empty == false
d. almostEmpty == true && halfFull == true
Some operators can only be used on objects, some only on boolean values, and some only on primitive numbers.
It is critical that you pay attention to the mismatch between an operator and its operand(s), as this problem will probably show up in a few exam problems .Possess the ability to write Java-based programming. Several different operator symbols were explored in this chapter. So that you are comfortable with them throughout the remainder of the book, go back and reread them multiple times . Recognize the operators that correspond to the various data kinds. . Know the order of operators in Java. The majority of Java operators you'll use are binary, however there are frequently more than two expressions.
Learn more about boolean here:
https://brainly.com/question/29846003
#SPJ4
100 point question, with Brainliest and ratings promised if a correct answer is recieved.
Irrelevant answers will be blocked, reported, deleted and points extracted.
I have an Ipad Mini 4, and a friend of mine recently changed its' password ( they knew what the old password was ). Today, when I tried to login to it, my friend claimed they forgot the password but they could remember a few distinct details :
- It had the numbers 2,6,9,8,4, and 2 ( not all of them, but these are the only possible numbers used )
- It's a six digit password
- It definitely isn't 269842
- It definitely has a double 6 or a double 9
I have already tried 26642 and 29942 and my Ipad is currently locked. I cannot guarantee a recent backup, so I cannot reset it as I have very important files on it and lots of memories. It was purchased for me by someone very dear to me. My question is, what are the password combinations?
I have already asked this before and recieved combinations, however none of them have been correct so far.
Help is very much appreciated. Thank you for your time!
Based on the information provided, we can start generating possible six-digit password combinations by considering the following:
The password contains one or more of the numbers 2, 6, 9, 8, and 4.
The password has a double 6 or a double 9.
The password does not include 269842.
One approach to generating the password combinations is to create a list of all possible combinations of the five relevant numbers and then add the double 6 and double 9 combinations to the list. Then, we can eliminate any combinations that include 269842.
Using this method, we can generate the following list of possible password combinations:
669846
969846
669842
969842
628496
928496
628492
928492
624896
924896
624892
924892
648296
948296
648292
948292
Note that this list includes all possible combinations of the relevant numbers with a double 6 or a double 9. However, it is still possible that the password is something completely different.
You need to export each layer of your document, including hidden layers, to a separate PNG-24 file with the prefix SKATE. Which menu option should you use? To answer, select to highlight the correct option in the answer area.
the Layers panel, then. Choose the layer groups, artboards, or layers that you want to save as picture assets. Right-click your chosen item and then choose Quick Export.
Which technique will enable you to export each layer as a PNG?To save certain layers in your document as a PNG, right-click on the layer and select "Quick Export as PNG" in Photoshop CC 2015 and later. By modifying the export file type that is used by default, you can also export as a JPG, GIF, or SVG.
The best way to export a layer to a PNG?the Layers panel, then. Choose the artboards, layers, or layer groups you want to save as picture assets. To quickly export your selection as a PNG, right-click it and choose the menu in context. Select a location for the export of the picture.
To know more about hidden layers visit;-
https://brainly.com/question/27725598
#SPJ1
The programmer wants to change this code so that a third background image appears when the player presses the “B” button. What does the programmer need to do?
Answer:
i think its B but im not sure
Explanation: