It lets them reach out to people on that platform that can advertise their products
Answer: ICT help banks improve the efficiency and effectiveness of services offered to customers, and enhances business processes, managerial decision making, and workgroup collaborations, which strengthens their competitive positions in rapidly changing and emerging economies.
Explanation: please give branliest I only need one more to make ace
Answer:
special_num = int(input())
if special_num == -99 or special_num == 0 or special_num == 44:
print('Special number')
else:
print('Not special number')
Explanation:
#get input
special_num = int(input())
#if function to evaluate true or false(aka Boolean)
if special_num == -99 or special_num == 0 or special_num == 44:
#true evaluation
print('Special number')
#false evaluation
print('Not special number')
In our bag, 1/2 is peanuts, 1/4 is chocolate and 1/4 is dried fruit.
The likelihood of drawing a chocolate therefore is 1/4.
The likelihood of drawing a peanut is 1/2 and the likelihood of drawing a dried fruit is 1/4.
Thus, D is the correct answer because the 1/4 likelihood of drawing a chocolate is less than the 1/2 chance of drawing a peanut.
Answer:
#include<iostream>
using namespace std;
//main function
int main(){
//initialize the variables
int n = 5;
int j=1;
// for loop
for(;j<=n;j++){
cout<<"*"; //print the '*'
}
}
Explanation:
Create the main function and declare the variable n with the value 5 and initialize the variable j with zero.
take a for loop for executing the statement again and again until a condition is not false.
Syntax for loop:
for(initialize; condition; increment/decrement)
{
statement;
}
we can initialize the variable outside as well but the semicolon always present in the loop otherwise compiler gives the error.
for example:
int i=0;
for(; i<4; i++){
statement;
}
The condition put in the original code is j <= n and n has the value 5. so, the loop executes 5 times and inside the loop, write the print statement for print the character '*'.