Answer:
Performance Testing
Explanation:
The Correct option is - Performance Testing
Reason -
INTEGRATION TESTING is a level of software testing where individual units / components are combined and tested as a group. The purpose of this level of testing is to expose faults in the interaction between integrated units.
PERFORMANCE TESTING is a testing measure that evaluates the speed, responsiveness and stability of a computer, network, software program or device under a workload.
UNIT TESTING is a type of software testing where individual units or components of a software are tested. The purpose is to validate that each unit of the software code performs as expected.
Acceptance testing, a testing technique performed to determine whether or not the software system has met the requirement specifications.
In Python, a function is _____.
a group of instructions that can be used to organize a program or perform a repeated task
a value that can be passed back to the calling part of a program
a formula that pairs each x-value with a unique y-value
a value that can be passed
Answer:
a group of instructions that can be used to organize a program or perform a repeated task
Explanation:
A function is a group of commands that can be called upon with extra parameters if needed.
Example:
def foo(): #defining this function and naming it foo
return True #what is performed when foo is called on
if foo() == True: #foo() is calling on a function named foo
print('yes')
how many colors are in microsoft word?
Answer:
4 Owo
Explanation:
XOXO
Kit
Describing the technologies used in diffrent generation of computer
Windows 98, Windows XP, Windows vista, Windows 7, Windows 8 y Windows 10.
Answer:
Evolution of Computer can be categorised into five generations. The First Generation of Computer (1945-1956 AD) used Vacuum Tubes, Second Generation of Computer (1956-1964 AD) used Transistors replacing Vacuum Tubes, Third Generation of Computer (1964-1971AD) used Integrated Circuit (IC) replacing Transistors in their electronic circuitry, Fourth Generation of Computer (1971-Present) used Very Large Scale Integration (VLSI) which is also known as microprocessor based technology and the Fifth Generation of Computer (Coming Generation) will incorporate Bio-Chip and Very Very Large Scale Integration (VVLSI) or Utra Large Scale Integration (ULSI) using Natural Language.
Explanation:
Fill in the blank with the correct response.
A company's virtual desktop is stored on a remote central service. This is known as desktop _____.
Answer:
Virtual Desktop
Explanation:
suggest me horror movies that r genuinely scary
Answer:
It depends on your power of resisting fears. everyone have their own tastes.
Explanation:
Answer:
The Exorcist (1973) (Photo by ©Warner Bros. ...
Hereditary (2018) (Photo by ©A24) ...
The Conjuring (2013) (Photo by Michael Tackett/©Warner Bros. ...
The Shining (1980) (Photo by ©Warner Brothers) ...
The Texas Chainsaw Massacre (1974) (Photo by Everett Collection) ...
The Ring (2002) ...
Halloween (1978) ...
Sinister (2012)
Please help
What are keywords?
Keywords are the words and phrases that people type into search engines to find what they're looking for.
6
Select the correct answer from each drop-down menu.
Which IF formulas are valid?
and
are valid IF formulas.
Reset
Next
Answer:
=IF(D3>50; E3; F3) and =IF(A1>60;"Pass";"Fail") are valid IF formulas.
Explanation:
P.S - The exact question is -
To find - Select the correct answer from each drop-down menu. Which IF formulas are valid? _____ and _____ are valid IF formulas.
FIRST BLANK
=IF(D3>50; E3; F3)
=IF(D3>50);( E3; F3)
=IF(10<5;23);("Incorrect")
SECOND BLANK
=IF(A1>60;"Pass";"Fail")
=IF(A1>60); ("Pass"; "Fail")
=IF(A1>60; ("Pass"; "Fail"))
Solution -
An IF structure is built following this pattern:
IF(TEST;IF TRUE;IF FALSE)
So,
The correct option is -
=IF(D3>50; E3; F3) and =IF(A1>60;"Pass";"Fail") are valid IF formulas.
Choose the words that make the following sentence true.
Primary memory is (not volatile, volatile) and (not permanent, permanent).
Answer:
Primary memory is volatile and not permanent.
Answer:
Primary memory refers to the memory that is accessed by the CPU and is not permanent.
It is volatile, since it is cleared out when the device is powered off.
Explanation:
Edge 2022
WILL GIVE BRAINLIEST
Give several reasons why Python is such a great programming language. Explain how Python is related to flowcharts.
Consider this program:
Cost1 = input("Please enter the first expense: ")
Cost2 = input("Please enter the second expense: ")
print("Your total for both expenses was", Cost1 + Cost2)
If the user inputs “10” for the first expense and “20” for the second expense, what will the interpreter show in the final line when this program is run? If this result in not what the programmer intended, how would you explain what went wrong?
You are writing a line of code that should ask the user to input the balance of their bank account in dollars and cents. The program will then perform a multiplication problem to tell the user how much interest they can earn. Identify three errors in your line of input code and explain why they are incorrect. Include the corrected line of code in your answer. Here is the code:
1num = input(What is your balance?)
What are some kinds of comments that might be useful for a programmer to include in a program?
If you were planning how to write a program, at what point would a flowchart be helpful? At what point would pseudocode be helpful? Explain your reasoning.
Answer:
G i v e s e v e r a l r e a s o n s w h y P y t h o n i s s u c h a gr e a t p r o g r a m m i n g l a n g u a g e. E x p l a i n h o w P y t h o n i s r e l a t e d t o f l o w c h a r t s.
P y t h o n i s s u c h a g r e a t p r o g r a m m i n g l a n g u a g e b e c a u s e i t i s s i m p l e, p o p u l a r, a n d p o w e r f u l e n o u g h t o c r e a t e s o m e a w e s o m e a p p s. P y t h o n i s r e l a t e d t o f l o w c h a r t s b e c a u s e F l o w c h a r t P y t h o n i s e s s e n t i a l l y t h e P y t h o n p r o g r a m m i n g l a n g u a g e i n v i s u a l f o r m.
C o n s i d e r t h i s p r o g r a m :
C o s t 1 = i n p u t ( " P l e a s e e n t e r t h e f i r s t e x p e n s e : " )
C o s t 2 = i n p u t ( " P l e a s e e n t e r t h e s e c o n d e x p e n se: ")
p r i n t ( " Y o u r t o t a l f o r b o t h e x p e n s e s w a s " , C o s t 1 + C o s t 2 )
I f t h e u s e r i n p u t s “ 1 0 ” f o r t h e f i r s t e x p e n s e a n d “ 2 0 ” f o r t h e s e c o n d e x p e n s e , w h a t w i l l t h e i n t e r p r e t e r s h o w i n t h e f i n a l l i n e w h e n t h i s p r o g r a m i s r u n ? I f t h i s r e s u l t i n n o t w h a t t h e p r o g r a m m e r i n t e n d e d , h o w w o u l d y o u e x p l a i n w h a t w e n t w r o n g ?
Y o u a r e w r i t i n g a l i n e o f c o d e t h a t s h o u l d a s k t h e u s e r t o i n p u t t h e b a l a n c e o f t h e i r b a n k a c c o u n t i n d o l l a r s a n d c e n t s . T h e p r o g r a m w i l l t h e n p e r f o r m a m u l t i p l i c a t i o n p r o b l e m t o t e l l t h e u s e r h o w m u c h i n t e r e s t t h e y c a n e a r n . I d e n t i f y t h r e e e r r o r s i n y o u r l i n e o f i n p u t c o d e a n d e x p l a i n w h y t h e y a r e i n c o r r e c t . I n c l u d e t h e c o r r e c t e d l i n e o f c o d e i n y o u r a n s w e r . H e r e i s t h e c o d e :
T h e f i r s t e r r o r i s t h a t t h e v a r i a b l e s t a r t s w i t h a n u m b e r , w h i c h i s a r u l e y o u c a n ’ t b r e a k , o r e l s e t h e c o m p u t e r w o n ’ t k n o w t h a t i t ’ s a v a r i a b l e . T h e n e x t e r r o r i s t h a t t h e y d i d n ’ t d e c l a r e t h e v a r i a b l e a s a f l o a t . T h e f i n a l e r r o r i s t h a t t h e r e a r e n o q u o t a t i o n m a r k s i n t h e p a r e n t h e s e s , w h i c h a r e n e e d e d t o t e l l t h e c o m p u t e r t o o u t p u t t h a t o u t t o t h e s c r e e n , o r e l s e i t s g o i n g t o t h i n k t h a t y o u w a n t t h e c o m p u t e r t o f i l l t h a t i n i t s e l f .
1 n u m = input(What is your balance?)
What are some kinds of comments that might be useful for a programmer to include in a program?
some kinds of comments that might be useful is when there is a bug, something that needs to be fixed, something that is easy to hack, and something the programmer needs to finish if the programmer released the program early.
If you were planning how to write a program, at what point would a flowchart be helpful? At what point would p s e u d o c o d e be helpful? Explain your reasoning.
A flowchart is helpful in the beginning of writing a program when you are planning what to do. The p s e u d o c o d e would be helpful before you start the coding. The reason is because flowcharts are helpful for planning out your course of action, while pseudocode helps you plan what you are going to write, so it should be right before you start coding, so you know everything that you were thinking about whilst writing the p s e u d o c o d e , and you know that if one thing doesn’t work, you still have all the previous thoughts on that line.
Explanation:
I have the same text questions so I don't want to get anything wrong. I also want to be a developer of M i n e c r a f t , so I pay attention in my coding class.
URGENT!!! DUE IN 5 MINUTES!!!!!
Why do we need things like sequence, selection, iteration, and variables. Why are they needed in Coding? Why are variables important?
Answer:
Sequencing is the sequential execution of operations, selection is the decision to execute one operation versus another operation (like a fork in the road), and iteration is repeating the same operations a certain number of times or until something is true.
Explanation:
Ummmm pls helppp
Which are the features of conditional formatting?
Conditional formatting enables you to_______
and_______
Answer:
A conditional format changes the appearance of cells on the basis of conditions that you specify.
Explanation:
If the conditions are true, the cell range is formatted; if the conditions are false, the cell range is not formatted. There are many built-in conditions, and you can also create your own (including by using a formula that evaluates to True or False).
What is data and information
Answer:
data is the unprocessed information where as information is a processed output
Your _______ can help block inappropriate content online.
1. web browser
2. Password
Answer:
web browser.
Explanation:
yea let me go post my password to block content (sarcasm)
Is a system software that manages the hardware resources and provides services 5o the application software
Answer:
"Operating system" is the right response.
Explanation:
The key program collection on something like a computer device that maintains it interacts mostly with underlying hardware of that system is considered as an Operating system.Even without the need for an OS, every consumer isn't able to access either equipment, monitor as well as portable phone or devices.A network administrator needs information about printers that employees can access. Where can he find that information?
Answer:
PRINT SERVER
Explanation:
The network administrator can find the information about how many computers in the office been used by employees are connected to the Printer by checking the information held in the PRINT SERVER of the company.
The print server is program used to connect computers to printers over a network ( usually an office setting ). The program keeps record of how many computers are connected to the printer hence the administrator can get the information there..
oml this question has 500+ thanks...HOW
Answer:
nice
Explanation:
:)
Answer:
cool congratulations
The Open Systems Interconnection (OSI) Reference Model: defines standards for many aspects of computing and communications within a network. is a generic description for how computers use multiple layers of protocol rules to communicate across a network. defines standards for wireless local area network (WLAN) communication protocols. details the advantages and disadvantages of various basic network cabling options.
Answer:
is a generic description for how computers use multiple layers of protocol rules to communicate across a network.
Explanation:
OSI model stands for Open Systems Interconnection. The seven layers of OSI model architecture starts from the Hardware Layers (Layers in Hardware Systems) to Software Layers (Layers in Software Systems) and includes the following;
1. Physical Layer.
2. Data link Layer.
3. Network Layer.
4. Transport Layer.
5. Session Layer.
6. Presentation Layer.
7. Application Layer.
Hence, the Open Systems Interconnection (OSI) Reference Model is a generic description for how computers use multiple layers of protocol rules to communicate across a network.
Additionally, each layer has its unique functionality which is responsible for the proper functioning of the communication services.
Which of these lights is NOT part of the standard three-point lighting setup?
key light
backlight
fill light
background light
Answer:
i believe background lighting
so this is what i use to code and all of that
Answer: yeah!
Explanation:
Have a good day!
what is the internet revolution
Answer:
Down below
Explanation:
The Internet age began in the 1960s, when computer specialists in Europe began to exchange information from a main computer to a remote terminal by breaking down data into small packets of information that could be reassembled at the receiving end. ... The system was called packet-switching
Answer:
I think it was when the internet was on the come up like the .com boom that happened and ended up making people lose a lot of money
Explanation:
yup
3. Output the following:
a.
21%4
Answer:
21 % 4 is 24 modulus 4. The remainder you get when you divide 21 by 4. 21 divided by 4 is 5, remainder 1.
So, 21 % 4 = 1.
HELP!!!!!
Match the term and definition. An address that refers to another
location, such as a website, a different slide, or an external file.
Active Cell
Hyperlink
Clipboard
Insertion Point
Answer:
Hyperlink
Explanation:
Dan's team has to develop billing software for a supermarket. During which step will they write the program for the software?
Which step will involve finding errors in the software?
Answer:
coding phase
testing/debugging phase
Explanation:
During the coding phase they will write the actual code which creates the functionality/program which is added to the software. This phase comes after the dev team designs the algorithm and creates a flow chart of the algorithm. This flow chart is what is used to create the code itself. After the code is complete then the dev team will go into the testing/debugging phase where they will test the program with different test cases. If any bugs/errors are found they will return to the code and implement changes to fix these errors.
Give two benifets to the supermarket maneger and two benifets of customers of using barcods on all items
Answer:
The benefit of barcodes on items for the manager and the customers are as follow-
Explanation:
Benefits of using bar codes on all items to the manger are as follow -
The process of customer dealing increases by quickly scanning the item, rather than manually noting down the details.The track record of all the items can be maintained properly.Benefits of using bar codes on all items to the customers are as follow -
The time period to purchase any item increases, hence the customer can shop for many items in short span of time.The chances of any mistake gets reduced, as everything is done digitally.Recommend how could you integrate positive aspects of digital literacy into your own
practice of learning.
PLEASE HELP
Answer:
please give me brainlist and follow
Explanation:
7 Ways to Teach Digital Literacy
Emphasise the importance of critical thinking. ...
Use social media for learning and collaborating. ...
Provide guidance on how to avoid plagiarism. ...
Teach students to manage their online identity. ...
Help students manage digital distractions. ...
Provide authentic contexts for practice. ...
Guide students out of their comfort zone.
List good and bad points about play a team sport!
Answer:
Good:
You learn to be friendly.
You can work together to avoid problems.
Sportsmanship comes easily.
You can help each other up when needed
Bad:
Fights can happen
You'll have that one person who tries to be the boss.
You'll have that point where you compete against each other instead of the other team
You might disagree and it'll ruin the whole game.
Hope this helped!!
Explanation:
Ava is at her first job interview, and the interviewer asks her a difficult question she hasn't prepared to answer. What should Ava do?
Helpppp!!!!! im giving Brainliest
Answers: It's A. Or C. sorry that the best i got
Explanation:
Answer:
Take a deep breath and gather her thoughts.
Explanation:
Just took it and got full marks
HAS ANYONE HEARD OF THE GAME SCHOOL DAY
Answer:
NO BUT IT SOUNDS FUN
Explanation:
I PROBABLY HAVE NOT HEARD OF IF BC IM HOMESCHOOLED :D
Answer:
No
Explanation:
Hope you have a wonderful rest of your day!!! :)
Construct an algorithm to print the first 20 numbers in the Fibonacci series (in mathematics) thanks
Answer:
0+1=1
1+1=2
1+2=3
2+3=5
3+5=8
5+8=13
Explanation:
// C++ program to print
// first n Fibonacci numbers
#include <bits/stdc++.h>
using namespace std;
// Function to print
// first n Fibonacci Numbers
void printFibonacciNumbers(int n)
{
int f1 = 0, f2 = 1, i;
if (n < 1)
return;
cout << f1 << " ";
for (i = 1; i < n; i++) {
cout << f2 << " ";
int next = f1 + f2;
f1 = f2;
f2 = next;
}
}
// Driver Code
int main()
{
printFibonacciNumbers(7);
return 0;
}
how does one go about making a robot
Answer: huh I would like to play barbie
Explanation: