Computer Science, asked by lokeshloksai, 5 months ago

Week 3
L3.1: Presentation of datasets in the form of a table
LESSON
AQ3.1: Activity Question 1 - Not graded
ASSIGNMENT
Week 3 Tutorial 3.1
LESSON
L3.2: Below average students in two iterations (non-nested) and grade allocation
LESSON
AQ3.2: Activity Question 2 - Not graded
ASSIGNMENT
Week 3 Tutorial 3.2
LESSON
L3.3: Systematic process of hypothesis verification to find the relation between word length and frequency
LESSON
AQ3.3: Activity Question 3 - Not graded
ASSIGNMENT
L3.4: Three prizes problem
LESSON
AQ3.4: Activity Question 4 - Not graded
ASSIGNMENT
L3.5: Introduction to procedures and parameters
LESSON
AQ3.5: Activity Question 5 - Not graded
ASSIGNMENT
L3.6: Pseudocode for procedures and parameters (Part 1)
LESSON
AQ3.6: Activity Question 6 - Not graded
ASSIGNMENT
L3.7: Pseudocode for procedures and parameters (Part 2)
LESSON
AQ3.7: Activity Question 7 - Not graded
ASSIGNMENT
Week 3 Tutorial 3.3
LESSON
L3.8: Pseudocode for three prizes problem
LESSON
AQ3.8: Activity Question 8 - Not graded
ASSIGNMENT
L3.9: Side effects of procedures
LESSON
AQ3.9: Activity Question 9 - Not graded
ASSIGNMENT
Practice Assignment 3 - Not Graded
ASSIGNMENT
Practice Assignment 3 - PDF Solution
LESSON
Graded Assignment 3
ASSIGNMENT
Graded Assignment 3
Due date for this assignment: 2020-11-02, 23:59 IST.
You may submit any number of times before the due date. The final submission will be considered for grading.

Click here to download the PDF version of the Questions

**********************************************************
Here is the Datasets used in this week.
Click here to view the Data
**********************************************************

3 points
In the “Paragraph words” dataset, the procedure CountLongNouns counts the number of nouns that are longer than the average word length. Assume that the variable Avg holds the value of average word length. Choose the correct choice to complete the procedure.



if (X.LetterCount > Avg) {
Count = Count + 1
}

if (X.PartOfSpeech == “Noun”) {
Count = Count + 1
}

if (X.LetterCount > Avg or X.PartOfSpeech == “Noun”) {
Count = Count + 1
}
if (X.LetterCount > Avg and X.PartOfSpeech == “Noun”) {
Count = Count + 1
}
None of the above​

Answers

Answered by Anonymous
2

Answer:

by RP Duquia · 2014 · Cited by 37 · Related articles

For example, the use of a certain type of data impacts the amount of time it will take to collect the desired information (throughout the field ...

Similar questions