Float: 26.2
Array: c, o, m, p, u, t, er
Boolean: false
Character: c
The size of a list of integers can be found using python as follows;
size = len(list1)
<h3>How to find the size of a list using python?</h3>
The size of a list can be found using the len() function in python.
According to the question, the list is an integer.
Therefore, let's use an example below:
list1 = [1, 2, 1, 3, 6, 7, 8, 9, 4, 7, 8, 6, 4]
size = len(list1)
print(size)
Therefore, the size of a list of integers can be found using the len() function in python.
learn more on python here: brainly.com/question/14989942
#SPJ1
It stands for 'collateralized loan obligation'
Meaning,
A collateralized loan obligation (CLO) is a security backed by a pool of debt, often low-rated corporate loans.
The Microsoft Excel IF function returns one value if the condition is TRUE, or another value if the condition is FALSE. The IF function is a built-in function in Excel that is categorized as a Logical Function.
Answer:
#include<iostream>
using namespace std;
void main()
{
int townA_pop,townB_pop,count_years=1;
double rateA,rateB;
cout<<"please enter the population of town A"<<endl;
cin>>townA_pop;
cout<<"please enter the population of town B"<<endl;
cin>>townB_pop;
cout<<"please enter the grothw rate of town A"<<endl;
cin>>rateA;
cout<<"please enter the grothw rate of town B"<<endl;
cin>>rateB;
while(townA_pop < townB_pop)//IF town A pop is equal or greater than town B it will break
{
townA_pop = townA_pop +( townA_pop * (rateA /100) );
townB_pop = townB_pop +( townB_pop * (rateB /100) );
count_years++;
}
cout<<"after "<<count_years<<" of years the pop of town A will be graeter than or equal To the pop of town B"<<endl;
}
Explanation: