You are a relatively junior programmer working on modules that collect data from loan application forms and convert them to formats required by the parts of the program that evaluate the applications. You find that some demographic data are missing from some forms, particularly race and age. What should your program do? What should you do? risk ,problems ,benefits and phase analyze
In: Computer Science
Describe your daily activities at your job as a Programmer Analyst and elaborate on the critical aspect of what you do? What value do you add to the IT Company? What makes you a valuable contributor to your team/organization? Give few examples.
Please answer in 350 words only and in word format only. No images please.
PLEASE ANSWER ALL THE QUESTIONS ASKED.
Thanks
In: Operations Management
In: Economics
A programmer plans to develop a new software system. In planning for the operating system that he will? use, he needs to estimate the percentage of computers that use a new operating system. How many computers must be surveyed in order to be 90?% confident that his estimate is in error by no more than four percentage points? B) Assume that a recent survey suggests that about 91?% of computers use a new operating system
In: Statistics and Probability
A programmer plans to develop a new software system. In planning for the operating system that he will use, he needs to estimate the percentage of computers that use a new operating system. How many computers must be surveyed in order to be 95% confident that his estimate is in error by no more than five percentage points question marks?
Complete parts (a) through (c) below. Round to nearest integer.
Assume that nothing is known about the percentage of computers with new operating systems.
n= ?
Assume that a recent survey suggests that about 89% of computers use a new operating system.
n = ?
Does the additional survey information from part (b) have much of an effect on the sample size that is required?
A - Yes, using the additional survey information from part (b) dramatically increases the sample size
B. - No, using the additional survey information from part (b) does not change the sample size.
C. - Yes, using the additional survey information from part (b) dramatically reduces the sample size.
D. - No, using the additional survey information from part (b) only slightly increases the sample size
In: Statistics and Probability
A programmer plans to develop a new software system. In planning for the operating system that he will use, he needs to estimate the percentage of computers that use a new operating system. How many computers must be surveyed in order to be
9595%
confident that his estimate is in error by no more than
fivefive
percentage
points question mark s?
Complete parts (a) through (c) below.
a) Assume that nothing is known about the percentage of computers with new operating systems.
nequals=nothing
(Round up to the nearest integer.)
b) Assume that a recent survey suggests that about
8989%
of computers use a new operating system.
nequals=nothing
(Round up to the nearest integer.)
c) Does the additional survey information from part (b) have much of an effect on the sample size that is required?
A.
Yes, using the additional survey information from part (b) dramatically increases the sample size.
B.
No, using the additional survey information from part (b) does not change the sample size.
C.
Yes, using the additional survey information from part (b) dramatically reduces the sample size.
D.
No, using the additional survey information from part (b) only slightly increases the sample size.
In: Statistics and Probability
A programmer plans to develop a new software system. In planning for the operating system that he will use, he needs to estimate the percentage of computers that use a new operating system. How many computers must be surveyed in order to be 99% confident that his estimate is in error by no more than three percentage points question marks?
a) Assume that nothing is known about the percentage of computers with new operating systems.
n=___
b) Assume that a recent survey suggests that about 85% of computers use a new operating system.
n=____
c) Does the additional survey information from part (b) have much of an effect on the sample size that is required?
In: Statistics and Probability
A programmer plans to develop a new software system. In planning for the operating system that he will use, he needs to estimate the percentage of computers that use a new operating system. How many computers must be surveyed in order to be 95% confident that his estimate is in error by no more than five percentage points question marks? Complete parts (a) through (c) below. a) Assume that nothing is known about the percentage of computers with new operating systems.
In: Statistics and Probability
You recently started working in at a University in the Math department as a software programmer. You need to build an app that can calculate the mod of two numbers. Users need to enter num1 and num2. The app should perform the calculation and display the output as num1 mod nub2 operation.
For example, 25 mod 5=0
24 mod 5 = 4
Once you implement the mod operations, then you need to add following buttons.
Follow these steps to complete the lab.
In: Computer Science
Arrays provide the programmer the ability to store a group of related variables in a list that can be accessed via an index. This is often very useful as most programs perform the same series of calculations on every element in the array. To create an array of 10 integers (with predefined values) the following code segment can be utilised:
int valueList[10] = {4,7,1,36,23,67,61,887,12,53};
To step through the array the index '[n]' need to be updated. One method of stepping through the array is via a 'for' loop. Based on the array ‘valueList’ create a small C++ application utilising a 'for' loop that steps through the array and determines the largest number in the list and prints out the index and value. Hint: Consider creating an integer that stores the current largest integer and then compares it with the next indexed value.
In: Computer Science