Answer: INTANGIBILITY
Explanation: Financial softwares are special computer applications that help to effectively record and facilitate financial services and activities within or outside a business entity.
Financial softwares can be classified into two categories based on the financial sector it covers.
(1) Tax financial softwares are financial softwares that are focused on handling Tax related financial services or activities.
(2) Money management software is a financial software specifically made to handle money matters and transactions.
Most computer softwares are INTANGIBLE as they don't involve Physical handling of material resources.
Answer:
Algorithm:
1. Declare and initialize variable one_dog_year=7.
2.Ask user to give dog age.
2.1 Read the dog age and assign it to variable "dog_age".
3.Create a variable "human_age" to store the equivalent human age.
3.1 Calculate equivalent human age as "human_age=one_dog_year*dog_age".
4.Print the equivalent human age of dog age.
7. End the program.
// here is algorithm implemented in c++
#include <bits/stdc++.h>
using namespace std;
int main()
{
// initialize one dog year
int one_dog_year=7;
int dog_age;
int equi_h_age;
cout<<"Enter the dog age:";
// read the dog age
cin>>dog_age;
//calculate the equivalent human age
equi_h_age=dog_age*one_dog_year;
cout<<"equivalent human age is : "<<equi_h_age<<endl;
return 0;
}
Output:
Enter the dog age:2
equivalent human age is : 14
Answer:
The python program is given with appropriate comments
Explanation:
#Implementation of printStars function
def printStars(n):
#check if n is greater than 0
if n>0:
for i in range(n):
print ('*', end="")
#Declare starCount and initialize some negative integer
starCount = -8
if starCount>0:
print ('*', end="")
printStars(starCount-1)
Explanation:
This term is used in programming languages/concepts, database management, systems design, etc. It's defined as a singular, identifiable and separate object, a thing of interest to an organization, system or individual about which data is to be held. Each of these entities have attributes (properties or characteristics) and can be considered as separate wholes.
Some examples of entities are:
- In a system: discrete or separate components
- In general, users, components and organizations.
I hope you find this information useful and interesting! Good luck!
Answer:
I would say D hope this helps