Which of these is not a client side technology?​

Answers

Answer 1

SQL databases can be used to handle server-side scripting languages like PHP, ColdFusion, and Ruby on Rails. Architecture for Web Servers

What technologies are on the client side?

Web development refers to everything in a web application that is displayed or occurs on the client as being "client side" (end user device). This includes everything the user sees, including all text, graphics, and other user interface (UI) elements, as well as any actions a program does while running inside the user's browser.

Is client-side technology used with Web APIs?

Essentially, a web development concept, web API. It only addresses the client-side of Web applications and excludes any knowledge of a web server or browser. If an application is going to be run on a distributed system, and Web API services are being used to offer services on different hardware, including laptops, smartphones, and other devices.

To know more about technology visit:-

https://brainly.com/question/10126420

#SPJ1


Related Questions

we encourage you to publish your seller information in the sellers.json file. visit the account settings page to review your current visibility status.

Answers

How to solved “encourage you to publish your seller information in the sellers.JSON file

Visit the account settings page to review your current visibility status”

After clicking on the action button you got a page with two option:

1) Confidential

2) Transparent

How to make your seller information transparent

Sign in to your AdSense account.Click Account.In the "Seller information visibility" section:Select Transparent.Add your business domain name if you have one.Your name, domain (if included), and your publisher ID will appear in the sellers.json file

What is JSON

 JavaScript object notation or JSON is a format used to store and transfer data.

Unlike XML (extensive markup language) and other formats that have a similar function, JSON has a data structure that is simple and easy to understand. That's why JSON is often used in the API.

JSON itself consists of two structures, namely:

A collection of paired values. In JSON, an example is an object. An ordered list of value , like an array.

JSON can also not only be used with JavaScript. The following are several other programming languages that support the use of this format:

PHP Pythons Ruby C++ perl

JSON function

JSON functions more or less the same as XML. Before JSON was created, this markup language format was often used in AJAX JavaScript (asynchronous JavaScript and XML) for data storage and transfer.

Thanks to the combination of the two, developers can create web pages where information can be updated without having to reload the page. This has become commonplace, especially with the booming trend of web applications.

Well, JSON has the same functionality. The difference is that it has several advantages that make it more commonly used than XML, including:

Lighter files Simpler code structure Code that is easy for humans to understand

Learn more about JSON File at https://brainly.com/question/29790553.

#SPJ4

Suppose two coins: A and B have 5 rounds of 10 coin tosses as given below. Assume the probabilities for heads are qA=0.6 & qB=0.5.
i) Estimate No. of Heads and Tails for first toss for A and B.
ii) Compute Maximum Likelihood probabilities of first Round from coin A and B using
Binomial distribution.

Answers

estimate No. of Heads and Tails for the first toss for A and B:

For the first toss of coin A, we expect to see 6 heads and 4 tails (since qA = 0.6, and we are tossing the coin 10 times)For the first toss of coin B, we expect to see 5 heads and 5 tails (since qB = 0.5, and we are tossing the coin 10 times)

What is the probabilities  about?

ii) Compute Maximum Likelihood probabilities of first Round from coin A and B using Binomial distribution:

To compute the maximum likelihood probability of the first round for coin A, we would use the binomial distribution formula:

P(X = k) = (n choose k) * qA^k * (1-qA)^(n-k)

where X is the number of heads, k is the number of heads observed, n is the number of tosses, and qA is the probability of heads for coin A.

To compute the maximum likelihood probability of the first round for coin B, we would use the same formula, but with qB as the probability of heads for coin B.

So we will have two different probabilities for the first round, one for coin A and one for coin B. The probabilities will be based on the observed number of heads and tails and the assumed probability of heads.

It is worth noting that this is a theoretical calculation and in practice, the coin tossing would have to be done to get the actual observations.

Learn more about Binomial distribution from

https://brainly.com/question/29163389

#SPJ1

Differentiate between a Homogeneous Distributed Database and a Heterogeneous Distributed Database. Give any THREE advantages of implementing a distributed database system.

(Advanced Database Systems Course)

Answers

Answer:

A homogeneous distributed database is a distributed database system in which all components are of the same type, such as the same type of DBMS. A heterogeneous distributed database is a distributed database system in which components may be of different types, such as different DBMSs.

Advantages of implementing a distributed database system include:

1. Increased Availability: By distributing the data across multiple nodes, the system can continue to operate even if one of the nodes fails.

2. Improved Performance: By distributing the workload across multiple nodes, the system can process more data in less time.

3. Greater Scalability: The system can be easily scaled to meet the needs of a growing business.

Explanation:

Jessica is concerned about losing data due to a hard disk failure. Her computer will only support a maximum of three disks. To protect her data, she has decided to use RAID (Redundant Array of Independent Disks).
Which of the following RAID types would give Jessica the BEST mirrored data protection?
a. RAID 0
b. RAID 1
c. RAID 5
d. RAID 10

Answers

RAID 1 would provide Jessica with the BEST duplicated data security, according to the query.

An independent disk system with redundancy is what?

A technique for duplicating or striping data across numerous low-end disk drives; this improves mean time between failures, throughput, and error correction by copying data across multiple drives.

Why is it vital to have a robust array of independent disks?

By archiving the same information on various disk drives and solid-state drives, RAID (distributed array of independent disks) is a way to safeguard data in the case of the a drive failure (SSDs). There are many RAID levels, though, and not every one of them strive to offer redundancy.

To know more about Redundant Array visit:

https://brainly.com/question/13163060

#SPJ4

consider the following method. public static double timesfive (double n) { return n * 5; } the following code segment appears in a method in the same class as the timesfive() method. double val

Answers

The method called puzzle produced the result (C) 0.75 as its value.

What is the puzzle code?

Josh Ragsdell created The Puzzle Code in November 2006. Another writing system on Omniglot, Betamaze, served as the initial source of inspiration for this alphabet.

Josh was inspired to develop a system where the letters fit together, much like a puzzle.

Wherever the pertinent numbers occur, entering the initial letters is the best strategy for solving.

After entering them, check to see if any words come to mind.

For a number of reasons, analyzing letter frequency is not a very effective strategy for resolving these issues.

So, the code we have:
public double puzzle(int x)

{

Double y = x / 2.0;

y /= 2;

return y.doubleValue();

}

The returned value: 0.75

Therefore, the method called puzzle produced the result (C) 0.75 as its value.

Know more about the puzzle code here:

https://brainly.com/question/30126692

#SPJ4

Complete question:
Consider the following method.

public double puzzle(int x)

{

Double y = x / 2.0;

y /= 2;

return y.doubleValue();

}

Assume that the method called puzzle(3) appears in a method in the same class as a puzzle. What value is returned as a result of the method call?

A 0.0

B 0.5

C 0.75

D 1.0

E 1.5

Natalie is creating a game. The object of the game is for the player to get a cat to his toy in 10 moves or less. The game begins with the cat positioned at the top-left corner of the screen and the toy at the bottom-right corner of the screen. Natalie wants the player to be able to make the cat go 50 steps in one move by pressing an arrow key, and go 100 steps in one move by pressing the space bar. The number of remaining moves is decreased by one each time the player presses a key. The game will count down from 10 moves and display the number of moves remaining. If the move count reaches zero or the cat reaches his toy, then the game will start over. Natalie discovers that her program is not restarting when the number of remaining moves reaches zero. Consider the following code segment: if movesRemaining = 0 then What is wrong with this expression that Natalie wrote?

Answers

Answer: she forgot to write a loop program like while, or for

Explanation:

QUICK 100!!!!
What is the scope of the variable hardness?

class pencil:
color = 'yellow'
hardness = 2
class pencilCase:
def __init__(self, color, art):
self.color = 'black'
self.art = 'wolf'
def __str__(self):
return self.color + " " + self.art
# main part of the program
pencilA = pencil()

limited to the pencilCase class
limited to the pencilCase class

accessible to all parts of the program
accessible to all parts of the program

limited to the pencil class
limited to the pencil class

limited to the main part of the program

Answers

Answer:

The variable "hardness" is limited to the "pencil" class

Explanation:

As we can see in the program - the line where the variable "hardness" is declared and defined is set under the instruction "class pencil:" which is the python syntax keyword for defining a class

Python uses indentation as a way of declaring scopes and in your example no indentation is used, that's why I'm making an assumption "pencil" belongs to class "pencil".

Next time please use indentation. :))

For this assignment, you will create a calendar program that allows the user to enter a day, month, and year in three separate variables as shown below.

Please enter a date
Day:
Month:
Year:
Then, your program should ask the user to select from a menu of choices using this formatting:

