Answer:
// Program is written in C++
// Comments are used to explain some lines
// Only the required function is written. The main method is excluded.
#include<bits/stdc++.h>
#include<iostream>
using namespace std;
int divSum(int num)
{
// The next line declares the final result of summation of divisors. The variable declared is also
//initialised to 0
int result = 0;
// find all numbers which divide 'num'
for (int i=2; i<=(num/2); i++)
{
// if 'i' is divisor of 'num'
if (num%i==0)
{
if (i==(num/i))
result += i; //add divisor to result
else
result += (i + num/i); //add divisor to result
}
}
cout<<result+1;
}
Answer:
Web Browser
Explanation:
Because you dont use a messaging app or presentation software to look up stuff its common knowledge
Answer:
An architect will help you determine exactly what you need and come up with inventive ideas to solve even the most complex design problems. Think of us as professional 3D problem solvers! An architect can and should lift your project out of the ordinary.
Explanation:
What are the 3 main functions of an architect?
Design: Architects must design, plan, and develop concepts to create construction plans and technical documents. These are based on client requirements and ideas. Research: Architects must learn about the different building codes, safety regulations, construction innovations and city laws that affect their designs
What are the 7 types of architecture?
There are several main types of architects who focus on different types of structures and designs.
...
Commercial Architects
Office buildings / skyscrapers.
Hotels.
Bridges.
Schools.
Museums.
Government buildings.
Multi-unit residential buildings.
Pretty much any type of building that's not a residential home.
Answer:
1
Explanation:
because every time you dived a number by its own number it is 1
The reason that it is not advisable to wear Ornament like ring at work shop is that rings can be easily get caught and fingers or the hands of the person can be injured, cut, scared etc.
<h3>Why should you not wear a ring at work?</h3>
Jewelry is known to bring about a lot of safety hazards for people working around chemicals and others.
Note that the reason that it is not advisable to wear Ornament like ring at work shop is that rings can be easily get caught and fingers or the hands of the person can be injured, cut, scared etc.
Learn more about Ornament from
brainly.com/question/24286720
#SPJ1