Define of Group Work. Analyze the dynamics of group process
See Answer →Explain the concept of Social Casework. List major landmarks in the history of casework development.
See Answer →What is the purpose of using Huffman Codes? Explain the steps of building a huffman tree. Design the Huffman codes for the following set of characters and their frequencies: a:15, e:19, s:5, d:6, f:4, g:7, h:8, t:10.
See Answer →What is a Greedy Approach to Problem-solving? Formulate the fractional Knapsack Problem as an optimisation problem and write a greedy algorithm to solve this problem. Solve the following fractional Knapsack problem using this algorithm. Show all the steps. Suppose there is a knapsack of capacity 15 Kg and 6 items are to packed in it. The weight and profit of the items are as under:
(p1, p2,…, p6) = (3, 2, 4, 5, 1, 6)
(w1, w2,…, w6) = (2, 1, 2, 1, 5, 1)
See Answer →The following data were collected on students' Mathematics and Physics scores. Use R programming to fit a linear regression line to predict the effect of Mathematics scores on the Physics scores of a student. Also, predict the Physics score of a student whose Mathematics score is 80.
The weights of 50 adults aged 20-35 years, measured in Kilograms, are given below. Perform the tasks (i) to (iv) using R programming
(i) Find the minimum and maximum weight.
(ii) Find the percentage of adults whose weight is between 65 and 75 Kilograms.
(iii)Create and draw the frequency distribution with the help of a relevant graph.
(iv)Find the outlier of the data.
Write and explain the linear search algorithm and discuss its best and worstcase time complexity. Show the working of the linear search algorithm for the data: 12, 11, 3, 9, 15, 20, 18, 19, 13, 8, 2, 1, 16.
See Answer →Use Google App Engine and write a Google app engine program to validate users using username and password and deploy it to Google Cloud.
See Answer →Write the steps of installing Oracle Virtual Box on a laptop. Also, describe the features of the Oracle Virtual Box.
See Answer →Use Google Slides and prepare nine slides on the topic “Software as a Service (SaaS)” in a group of three students by sharing the Google Slides in your group in edit mode. Every group member should make three slides each and contribute to the slides of other members of her/his group.
See Answer →Use Google Sheets and create a spreadsheet containing the marks of 10 students under the headings – student name, phone, and marks out of 100 in 5 different subjects. Find the students' grades in each subject using the formula below. Also, compute the Cumulative Grade Point Average for each student.
Cumulative Grade Point Average = Average of Grade Points of all the subjects.
Grade Points: A-5; B-4; C-3; D-4; E-1.
The Grades are computed as:
If marks >= 75 Grade = A;
If marks <75 and marks >= 60 Grade = B;
If marks <60 and marks >= 50 Grade = C;
If marks <50 and marks >= 40 Grade = D;
If marks <40 Grade = E;
Use Google Docs to create your Curriculum Vitae document. Store it on Google Drive and share it with two friends who can view and comment on it.
See Answer →Write a Python Program to implement FP tree growth Algorithm on a dataset of your own choice.
See Answer →Take a Data set as per your choice, implement and execute on different inputs of K-Means clustering algorithm
See Answer →Write a Python Program to implemen Support Vector Machines for data classification, choose dataset of your own choice
See Answer →Take a real time example to implement KNN- classification algorithm in Python.
See Answer →Implement logistic regression in Python. Take the data set as input of your choice.
See Answer →Write a Python Program to implement the Backtracking approach to solve N Queen’s problem
See Answer →