Menu:
1) Calculate the number of days in the given month.
2) Calculate the number of days passed in the given year.
If a user chooses option one, the program should display how many days are in the month that they entered. If a user chooses option two, the program should display how many days have passed in the year up to the date that they entered.

Your program must include the three following functions:

leap_year: This function should take the year entered by the user as a parameter. This function should return 1 if a year is a leap year, and 0 if it is not. This information will be used by other functions. What is a Leap Year? (Links to an external site.)
number_of_days: This function should take the month and year entered by the user as parameters. This function should return how many days are in the given month. (Links to an external site.)
days_passed: This function should take the day, month, and year entered by the user as parameters. This function should calculate the number of days into the year, and return the value of number of days that have passed. The date the user entered should not be included in the count of how many days have passed.

Answers

Below is an example of how you could implement the calendar program using Python:

def leap_year(year):

   if year % 4 == 0:

       if year % 100 == 0:

           if year % 400 == 0:

               return 1

           else:

               return 0

       else:

           return 1

   else:

       return 0

def number_of_days(month, year):

   if month in [1, 3, 5, 7, 8, 10, 12]:

       return 31

   elif month in [4, 6, 9, 11]:

       return 30

   elif month == 2:

       if leap_year(year):

           return 29

       else:

           return 28

   else:

       return 0

def days_passed(day, month, year):

   days = 0

   for i in range(1, month):

       days += number_of_days(i, year)

   return days

# get user input for day, month, and year

day = int(input("Please enter a day: "))

month = int(input("Please enter a month: "))

year = int(input("Please enter a year: "))

# display menu and get user choice

print("Menu:")

print("1) Calculate the number of days in the given month.")

print("2) Calculate the number of days passed in the given year.")

choice = int(input("Enter your choice: "))

# perform the selected action

if choice == 1:

   print("There are", number_of_days(month, year), "days in the given month.")

elif choice == 2:

   print("There have been", days_passed(day, month, year), "days passed in the given year.")

What is the calendar program  about?

This program first defines the leap_year, number_of_days, and days_passed functions as described in the prompt. The leap_year function returns 1 if the year is a leap year and 0 if it is not, based on the rules for determining leap years.

The number_of_days function returns the number of days in the given month and year, using the leap_year function to handle the case of February in a leap year. The days_passed function calculates the number of days that have passed in the year up to the given date by adding up the number of days in each month before the given month.

Therefore, program then gets user input for the day, month, and year, displays the menu, and gets the user's choice. It then performs the selected action by calling the appropriate function and printing the result.

Learn more about calendar program from

https://brainly.com/question/14102962
#SPJ1

Describe how the average of a collection of numbers can be computed more rapidly with a multiprocessor machine than a single processor machine.

Answers

The way that the average of a collection of numbers can be computed more rapidly with a multiprocessor machine than a single processor machine is given below

One way to compute the average of a collection of numbers more rapidly with a multiprocessor machine is to divide the collection of numbers into smaller subcollections, and then have each processor compute the average of one of the subcollections. Once all the processors have finished computing their averages, the final average of the entire collection can be computed by taking the mean of the subcollection averages.

What is the multiprocessor about?

When computing the average of a collection of numbers, the most straightforward approach is to iterate through the collection, adding up the numbers and then dividing by the number of elements in the collection. However, this process can be quite slow if the collection is large.

One way to speed up the computation is to use a multiprocessor machine, which has multiple processors that can work on different parts of the problem simultaneously. To take advantage of this, the collection of numbers can be split up into smaller chunks and each chunk can be processed by a different processor.

By using a multiprocessor machine, we can potentially reduce the computation time from O(N) to O(N/M) which can be much faster for large N.

Note also that this process is only efficient when there is enough data that can be divided, otherwise the overhead of splitting the data and coordinating the processors will negate the benefits of parallelism.

Learn more about multiprocessor  from

https://brainly.com/question/14081253
#SPJ1

When pasting information from another application into
Photoshop you can select which of the following Paste As
options:

Answers

When pasting information from another application into Photoshop need to:

Start by making a selection of the area where you want the pasted pixels to appear.Then copy the image you want to paste.Next, choose Edit > Paste Special > Paste Into (or use the keyboard shortcut Alt+Shift+Ctrl+V for Windows or Option+Shift+Command+V for Mac).

What is Copy and Paste?

This refers to the term used to show and describe the process of collecting information from one place and "pasting" it or putting it in another place, with its complete information.

Hence, it can be seen that when it comes to the use of photoshop, it is expected that when pasting information from another application into Photoshop need to start by making a selection of the area where you want the pasted pixels to appear.

Read more about photoshop here:

https://brainly.com/question/16859761

#SPJ1

True or False: The following two statements will always yield the same value when a and b are Strings:

1) a.equals(b);
2) a==b;

Select one:
True
False

Answers

Answer:

a. Contains: trueb. Contains: falsec. Contains: nullClear my choiceQuestion 20 Answer saved Marked out of 1.00True or False: A Set is used to store objects in a particular order.Select one:TrueFalseQuestion 21 Answer saved Marked out of

dion training has just installed a web server for a new domain name. which of the following dns records would need to be created to allow users to reach the website using its domain name and then redirect clients to the proper ipv6 address for the server?

Answers

Given that Dion training has just installed a web server for a new domain name, the DNS records that should need to be created to allow users to reach the website using its domain name and then redirect clients to the proper ipv6 address for the server is: a DNS AAAA record. This is also known as a Quad-A Record.

What is a Web Server?

A web server is a piece of computer software and the underlying hardware that accepts HTTP or HTTPS queries.

A web server's principal function is to store, process, and provide requested information or websites to end users. It employs: To ensure the protection of all website data, it is kept on a physical web server.

Learn more about Web Server:
https://brainly.com/question/28384347
#SPJ1

When looking to advertise your business to mobile users, social media advertising can be really effective because…
A it allows you to target people who have ad blockers enabled
B it can be seen by people who aren’t logged into their accounts
C it allows you to target people based on their likes and interests
D it doesn’t cost too much to spread your ads far

Answers

When looking to advertise your business to mobile users, social media advertising can be really effective because it allows you to target people based on their likes and interests.

What is business? The term business often refers to an entity that operates for commercial, industrial, or professional reasons. The concept begins with an idea and a name, and extensive market research may be required to determine how feasible it is to turn the idea into a business.Businesses often require business plans before operations begin. A business plan is a formal document that outlines the company's goals and objectives and lists the strategies and plans to achieve these goals and objectives. Business plans are essential when you want to borrow capital to begin operations.Furthermore, a business plan can serve to keep a company's executive team on the same page about strategic action items and on target for meeting established goals.

To learn more about business plan refer to:

https://brainly.com/question/25492268

#SPJ4

conducting online research about the role that computer skills
play in an industry's management

discussing how computer skills help the management team in
terms of planning, marketing, and use of financial resources
discussing how a person should aim to upgrade his/her skills,
also discuss why this process is of importance.
Task 2: Labor Laws and Community Programs
Labor laws, worker's rights, and privileges in the industry
Social programs and other services that the industry offers to
the members of the community in which it operates
financial responsibility within the industry
Task 3: Organizational Structures and Managerial Skills
conducting online research about types of organizational
structures in business
discussing the organizational structure that is relevant to an
industry of your choice
• discussing various job roles that form a part of the organization
structure
discussing the different skills and qualities that managers in
the industry should possess
[5]
[5]
[5]
Task points: [30]
[10]
[10]
[10]
Task points: [30]
[5]
[5]
[10]
[10]

Answers

Task 1: Computer Skills in Industry ManagementComputer skills are essential for the management team in any industry as they help with planning, marketing, and the use of financial resources. For example, management teams can use computer programs to create budgets, forecast future financial performance, and analyze data to inform marketing strategies. Additionally, having strong computer skills allows management to communicate effectively with team members and stakeholders through email, video conferencing, and other digital platforms.To upgrade their computer skills, a person should consider taking courses or earning certifications in relevant software programs and technologies. It is also helpful to stay up-to-date with industry trends and changes in technology. Upgrading computer skills is important because it helps individuals stay competitive in the job market and enables them to better perform their job duties.Task 2: Labor Laws and Community ProgramsLabor laws are designed to protect the rights and privileges of workers in an industry. These laws may cover topics such as minimum wage, overtime pay, health and safety, and discrimination and harassment. It is important for the management team in an industry to be aware of these laws and ensure that they are being followed within their organization.In addition to labor laws, many industries also offer social programs and services to the members of the community in which they operate. These programs may include education and training opportunities, health services, and community development initiatives. Being involved in these programs can help an industry build positive relationships with the community and demonstrate its commitment to social responsibility.Task 3: Organizational Structures and Managerial SkillsThere are several different types of organizational structures in business, including functional, divisional, matrix, and flat structures. The appropriate organizational structure for a particular industry will depend on factors such as the size of the organization, the complexity of its operations, and the nature of its products or services.In terms of job roles, an organizational structure will typically include positions such as CEO, CFO, COO, and managers at various levels. The skills and qualities that managers in an industry should possess will vary depending on their specific role, but generally, they should be able to lead and motivate a team, make decisions, solve problems, and communicate effectively. It is also important for managers to have a strong understanding of the industry in which they work and stay up-to-date with industry trends and changes.

The destroy stage of the data life cycle might involve which of the following actions? select all that apply. O Storing data for future use
O Shredding paper files
O using data-erasure software
O Uploading data to the cloud

Answers

The destroy stage of the data life cycle might involve B: shredding paper files and C: using data.

Data life cycle defines a process used to control data in an organization.  It has a total of five phases, among which data destruction is the last phase. Data destroy or destruction means removing all copies of a data item from the organization. This is usually done from an archive location. The challenge at the destory stage of the data life cycle is ensuring that data is properly disposed of. Since the destroying stage is the last stage of the data life cycle and it may involve shedding paper files and using data-erasure software.

You can leanr more about data life cycle at

https://brainly.com/question/30094938

#SPJ4

what is the bit on bottom of fruit called -*.it -blidz -*.it -pinterest\.\* -researchgate.net

Answers

The phrases you included, such as ".it", "-blidz", "-pinterest.", and "-researchgate.net" are likely used to exclude or include certain websites or types of content in the search results. The result is the bottom part of a fruit that is attached to the stem is called the calyx.

PHRASE OF WEB SEARCH QUERIES

The text you provided appears to be a series of search terms or phrases that may be used to exclude or include certain results in a search query on a search engine or other similar platform. The phrases you included, such as ".it", "-blidz", "-pinterest.", and "-researchgate.net" are likely used to exclude or include certain websites or types of content in the search results.

As for the bit on bottom of fruit, depending on the fruit you are referring to, it could be different names, it could be a stem or peduncle.

Those phrases you provided are common usage in the web search queries and programming languages. Here's what each of the phrases might do:

"*.it": This could be used to include or exclude websites that have the ".it" top-level domain, which is assigned to Italy."-blidz": This could be used to exclude any results that include the word "blidz" from the search results."-pinterest.*" : this could be used to exclude any results related to pinterest or it's pages or child-pages."-researchgate.net" : this could be used to exclude any results related to researchgate website or it's pages.

However, it's not always the same across different search engines, the results might be different depending on the syntax of the specific search engine being used. Also, these phrases are not standard programming language syntax, but more likely part of a query string used to filter results from a search API.

Learn more about web search queries here:

https://brainly.com/question/28538492

#SPJ4

"You have reached your purchase limit for this item. We have changed the quantity to the maximum allowed. If quantity is already set to 0, please delete the item (below item details) to continue''. What's this notification?

Answers

This notification is informing you that you have reached the maximum purchase limit for the item. It is suggesting that if the quantity is already set to 0, then you should delete the item from your cart in order to continue shopping.

Reaching Your Purchase Limit When Shopping Online

When shopping online, it is possible to reach a limit on the number of certain items you are able to purchase. This notification is informing you that you have reached your purchase limit for the item in your cart. The notification suggests that if the quantity is already set to 0, then you should delete the item from your cart in order to continue shopping. This is a helpful reminder to make sure that you are not overspending or purchasing more than the allowed quantity of a certain item. It is important to pay attention to these kinds of notifications when shopping online in order to ensure that you are staying within your budget and not overbuying.

Learn more about Shopping online: https://brainly.com/question/21594288

#SPJ4

Write, compile, and test a class that displays the first few lines of the lyrics of your favorite song.
Write your Java code in the area on right. Use the Run button to compile and run the Lode. Clicking the Run Checks button will run pre- configured tests against your code to calculate a grade
Once you are happy with your results, click the Submit button to record your score

Answers

The programming language Java is object-oriented. Objects and classes, along with their characteristics and functions, are the foundation of everything in Java.

