Indivisible Numbers
You are given a positive integer
The first line of input is an integer
The output should be an integer representing the number of positive integers satisfying the above condition.
In the given example,
11 is not divisible by any number from 2 to 10. It is divisible by only 1, 11.So, the output should be
2.
A point on a two-dimensional space has two numbers: an ‘X’ coordinate and a ‘Y’
coordinate such as (4, 5). Write a program that uses a structure called ‘point’ to model a
point and draw a rectangle of ‘*’ based on the entered height and width of the rectangle.
Sample Run:
Enter the point coordinates: (x, y)
3 2
Enter width of the rectangle: 3
Enter Height of the rectangle: 2
* * *
* * *
Generate the driver file (main.cpp) where you perform the following tasks. Note that you cannot make any change to
the header file or the source file.
Operation to Be Tested and Description of Action Input Values Expected Output
Create a list of integers Print length of the list
3-digit Armstrong Number
Write a Python program of 3-digit Armstrong Number. It consists of two test cases
The below link contains 3-digit Armstrong Number - Question, explanation and test cases
https://drive.google.com/file/d/1TDj5IcRLuj8MFif4X8tqX9KBoZrr4nO-/view?usp=sharing
We need all test caese can be come while code was running
Compute Hypotenuse
Write a Python program of Compute Hypotenuse. It consists of two test cases
The below link contains Compute Hypotenuse - Question, explanation and test cases
https://drive.google.com/file/d/1DsHiww7KUZhE-FrD_NxDBreZUlkhCmBL/view?usp=sharing
We need all test caese can be come while code was running
Uncommon Number
Write a Python program of Uncommon Number. It consists of two test cases
The below link contains Uncommon Number - Question, explanation and test cases
https://drive.google.com/file/d/1jkxCFS8UyRSlxvHFJ95HO_0Tq5JTf5nY/view?usp=sharing
We need all test caese can be come while code was running
Calculate Double or Triple
Write a Python program of Calculate Double or Triple. It consists of two test cases
The below link contains Calculate Double or Triple - Question, explanation and test cases
https://drive.google.com/file/d/1KhGDfF3F_z2lSwKOmcNZYqBCEW67WXm8/view?usp=sharing
We need all test caese can be come while code was running
Develop an EER model for the following situation:
A person may be employed by one or more organizations and each
organization may be the employer of one or more persons. An
organization can be internal organizational unit or an external
organization. For persons and organizations, we want to know their
ID, name, address and phone number. For persons we want to
know their birthdate, and for organizations, we want to know their
budget number. For each employment, we want to know the
employment date, termination date and bonus.
Employment of a person by an organization may result in the
person holding many positions over time. For each position, we
know its title, and each time someone holds that position, we need
to know the start date and termination date and salary. An
organization is responsible for each position. It is possible for a
person to be employed by one organization and hold a position for
which another organization is responsible.