Microsoft sql server is more likely to be used for a large business Database size,Simultaneous user,Number of objects are advantage for that.
What is sql server?In order to primarily compete with the MySQL and Oracle databases, Microsoft created and promoted the SQL Server relational database management system (RDBMS). It also goes by the name MS SQL Server, and it is an ORDBMS that can run on both GUI and command-based software. SQL Server Management Studio (SSMS), which works in both 32-bit and 64-bit settings, is the primary interface tool for SQL Server.The SQL language must first be learned if we are to fully comprehend the SQL Server. The language used to handle queries in relational databases is called SQL. A database server is a computer programme that offers various services for our database to other programmes or computers, in accordance with the client-server concept.To learn more about sql server refer to:
https://brainly.com/question/28544173
#SPJ4
Use the class below to determine IF there is an error or if some part of the code is missing.
public class acceptInput {
public static void main (String[ ] args) {
Scanner scan = new Scanner (System.in);
System.out.println("How old are you? ");
int age = scan.nextInt();
System.out.println("Wow you are " + age + " years old. ");
}
}
- Scanner object has been declared incorrectly
- .nextInteger() should be used to accept an integer from the user.
- Age variable is not correctly printed in the sentence
- import java.util.Scanner; is missing
- Program runs as expected
Based on the given class below:
public class acceptInput {
public static void main (String[ ] args) {
Scanner scan = new Scanner (System.in);
System.out.println("How old are you? ");
int age = scan.nextInt();
System.out.println("Wow you are " + age + " years old. ");
}
}
The error that can be seen here is that the Scanner object has not been created
What is Debugging?This refers to the term that is used to describe finding errors in a given program or system that prevents a code from properly executing and involves certain steps and processes.
Hence, it can be seen that the error in the code above is that there is the use of the Scanner object, but it is yet to be created which would return errors when the program is being run.
Read more about debugging here:
https://brainly.com/question/15079851
#SPJ1
which two pieces of information must be provided when saving a file for the first time in wordpad
The name and the saving location.
Write a code segment that prints the food item associated with selection. For example, if selection is 3, the code segment should print "pasta".
Write the code segment below. Your code segment should meet all specifications and conform to the example.
Missing Part:
Assume that the following variables have been properly declared and initialized: an int variable named selection, where 1 represents "beef", 2 represents "chicken", 3 represents "pasta", and all other values represent "fish"
Answer:
if selection == 1:
print("beef")
elif selection == 2:
print("chicken")
elif selection ==3:
print("pasta")
else:
print("fish")
Explanation:
I've completer the question and the questin will be answered in python.
This checks if selection is 1. If yes, it prints the beef
if selection == 1:
print("beef")
This checks if selection is 2. If yes, it prints the chicken
elif selection == 2:
print("chicken")
This checks if selection is 3. If yes, it prints the pasta
elif selection ==3:
print("pasta")
Any other input is considered java/
else:
print("fish")
Communication Technologies is the ____________________________________, ____________________________, _________________________________by which individuals, __________________, ______________________, and _____________________ information with other individuals
Communication Technologies is the tool or device by which individuals, uses to pass information, and share information with other individuals
Technology used in communication media: what is it?The connection between communication and media is a focus of the Communication, Media, and Technology major. In addition to learning how to use verbal, nonverbal, and interpersonal messaging to draw in an audience, students also learn the characteristics of successful and unsuccessful media.
The exchange of messages (information) between individuals, groups, and/or machines using technology is known as communication technology. Decision-making, problem-solving, and machine control can all be aided by this information processing.
Therefore, Radio, television, cell phones, computer and network hardware, satellite systems, and other types of communication devices are all included under the broad term "ICT," as are the various services and tools they come with, like video conferencing and distance learning.
Learn more about Communication Technologies from
https://brainly.com/question/17998215
#SPJ1
Task 2:
The Car Maintenance team wants to add Tire Change (ID: 1)
maintenance task for all cars with the due date of 1 September,
2020. However, the team also wants to know that if an error occurs
the updates will rollback to their previous state. Create a script for
them to first add all tasks and then rollback the changes.
Assuming a person have a database table that is said to be named "MaintenanceTasks" with also a said columns "ID", "TaskName", "DueDate", as well as "CarID", the code attached can be used to add the Tire Change maintenance task.
What is the script about?The above script is one that tend to make use of a SQL transaction to be able to make sure that all changes are said to be either committed or they have to be rolled back together.
Therefore, The IFERROR condition is one that checks for any errors during the transaction, as well as if an error is know n to have take place, the changes are said to be rolled back.
Learn more about script from
https://brainly.com/question/26121358
#SPJ1
a. Draw the hierarchy chart and then plan the logic for a program needed by Hometown Bank. The program determines a monthly checking account fee. Input includes an account balance and the number of times the account was overdrawn. The output is the fee, which is 1 percent of the balance minus 5 dollars for each time the account was overdrawn. Use three modules. The main program declares global variables and calls housekeeping, detail, and end-of-job modules. The housekeeping module prompts for and accepts a balances. The detail module prompts for and accepts the number of overdrafts, computes the fee, and displays the result. The end-of-job module displays the message Thanks for using this program.
b. Revise the banking program so that it runs continuously for any number of accounts. The detail loop executes continuously while the balance entered is not negative; in addition to calculating the fee, it prompts the user for and gets the balance for the next account. The end-of-job module executes after a number less than 0 is entered for the account balance.
Hierarchy chart and pseudocode required
The Hierarchy Chart for the program needed by Hometown Bank is given below:
Main Program
|
-------------
| |
Housekeeping module Detail module
| |
Prompts for balance Computes fee
and accepts input and displays result
|
-----------------
| |
End-of-job module Detail loop (while balance >= 0)
|
Displays message "Thanks for using this program"
Pseudocode for Main Program:Declare global variables
Call Housekeeping module
Call Detail module
Call End-of-job module
Pseudocode for Housekeeping Module:
Prompt for balance
Accept input for balance
Pseudocode for Detail Module:
Detail loop:
while (balance >= 0)
Prompt for number of overdrafts
Accept input for number of overdrafts
Compute fee: 1 percent of balance - 5 dollars * number of overdrafts
Display result
Prompt for balance
Accept input for balance
Pseudocode for End-of-job Module:
Display message "Thanks for using this program"
Read more about pseudocode here:
https://brainly.com/question/24953880
#SPJ1
Part A
In PyCharm, write a program that prompts the user for their name and age. Your program should then tell the user the year they were born. Here is a sample execution of the program with the user input in bold:
What is your name? Amanda
How old are you? 15
Hello Amanda! You were born in 2005.
Write the program. Format your code using best practices. Refer to the zyBooks style guide, if needed, to use proper naming conventions for variables and methods. Use the most appropriate statements with minimal extraneous elements, steps, or procedures.
Run the program.
Debug the program. Be sure your code produces the correct results.
Save and submit your file.
Part B
While you don’t need an IDE to write a program, there are some features that make it desirable. What did you notice when using PyCharm to develop a simple program? For instance, you might have noticed how color is used. Identify two to three features that could make coding easier for programmers, and briefly explain why.
Using the knowledge in computational language in python it is possible to write a code that write a program that prompts the user for their name and age.
Writting the code:def born_yr(age):
return 2020-age
if __name__=="__main__":
name = input("What is your name?")
age = int(input("How old are you?"))
born=born_yr(age)
print("Hello", name + "!", "You are born in " + str(born) + ".");
See more about python at brainly.com/question/18502436
SPJ1
what are the missing letters _A_TO_ ( 6 letters) a type of computer.
Explanation:
its a laptop ☺️. . . . . .. . .
Python help
Instructions
Write a method swap_values that has three parameters: dcn, key1, and key2. The method should take the value in
the dictionary den stored with a key of key1 and swap it with the value stored with a key of key2. For example, the
following call to the method
positions = {"C": "Anja", "PF": "Jiang", "SF": "Micah", "PG": "Devi", "SG": "Maria")
swap_values (positions, "C", "PF")
should change the dictionary positions so it is now the following:
{'C': 'Jiang', 'PF': 'Anja', 'SF': 'Micah', 'PG': 'Devi', 'SG': 'Maria')
def swap_values(dcn, key1, key2):
temp = dcn[key1]
dcn[key1] = dcn[key2]
dcn[key2] = temp
return dcn
The method in the interface for a dictionary collection returns an iterator on the key/value pairs in the dictionary is the Keys () method.
Consider the scenario where you want to develop a class that functions like a dictionary and offers methods for locating the key that corresponds to a specific target value.
You require a method that returns the initial key corresponding to the desired value. A process that returns an iterator over those keys that map to identical values is also something you desire.
Here is an example of how this unique dictionary might be used:
# value_dict.py
class ValueDict(dict):
def key_of(self, value):
for k, v in self.items():
if v == value:
return k
raise ValueError(value)
def keys_of(self, value):
for k, v in self.items():
if v == value:
yield k
Learn more about Method on:
brainly.com/question/17216882
#SPJ1
What are the basic steps in getting a platform up and running?
The basic steps in getting a platform up and running are:
Set and know your intended community. Then Define the features and functions to be used.Select the right technology and create a structure. Then set up Activity Stream.Make Status Update Features. How do I build a platform for business?There are a lot of key principles to look into when making a platform.
Note that the very First step in platform creation is that one need to start with the aim of helping in the interaction between people or users, the producer and the consumer.
Thus, It is the exchange of value that tends to bring more users to the platform.
Therefore, The basic steps in getting a platform up and running are:
Set and know your intended community. Then Define the features and functions to be used.Select the right technology and create a structure. Then set up Activity Stream.Make Status Update Features.Learn more about platform creation from
https://brainly.com/question/17518891
#SPJ1
In order to average together values that match two different conditions in different ranges, an excel user should use the ____ function.
Answer: Excel Average functions
Explanation: it gets the work done.
Answer:
excel average
Explanation:
10 features of the ribbon in microsoft word
Answer:yes
Explanation:
Yup
In Python what are the values passed into functions as input called?
Spell all words correctly.
Ben knows that procedural programming structures a computer program as a set of computational steps consisting of computer code that performs a specific task. What should Ben call such sets of code?
Procedural programming structures a computer program as a set of computational steps consisting of computer code that performs a specific task.Such sets of code are called procedures or ___________.
Answer:
functions
Explanation:
i just took the test
Which one of these is NOT a physical security feature you should check when inspecting your hotel room? (Antiterrorism Scenario Training, Page 4)
a.Proximity of room to emergency exits
b.Whether or not the door is solid
c.Functioning locks on doors and windows
d.Lockbox or safe
The physical security feature you should check when inspecting a hotel room is except d. lockbox or safe.
What is a physical security feature?Physical security features are part of security features to prevent something that could threaten someone's life. So that someone's life can be saved.
In each option, all of them are security features, but only the lockbox or safe is not a security feature to protect someone's life. So, option a, option b, and option c are physical security features that can protect someone's life, and option d is not a physical security feature we should check when inspecting a hotel room.
Learn more about security features here:
brainly.com/question/7449721
#SPJ4
Which of the following is a disadvantage of radio?
You get in your car after work and turn
on the radio. What type of communication does the
radio use?
Answer:
Radio Waves
Explanation:
Pretty self-explanatory.
Radio is a technology that uses radio waves for signaling and communication. Between 30 hertz (Hz) and 300 gigahertz, radio waves are electromagnetic waves (GHz).
What is the process of radio communication?Electromagnetic waves are sent and received by radio equipment to operate. An extremely fast-moving electrical current is what makes up the radio signal. This field is broadcast by a transmitter using an antenna; a receiver picks up the field and converts it to the audio heard on the radio.
Radio technology is the transmission and reception of communication signals made of electromagnetic waves that bounce off the ionosphere or a communications satellite or pass through the air in a straight line.
Modern technology uses radio waves for a wide range of purposes, including broadcasting, radar and radio navigation systems, fixed and mobile radio communication, wireless computer networks, and communication satellites.
Learn more about Radio waves here:
https://brainly.com/question/21995826
#SPJ2
Which requires large computer memory?
Answer:
Imaging , Graphics and voice..... requires large computer memory.
Explanation:
How could you use a spreadsheet you didn't like to simplify access also the problem
Explanation:
......
In order to estimate the cost of painting a house, a painter needs to know the surface area of the exterior. Develop an algorithm for computing that value. Your inputs are the width, length, and height of the house, the number of windows and doors, and their dimensions. (Assume the windows and doors have a uniform size.)
Algorithms are used as prototypes for a complete program.
The algorithm to print the surface area of the exterior is as follows:
1. Start
2. Input the number of windows (n1)
3. Input the number of doors (n2)
4. Input the Length and Width of the windows (L1, W1)
5. Input the Length and Width of the doors (L2, W2)
6. Input Length, Width and Height of the Building
7. Calculate the area of the all windows: Area1 = n1 * L1 * W1
8. Calculate the area of the all doors: Area2 = n2 * L2 * W2
9. Calculate the surface area of the building: Area = 2 * (Length * Width + Length * Height + Width * Height)
10. Calculate the surface area of the exterior. Exterior = Area - Area1 - Area2
11. Display the surface area that can be painted; Exterior
12. Stop
The algorithm is self-explanatory, as all 12 lines of the algorithm are in plain English language.
The surface area of the exterior is calculated by subtracting the areas of all doors and windows from the surface area of the building.
Read more about algorithms at:
https://brainly.com/question/24568182
The total number of AC cycles completed in one second is the current’s A.timing B.phase
C.frequency
D. Alterations
The total number of AC cycles completed in one second is referred to as the current's frequency. Therefore, the correct answer is frequency. (option c)
Define AC current: Explain that AC (alternating current) is a type of electrical current in which the direction of the electric charge periodically changes, oscillating back and forth.
Understand cycles: Describe that a cycle represents one complete oscillation of the AC waveform, starting from zero, reaching a positive peak, returning to zero, and then reaching a negative peak.
Introduce frequency: Define frequency as the measurement of how often a cycle is completed in a given time period, specifically, the number of cycles completed in one second.
Unit of measurement: Explain that the unit of measurement for frequency is hertz (Hz), named after Heinrich Hertz, a German physicist. One hertz represents one cycle per second.
Relate frequency to AC current: Clarify that the total number of AC cycles completed in one second is directly related to the frequency of the AC current.
Importance of frequency: Discuss the significance of frequency in electrical engineering and power systems. Mention that it affects the behavior of electrical devices, the design of power transmission systems, and the synchronization of different AC sources.
Frequency measurement: Explain that specialized instruments like frequency meters or digital multimeters with frequency measurement capabilities are used to accurately measure the frequency of an AC current.
Emphasize the correct answer: Reiterate that the current's frequency represents the total number of AC cycles completed in one second and is the appropriate choice from the given options.
By understanding the relationship between AC cycles and frequency, we can recognize that the total number of AC cycles completed in one second is referred to as the current's frequency. This knowledge is crucial for various aspects of electrical engineering and power systems. Therefore, the correct answer is frequency. (option c)
For more such questions on AC cycles, click on:
https://brainly.com/question/15850980
#SPJ8
To solve the difficulty of scaling memory organization, memories are physically organized into a ____-dimensional organization.
A) one
B) two
C) three
D) multi
Consider the following code segment. int[][] arr = {{3, 2, 1}, {4, 3, 5}}; for (int row = 0; row < arr.length; row++) { for (int col = 0; col < arr[row].length; col++) { if (col > 0) { if (arr[row][col] >= arr[row][col - 1]) { System.out.println("Condition one"); } } if (arr[row][col] % 2 == 0) { System.out.println("Condition two"); } } } As a result of executing the code segment, how many times are "Condition one" and "Condition two" printed?
Answer:
Condition one - 1 time
Condition two - 2 times
Explanation:
Given
The above code segment
Required
Determine the number of times each print statement is executed
For condition one:
The if condition required to print the statement is: if (arr[row][col] >= arr[row][col - 1])
For the given data array, this condition is true only once, when
\(row = 1\) and \(col = 2\)
i.e.
if(arr[row][col] >= arr[row][col - 1])
=> arr[1][2] >= arr[1][2 - 1]
=> arr[1][2] >= arr[1][1]
=> 5 >= 3 ---- True
The statement is false for other elements of the array
Hence, Condition one is printed once
For condition two:
The if condition required to print the statement is: if (arr[row][col] % 2 == 0)
The condition checks if the array element is divisible by 2.
For the given data array, this condition is true only two times, when
\(row = 0\) and \(col = 1\)
\(row = 1\) and \(col = 0\)
i.e.
if (arr[row][col] % 2 == 0)
When \(row = 0\) and \(col = 1\)
=>arr[0][1] % 2 == 0
=>2 % 2 == 0 --- True
When \(row = 1\) and \(col = 0\)
=>arr[1][0] % 2 == 0
=> 4 % 2 == 0 --- True
The statement is false for other elements of the array
Hence, Condition two is printed twice
what is the first step in search engine optimazation process for your website
How many bits are required to encode a character in extended ASCII?
Answer:
8 bits
The basic ASCII set uses 7 bits for each character, giving it a total of 128 unique symbols. The extended ASCII character set uses 8 bits, which gives it an additional 128 characters. The extra characters represent characters from foreign languages and special symbols for drawing pictures.Explanation:
Answer:
8 bits are required to encode a character in extended ASCII.
What are the benefits of online notebooks? Check all that apply..
They allow users to store files.
They allow users to share files.
They give users a way to practice for tests.
They help users organize assignments.
They allow users to clip information from web pages.
They can serve as school calendars.
Answer:
its a They allow users to store files. b They allow users to share files. d They help users organize assignments and f They can serve as school calendars.
Explanation:
:))))
Answer:
abdf
Explanation:
100 POINTS Can someone help me write a code in python. a program which can test the validity of propositional logic. Remember, a propositional logical statement is invalid should you find any combination of input where the PROPOSITIONAL statements are ALL true, while the CONCLUSION statement is false.
Propositional Statements:
If someone has a rocket, that implies they’re an astronaut.
If someone is an astronaut, that implies they’re highly trained.
If someone is highly trained, that implies they’re educated.
Conclusion Statement:
A person is educated, that implies they have a rocket.
Your output should declare the statement to either be valid or invalid. If it’s invalid, it needs to state which combination of inputs yielded the statement invalid.
For the code that returns the above output see the attatched.
How does the above code work?Rocket(), astronaut(), highly trained(), and educated() are the four functions defined in the code that correlate to the propositional propositions. These functions just return the value of the argument passed in.
The test_proposition() method examines all possible input combinations and evaluates the conclusion statement. It returns the exact combination that invalidates the assertion if any combination produces the conclusion statement as false while all propositional statements are true. Otherwise, "Valid" is returned.
Learn more about code at:
https://brainly.com/question/26134656
#SPJ1
Select the correct answer from each drop-down menu.
Tanya wants to include an instructional video with all its controls on her office website. The dimensions of the video are as follows:
width="260"
height="200"
What code should Tanya use to insert the video?
To insert the video, Tanya should add the following code:
✓="video/mp4">
The browser will use the first file that it supports. If the browser does not support any of the files, the text between the video and </video> tags will be displayed.
How to explain the informationTanya can use the following code to insert the video with all its controls on her office website:
<video width="260" height="200" controls>
<source src="video.mp4" type="video/mp4">
<source src="video.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
The width and height attributes specify the dimensions of the video player. The controls attribute specifies that the video player should display all its controls. The source elements specify the location of the video files.
The first source element specifies the location of the MP4 file, and the second source element specifies the location of the Ogg file. The browser will use the first file that it supports. If the browser does not support any of the files, the text between the video and </video> tags will be displayed.
Learn more about program on
https://brainly.com/question/26642771
#SPJ1
TCP is more dependable protocol than UDP because TCP is
Explanation:
because TCP creates a secure communication line to ensure the reliable transmission of all data.
Design a class named StockTransaction that holds a stock symbol (typically one to four characters), stock name, number of shares bought or sold, and price per share. Include methods to set and get the values for each data field. Create the class diagram and write the pseudocode that defines the class.
Design a class named FeeBearingStockTransaction that descends from StockTransaction and includes fields that hold the commission rate charged for the transaction and the dollar amount of the fee. The FeeBearingStockTransaction class contains a method that sets the commission rate and computes the fee by multiplying the rate by transaction price, which is the number of shares times the price per share. The class also contains get methods for each field.
Create the appropriate class diagram for the FeeBearingStockTransaction class and write the pseudocode that defines the class and the methods.
Design an application that instantiates a FeeBearingStockTransaction object and demonstrates the functionality for all its methods.
The class diagram and pseudocode for the StockTransaction class is given below
What is the class?plaintext
Class: StockTransaction
-----------------------
- symbol: string
- name: string
- shares: int
- pricePerShare: float
+ setSymbol(symbol: string)
+ getSymbol(): string
+ setName(name: string)
+ getName(): string
+ setShares(shares: int)
+ getShares(): int
+ setPricePerShare(price: float)
+ getPricePerShare(): float
Pseudocode for the StockTransaction class:
plaintext
Class StockTransaction
Private symbol as String
Private name as String
Private shares as Integer
Private pricePerShare as Float
Method setSymbol(symbol: String)
Set this.symbol to symbol
Method getSymbol(): String
Return this.symbol
Method setName(name: String)
Set this.name to name
Method getName(): String
Return this.name
Method setShares(shares: Integer)
Set this.shares to shares
Method getShares(): Integer
Return this.shares
Method setPricePerShare(price: Float)
Set this.pricePerShare to price
Method getPricePerShare(): Float
Return this.pricePerShare
End Class
Read more about StockTransaction here:
https://brainly.com/question/33049560
#SPJ1