How do you code in Java?

An object-oriented programming language is Java. In Java, everything is connected to classes and objects, along with their characteristics and functions. A automobile is an object in the real world. The car is made up of methods like drive and brake as well as characteristics like weight and color.

The Java Development Kit (JDK), which is used to create Java code, is downloaded in order for Java to function. The Java Runtime Environment is then used to compile the code into computer-understandable bytecode (JRE). Java enables easy app development for a variety of operating systems.

Learning Java is simple. Java was created with simplicity in mind, making it simpler to write, compile, debug, and learn than other programming languages.

To learn more about Java code refer to:

https://brainly.com/question/18554491

#SPJ4

the countif(range, criteria) function allows you to total the cumulative value contained in multiple cells that meet a certain criteria.
a. true
b. false

Answers

a. True. The COUNTIF function in Excel allows you to count the number of cells within a range that meet a certain criteria. For example, you can use COUNTIF to count the number of cells that contain a specific text value, or the number of cells that are greater than a certain number.

To use the COUNTIF function, you will need to specify a range of cells to count, and a criteria that the cells in the range must meet. For example, the formula "=COUNTIF(A1:A10, "apple")" would count the number of cells in the range A1:A10 that contain the text "apple".

You can also use the COUNTIF function to count cells that meet more complex criteria, by using logical operators such as ">", "<", ">=", and "<=". For example, the formula "=COUNTIF(A1:A10, ">5")" would count the number of cells in the range A1:A10 that are greater than 5.

Learn more about the COUNTIF: https://brainly.com/question/24211266

#SPJ4

