Answer:
- def is_prime(n):
- for i in range(2, n):
- if(n % i == 0):
- return False
- return True
-
- prime_truths = [is_prime(x) for x in range(2,101)]
- print(prime_truths)
Explanation:
The solution code is written in Python 3.
Presume there is a given function is_prime (Line 1 - 5) which will return True if the n is a prime number and return False if n is not prime.
Next, we can use the list comprehension to generate a list of True and False based on the prime status (Line 7). To do so, we use is_prime function as the expression in the comprehension list and use for loop to traverse through the number from 2 to 100. The every loop, one value x will be passed to is_prime and the function will return either true or false and add the result to prime_truth list.
After completion of loop within the comprehension list, we can print the generated prime_truths list (Line 8).
Answer:
d) Social networking sites
Explanation:
-Intranet is a network that is created by an organization to share information, tools and different services inside the company.
-Wikis are websites used to share content and knowledge and different users can modify the information.
-VoIP is a technology that allows you to make calls over the internet.
-Social networking sites are online platforms that allow people to connect with organizations and other people, create communities online and share different types of information.
-Unified communications is a system that has different communication methods through a single application.
According to this, the collaboration technology that is becoming more and more popular within organizations because it provides a means for forming ad hoc groups, networking and locating potential business allies is social networking sites.
Answer:(c) abstract class A { abstract void unfinished(); }
Explanation:
A legal abstract class must have the keyword abstract before the class and an abstract class has abstract functions with the keyword abstract written and a void as the return type.
Additional resource needed for the projects
Additional time needed for the project
<u>Explanation:</u>
In any project handing their will expected diversion and add on requirement, so to complete a project additional time and additional resource is required to finish a project.
As advice due the project details, end user has keep enough buffer for deviations on resource of man power and additional times taken to finish the project.
While design the project each scope of work is measure with additional time to complete the task
Each scope of work is considered as task in project management.
Answer:I believe that the most fitting answer for this question would be D., "conventions." All styles and periods of literature have their own conventions for spelling, punctuation, grammar, and capitalization. They change over the centuries and between different writers. You can also find this answer by using the process of elimination. Clarity, context, and coherence do not really have anything to do with these things. Hope this helps.