Complete the sentence about a presentation delivery method.
A(n) presentation software
allows you to transmit your presentations over the Internet using [streaming technology
Reset
Next

Answers

A Webcast allows you to transmit your presentations over the Internet using Streaming Technology.

What is presentation delivery?

Presentation software is a computer program that allows users to create and display presentations. These presentations can include text, images, videos, and other multimedia elements. They are often used in educational or business settings to convey information to an audience.

Therefore, One of the key features of many presentation software programs is the ability to transmit presentations over the Internet using streaming technology. Streaming technology allows the presentation to be viewed in real-time, as it is being transmitted, rather than requiring the viewer to download the entire presentation before viewing it.

Learn more about presentation delivery from

https://brainly.com/question/12829009

#SPJ1

Agnes wants to make sure that she knows which steps to take to avoid spillage. You advise Agnes to do all of the following except: a. Check all E-mails for possible classified information. b. Ensure all file names and subject headers identify the sensitivity of the information. c. Store classified data on her PDA when traveling. d. Properly mark and store all removable media.

Answers

Agnes is advised to do all of the following except C: 'Store classified data on her PDA when traveling.'

In the context of computer science, spillage is a security incident in which sensitive information is transmitted to an information system that is not authorized to store or process that information.

Thus, in the situation where Agnes wants to ensure that she knows which steps to take in order to avoid spillage. Agnes is advised to do to:

check all E-mails for possible classified information. make sure all names of files and subject headers identify the sensitivity of the information. to properly mark and store all removable media.

You can leanr more about spillage at

https://brainly.com/question/29871474

#SPJ4

Your friends parents are worried about going over there budget for the month witch expense would you suggest is not a need

Answers

Answer:

The correct answer is option cable service.

subscriptions and TV channels

What is a parameter profile? What is a subprogram protocol?
The parameter profile of a subprogram contains the number, order, and types of its formal parameters. The protocol of a subprogram is its parameter profile plus, if it is a function, its return type. In languages in which subprograms have types, those types are defined by the subprogram’s protocol.

Answers

The parameter profile is the profile of the parameter that contains the order, number, and types of its parameter. The subprogram protocol is a program block that can be called repeatedly in the program by writing its name it.

The parameter profile can be described as the profile of the parameter and the parameter is used to determine some of the values in the subprogram or function.

The subprogram protocol is a protocol of block of a program that can be called repeatedly, this also contains a parameter profile and a function. The subprogram will return a value if the subprogram has been called in other blocks of a program.

Your question is incomplete, but most probably your full question was

What is a parameter profile? What is a subprogram protocol?

Learn more about subprogram here:

brainly.com/question/2280177

#SPJ4

How do I fix error code 277?

Answers

Error code 277 is not a standard error code, so it is difficult to provide a definitive answer as to how to fix it. Depending on the context in which the error code is appearing, it is likely related to a specific application or operating system.

How to fix error code 277?

In order to fix error code 277, it is necessary to determine the cause of the error code. If the error code is appearing in a specific application, it may be necessary to check the application's documentation or online support forums for help resolving the issue. If the error code is appearing in an operating system, it may be necessary to check the system's documentation or online support forums for help resolving the issue. It may also be necessary to reinstall the operating system or application in order to resolve the issue. If the error code continues to appear, it may be necessary to contact the software vendor for further assistance.

Learn more about error codes: https://brainly.com/question/12222845

#SPJ4

People who know you best would describe you as someone who

Answers

People who know you best would describe you as someone who is lovely and kind. They will they you all the qualities about me as well as my character.

What are  human qualities?

Human qualities are characteristics that are uniquely human. These qualities are often thought to be innate or inherent, meaning that they are part of a person's nature or constitution.

Some examples of human qualities might include things like kindness, compassion, empathy, honesty, integrity, intelligence, creativity, and the ability to communicate and form meaningful relationships with others. It is generally believed that these qualities are what make us human and distinguish us from other animals.

Therefore, There are many different human qualities that are important and valued in different cultures and societies. Some common human qualities that are highly valued to me are:

Empathy: the ability to understand and share the feelings of othersKindness: the quality of being friendly, generous, and considerateCompassion: the feeling of wanting to help those who are suffering

Learn more about human qualities from

https://brainly.com/question/27385626

#SPJ1

What is Turnitin used for?

Answers

Turnitin is plagiarism detection software that checks student work against a sizable database of other students' work, publications, and other materials to look for text matches.

This indicates that too many outside sources were used in your essay. Balance your own work with the facts you cite from texts. Decide when it would be best to use your own words to summarize, paraphrase, or explain a concept. As a result, while having a high similarity score does not necessarily indicate that a student has plagiarized, it may indicate that they have used too many direct quotes or secondary sources. As a general rule, a score of between 15% and 20% might be regarded as a good target.

Learn more about software here-

https://brainly.com/question/29946531

#SPJ4

How will you describe about "low frequency and high frequency"? (Music Technology)

a. low note and high note
b. low power and high power
c. low pitch and high pitch
d. low pressure and high pressure
e. None of the above

Answers

The best description of "low frequency and high frequency" is c. low pitch and high pitch

What is Low Frequency?

In music technology, "low frequency" and "high frequency" refer to the pitch of a sound or note. The terms can be used to describe the range of frequencies present in a sound or the specific frequency of a single note.

A sound with a low frequency will have a lower pitch, such as the deep rumble of a bass guitar or the low notes on a piano.

A sound with a high frequency will have a higher pitch, such as the high-pitched ring of a bell or the high notes on a piano.

Read more about sounds here:

https://brainly.com/question/25871632
#SPJ1

The number of swapping needed to sort numbers 8,22,7,9,31,19,5,13 in ascending order using bubble sort is ?
a. 11
b. 12
c. 13
d. 14

Answers

The number of swapping needed to sort in ascending order the array 8, 22, 7, 9, 31, 19, 5, 13 using bubble sort is d. 14.

How to calculate the swapping needed when using bubble sort?

Swapping needed when using bubble sort can be calculated using many ways. But for this case, we calculated by adding all count number of elements on the right side that are smaller, because the order is in ascending.

For 8, the count number of elements on the right side that are smaller is 2.

For 22, the count number of elements on the right side that are smaller is 5.

For 7, the count number of elements on the right side that are smaller is 1.

For 9, the count number of elements on the right side that are smaller is 1.

For 31, the count number of elements on the right side that are smaller is 3.

For 19, the count number of elements on the right side that are smaller is 2.

For 5, the count number of elements on the right side that are smaller is 0.

So, total swapping is 2+5+1+1+3+2+0 = 14 swapping needed.

Learn more about bubble sort here:

brainly.com/question/14944048

#SPJ4

John wants to view Sarah’s assignment files on his computer. But he cannot open them because of version problems. Which upgrade should he perform to solve the problem?

Answers

Since John wants to view Sarah’s assignment files on his computer. The  upgrade that  John need to perform to solve the problem is option  E. Software upgrade

What is the Software upgrade about?

It is likely that John will need to perform a software upgrade to be able to view Sarah's assignment files.

This is because a software upgrade involves installing a newer version of the software that is capable of opening the files. A RAM upgrade, motherboard upgrade, and optical drive upgrade would not likely resolve the issue with John being unable to open the files.

Learn More about upgrade from

https://brainly.com/question/3638683

#SPJ1

See full question below

John wants to view Sarah's assignment files on his computer. But he cannot open them because of version problems. Which upgrade should he perform to solve the problem.

A. Software update

B. RAM upgrade

C. Motherboard upgrade

D. Optical drive upgrade

E. Software upgrade

You have just purchased a new USB drive that you want to use to troubleshoot the computers in your company as well as other network devices, such as printers and projectors. You need to format this new drive with a file system that will be recognized and used on all devices new and old.
When formatting your USB drive, which of the following file system types would meet MOST, if not all, of your needs?
CDFS
NTFS
NFS
FAT32

Answers

Answer:

Fat32

Explanation:

Fat32 is a universal format supported on almost every Operating System (Even WIN95 )

Other Questions
How many 4 digit even numbers can be formed using the digits 2 3 5 17 9? A truck costing $154,000 was destroyed when its engine caught fire. At the date of the fire, the accumulated depreciation on the truck was $70,000. An insurance check for $175,000 was received based on the replacement cost of the truck. The entry to record the insurance proceeds and the disposition of the truck will include a. A parabola can be drawn given a focus of (-8,6) and a directrix of y=0. Write the equation of the parabola in any form The medal to achieve at the Summer Olympics in London in 2012 is not composed solely of it is an alloy of gold, silver and bronze of cylindrical shape it had a diameter of 8.5 cm and a thickness of 7 mm Here are the percentages of the volume of a gold medal which occupied the alloy:(92.5% silver, 6.69% copper and 0.81% goldHere is the table giving the densities and the prices per g of each alloy Density/Price g/cm3 /gGold. 19.3. 42.55money. 10.5. 0.74copper. 8.9. 0.00751) Proves that there was only 6g of gold in this "gold medal"2) gives the total cost of the lethal contained in this medal. How many molecules of SF6 are in 81 moles 1. Study the social networks market in the US over the last 10 years. Discuss its competition characteristics using recent data (i.e., market share, customers, profits...)Which type of competition is achieved in this market? What are the changes in the industry which could lead to a change in market structure?(25 marks, 800 words)Answer this question like an essay with an introduction and a conclusion and 2/3 sections in between. Use 10 unique professional/academic references.Tips: Include an analysis of the environment such as the 5 forces of Porter to explain the change in industry structure. 1Jenny is arranging rows of chairs for the student play.There are 7 chairs in the first row.Each row behind the first row has two more chairs than the previous row.Complete the explicit definition for this sequence. Your answer must be fully simplified.Explicit Definition of an Arithmetic Sequencean = a + (n-1) dan= What are the 5 steps in the sanitizing food contact surfaces? Impacts of ICT on the society Romeo and Juliet. I need asap i will give brainliest Government aims (economic growth,employment,inflation and balance of payments ) It's spaghetti night at Emily's house! She has 8 ounces of freshly grated cheese to sprinkle evenly over 5 bowls of spaghetti. How much cheese will be in each bowl? _____ helps users gain information from large amounts of geographically linked dataa. data visualization toolsb. GISc. GDSSd. location analytics tool Between 1820 and 1850, most immigrants came from which two countries? a. france and great britain b. ireland and germanyc. ireland and france d. germany and great britain How did the United States respond to acts of aggression in Europe and Asia during the 1930s? The most commonly used isolation technique in microbiology laboratories is the _____?A. Enrichment cultureB. Viable plate count methodC. Pour-plate methodD. Streak-plate method What is the daily recommended allowance of fat and how much of that should be saturated? Help please! I would give brainliest and 50 points! It is a select all, if one answer then no brainliest! Here ya go. Select all that apply.Which of the following is true of all four civilizationsIndia, China, Egypt, and Sumer?They were located between two rivers.They established trade routes.They developed irrigation systems.They believed in many gods.They developed in river valleys.They invented plumbing systems. Community disruptions such as covid-19 and natural disasters can have deep and long-lasting impacts.a. Trueb. False Chronic inhalation of fine particles that reach the alveoli leads to ________ lung disease. ANSWER: fibrotic obstructive restrictive compliant congestive