Question

Hi , I need help with a Matlab homework that calculate the GPA an CGPA.

NOTE: The GPA in the university is out of 5 not 4.

Thank you. 3. Student obtain his individual project to build an automated programming to calculate the GPA and CGPA using an interactive

0 0
Add a comment Improve this question Transcribed image text
Answer #1

function varargout = mygpa(varargin)

% MYGPA M-file for mygpa.fig

% MYGPA, by itself, creates a new MYGPA or raises the existing

% singleton*.

%

% H = MYGPA returns the handle to a new MYGPA or the handle to

% the existing singleton*.

%

% MYGPA('CALLBACK',hObject,eventData,handles,...) calls the local

% function named CALLBACK in MYGPA.M with the given input arguments.

%

% MYGPA('Property','Value',...) creates a new MYGPA or raises the

% existing singleton*. Starting from the left, property value pairs are

% applied to the GUI before mygpa_OpeningFcn gets called. An

% unrecognized property name or invalid value makes property application

% stop. All inputs are passed to mygpa_OpeningFcn via varargin.

%

% *See GUI Options on GUIDE's Tools menu. Choose "GUI allows only one

% instance to run (singleton)".

%

% See also: GUIDE, GUIDATA, GUIHANDLES

% Edit the above text to modify the response to help mygpa

% Last Modified by GUIDE v2.5 14-Apr-2012 03:41:49

% Begin initialization code - DO NOT EDIT

gui_Singleton = 1;

gui_State = struct('gui_Name', mfilename, ...

'gui_Singleton', gui_Singleton, ...

'gui_OpeningFcn', @mygpa_OpeningFcn, ...

'gui_OutputFcn', @mygpa_OutputFcn, ...

'gui_LayoutFcn', [] , ...

'gui_Callback', []);

if nargin && ischar(varargin{1})

gui_State.gui_Callback = str2func(varargin{1});

end

if nargout

[varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});

else

gui_mainfcn(gui_State, varargin{:});

end

% End initialization code - DO NOT EDIT

% --- Executes just before mygpa is made visible.

function mygpa_OpeningFcn(hObject, eventdata, handles, varargin)

% This function has no output args, see OutputFcn.

% hObject handle to figure

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

% varargin command line arguments to mygpa (see VARARGIN)

% Choose default command line output for mygpa

handles.output = hObject;

% Update handles structure

guidata(hObject, handles);

% UIWAIT makes mygpa wait for user response (see UIRESUME)

% uiwait(handles.figure1);

% --- Outputs from this function are returned to the command line.

function varargout = mygpa_OutputFcn(hObject, eventdata, handles)

% varargout cell array for returning output args (see VARARGOUT);

% hObject handle to figure

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

% Get default command line output from handles structure

varargout{1} = handles.output;

% --- Executes on selection change in c1.

function c1_Callback(hObject, eventdata, handles)

% hObject handle to c1 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

% Hints: contents = cellstr(get(hObject,'String')) returns c1 contents as cell array

% contents{get(hObject,'Value')} returns selected item from c1

% --- Executes during object creation, after setting all properties.

function c1_CreateFcn(hObject, eventdata, handles)

% hObject handle to c1 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles empty - handles not created until after all CreateFcns called

% Hint: popupmenu controls usually have a white background on Windows.

% See ISPC and COMPUTER.

if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

% --- Executes on selection change in g1.

function g1_Callback(hObject, eventdata, handles)

% hObject handle to g1 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

% Hints: contents = cellstr(get(hObject,'String')) returns g1 contents as cell array

% contents{get(hObject,'Value')} returns selected item from g1

% --- Executes during object creation, after setting all properties.

function g1_CreateFcn(hObject, eventdata, handles)

% hObject handle to g1 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles empty - handles not created until after all CreateFcns called

% Hint: popupmenu controls usually have a white background on Windows.

% See ISPC and COMPUTER.

if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

% --- Executes on selection change in g2.

function g2_Callback(hObject, eventdata, handles)

% hObject handle to g2 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

% Hints: contents = cellstr(get(hObject,'String')) returns g2 contents as cell array

% contents{get(hObject,'Value')} returns selected item from g2

% --- Executes during object creation, after setting all properties.

function g2_CreateFcn(hObject, eventdata, handles)

% hObject handle to g2 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles empty - handles not created until after all CreateFcns called

% Hint: popupmenu controls usually have a white background on Windows.

% See ISPC and COMPUTER.

if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

% --- Executes on selection change in c2.

function c2_Callback(hObject, eventdata, handles)

% hObject handle to c2 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

% Hints: contents = cellstr(get(hObject,'String')) returns c2 contents as cell array

% contents{get(hObject,'Value')} returns selected item from c2

% --- Executes during object creation, after setting all properties.

function c2_CreateFcn(hObject, eventdata, handles)

% hObject handle to c2 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles empty - handles not created until after all CreateFcns called

% Hint: popupmenu controls usually have a white background on Windows.

% See ISPC and COMPUTER.

if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

% --- Executes on selection change in g3.

function g3_Callback(hObject, eventdata, handles)

% hObject handle to g3 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

% Hints: contents = cellstr(get(hObject,'String')) returns g3 contents as cell array

% contents{get(hObject,'Value')} returns selected item from g3

% --- Executes during object creation, after setting all properties.

function g3_CreateFcn(hObject, eventdata, handles)

% hObject handle to g3 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles empty - handles not created until after all CreateFcns called

% Hint: popupmenu controls usually have a white background on Windows.

% See ISPC and COMPUTER.

if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

% --- Executes on selection change in c3.

function c3_Callback(hObject, eventdata, handles)

% hObject handle to c3 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

% Hints: contents = cellstr(get(hObject,'String')) returns c3 contents as cell array

% contents{get(hObject,'Value')} returns selected item from c3

% --- Executes during object creation, after setting all properties.

function c3_CreateFcn(hObject, eventdata, handles)

% hObject handle to c3 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles empty - handles not created until after all CreateFcns called

% Hint: popupmenu controls usually have a white background on Windows.

% See ISPC and COMPUTER.

if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

% --- Executes on selection change in g4.

function g4_Callback(hObject, eventdata, handles)

% hObject handle to g4 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

% Hints: contents = cellstr(get(hObject,'String')) returns g4 contents as cell array

% contents{get(hObject,'Value')} returns selected item from g4

% --- Executes during object creation, after setting all properties.

function g4_CreateFcn(hObject, eventdata, handles)

% hObject handle to g4 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles empty - handles not created until after all CreateFcns called

% Hint: popupmenu controls usually have a white background on Windows.

% See ISPC and COMPUTER.

if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

% --- Executes on selection change in c4.

function c4_Callback(hObject, eventdata, handles)

% hObject handle to c4 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

% Hints: contents = cellstr(get(hObject,'String')) returns c4 contents as cell array

% contents{get(hObject,'Value')} returns selected item from c4

% --- Executes during object creation, after setting all properties.

function c4_CreateFcn(hObject, eventdata, handles)

% hObject handle to c4 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles empty - handles not created until after all CreateFcns called

% Hint: popupmenu controls usually have a white background on Windows.

% See ISPC and COMPUTER.

if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

% --- Executes on selection change in c6.

function c6_Callback(hObject, eventdata, handles)

% hObject handle to c6 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

% Hints: contents = cellstr(get(hObject,'String')) returns c6 contents as cell array

% contents{get(hObject,'Value')} returns selected item from c6

% --- Executes during object creation, after setting all properties.

function c6_CreateFcn(hObject, eventdata, handles)

% hObject handle to c6 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles empty - handles not created until after all CreateFcns called

% Hint: popupmenu controls usually have a white background on Windows.

% See ISPC and COMPUTER.

if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

% --- Executes on selection change in g6.

function g6_Callback(hObject, eventdata, handles)

% hObject handle to g6 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

% Hints: contents = cellstr(get(hObject,'String')) returns g6 contents as cell array

% contents{get(hObject,'Value')} returns selected item from g6

% --- Executes during object creation, after setting all properties.

function g6_CreateFcn(hObject, eventdata, handles)

% hObject handle to g6 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles empty - handles not created until after all CreateFcns called

% Hint: popupmenu controls usually have a white background on Windows.

% See ISPC and COMPUTER.

if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

% --- Executes on selection change in g5.

function g5_Callback(hObject, eventdata, handles)

% hObject handle to g5 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

% Hints: contents = cellstr(get(hObject,'String')) returns g5 contents as cell array

% contents{get(hObject,'Value')} returns selected item from g5

% --- Executes during object creation, after setting all properties.

function g5_CreateFcn(hObject, eventdata, handles)

% hObject handle to g5 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles empty - handles not created until after all CreateFcns called

% Hint: popupmenu controls usually have a white background on Windows.

% See ISPC and COMPUTER.

if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

% --- Executes on selection change in c5.

function c5_Callback(hObject, eventdata, handles)

% hObject handle to c5 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

% Hints: contents = cellstr(get(hObject,'String')) returns c5 contents as cell array

% contents{get(hObject,'Value')} returns selected item from c5

% --- Executes during object creation, after setting all properties.

function c5_CreateFcn(hObject, eventdata, handles)

% hObject handle to c5 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles empty - handles not created until after all CreateFcns called

% Hint: popupmenu controls usually have a white background on Windows.

% See ISPC and COMPUTER.

if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

% --- Executes on selection change in c7.

function c7_Callback(hObject, eventdata, handles)

% hObject handle to c7 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

% Hints: contents = cellstr(get(hObject,'String')) returns c7 contents as cell array

% contents{get(hObject,'Value')} returns selected item from c7

% --- Executes during object creation, after setting all properties.

function c7_CreateFcn(hObject, eventdata, handles)

% hObject handle to c7 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles empty - handles not created until after all CreateFcns called

% Hint: popupmenu controls usually have a white background on Windows.

% See ISPC and COMPUTER.

if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

% --- Executes on selection change in g7.

function g7_Callback(hObject, eventdata, handles)

% hObject handle to g7 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

% Hints: contents = cellstr(get(hObject,'String')) returns g7 contents as cell array

% contents{get(hObject,'Value')} returns selected item from g7

% --- Executes during object creation, after setting all properties.

function g7_CreateFcn(hObject, eventdata, handles)

% hObject handle to g7 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles empty - handles not created until after all CreateFcns called

% Hint: popupmenu controls usually have a white background on Windows.

% See ISPC and COMPUTER.

if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

% --- Executes on selection change in g8.

function g8_Callback(hObject, eventdata, handles)

% hObject handle to g8 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

% Hints: contents = cellstr(get(hObject,'String')) returns g8 contents as cell array

% contents{get(hObject,'Value')} returns selected item from g8

% --- Executes during object creation, after setting all properties.

function g8_CreateFcn(hObject, eventdata, handles)

% hObject handle to g8 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles empty - handles not created until after all CreateFcns called

% Hint: popupmenu controls usually have a white background on Windows.

% See ISPC and COMPUTER.

if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

% --- Executes on selection change in c8.

function c8_Callback(hObject, eventdata, handles)

% hObject handle to c8 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

% Hints: contents = cellstr(get(hObject,'String')) returns c8 contents as cell array

% contents{get(hObject,'Value')} returns selected item from c8

% --- Executes during object creation, after setting all properties.

function c8_CreateFcn(hObject, eventdata, handles)

% hObject handle to c8 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles empty - handles not created until after all CreateFcns called

% Hint: popupmenu controls usually have a white background on Windows.

% See ISPC and COMPUTER.

if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

% --- Executes on button press in pushbutton1.

function pushbutton1_Callback(hObject, eventdata, handles)

% hObject handle to pushbutton1 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

C=[0 5 4 3 2 1];

G=[0 5.00 4.50 4.00 3.75 3.50 3.00 2.50 2.00 1.50 1.00 0.00];

cc(1)=C(get(handles.c1,'Value'));

gg(1)=G(get(handles.g1,'Value'));

cc(2)=C(get(handles.c2,'Value'));

gg(2)=G(get(handles.g2,'Value'));

cc(3)=C(get(handles.c3,'Value'));

gg(3)=G(get(handles.g3,'Value'));

cc(4)=C(get(handles.c4,'Value'));

gg(4)=G(get(handles.g4,'Value'));

cc(5)=C(get(handles.c5,'Value'));

gg(5)=G(get(handles.g5,'Value'));

cc(6)=C(get(handles.c6,'Value'));

gg(6)=G(get(handles.g6,'Value'));

cc(7)=C(get(handles.c7,'Value'));

gg(7)=G(get(handles.g7,'Value'));

cc(8)=C(get(handles.c8,'Value'));

gg(8)=G(get(handles.g8,'Value'));

cc(9)=C(get(handles.c9,'Value'));

gg(9)=G(get(handles.g9,'Value'));

cc(10)=C(get(handles.c10,'Value'));

gg(10)=G(get(handles.g10,'Value'));

GPA=sum(cc.*gg)/sum(cc);

set(handles.GPA,'String',GPA)

global ABCXYZ ;

ABCXYZ=(sum(cc));

XX(GPA);

function cgpa0_Callback(hObject, eventdata, handles)

% hObject handle to cgpa0 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

% Hints: get(hObject,'String') returns contents of cgpa0 as text

% str2double(get(hObject,'String')) returns contents of cgpa0 as a double

% --- Executes during object creation, after setting all properties.

function cgpa0_CreateFcn(hObject, eventdata, handles)

% hObject handle to cgpa0 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles empty - handles not created until after all CreateFcns called

% Hint: edit controls usually have a white background on Windows.

% See ISPC and COMPUTER.

if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

function ch0_Callback(hObject, eventdata, handles)

% hObject handle to ch0 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

% Hints: get(hObject,'String') returns contents of ch0 as text

% str2double(get(hObject,'String')) returns contents of ch0 as a double

% --- Executes during object creation, after setting all properties.

function ch0_CreateFcn(hObject, eventdata, handles)

% hObject handle to ch0 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles empty - handles not created until after all CreateFcns called

% Hint: edit controls usually have a white background on Windows.

% See ISPC and COMPUTER.

if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

% --- Executes on button press in pushbutton2.

function pushbutton2_Callback(hObject, eventdata, handles)

% hObject handle to pushbutton2 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

cgpa_previous=(get(handles.cgpa0 ,'String'));

ch_previous=(get(handles.ch0 ,'String'));

gpa_current=(get(handles.GPA ,'String'));

cgpa_previous=str2num(cgpa_previous);

ch_previous=str2num(ch_previous);

gpa_current=str2num(gpa_current);

global ABCXYZ;

ccgpa=(gpa_current.*ABCXYZ+cgpa_previous.*ch_previous)./(ABCXYZ+ch_previous);

set(handles.CCGPA,'String',ccgpa);

XX(ccgpa);

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

function XX(t)

if t==5

msgbox('Parable Performance!','CGPA','replace');return;

end

if t>=4.5

msgbox('Very Excellent Performance!','CGPA','replace');return;

end

if t>=4

msgbox('Excellent Performance!','CGPA','replace');return;

end

if t>=3.5

msgbox(' Good Performance!','CGPA','replace');return;

end

if t>=3

msgbox('Fair!','CGPA','replace');return;

end

if t>=2

msgbox('You Need To work evenmore!','CGPA','replace');return;

end

if t<2

msgbox('Bad Perfprmance!','CGPA','replace');return;

end

Add a comment
Know the answer?
Add Answer to:
Hi , I need help with a Matlab homework that calculate the GPA an CGPA. NOTE:...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Need help on this Matlab problem, I do not know how to do it Problem 2....

    Need help on this Matlab problem, I do not know how to do it Problem 2. (2D Sorting) The following table contains the scores for the 4 students A,B.C and D for four Homeworks HW1 50 20 85 65 HW2HW 45 80 30 95 HW4 75 35 15 80 Student A Student B Student C Student D 40 60 100 a) Create a matrix with the above data b) What is the minimum score of all four homework? (use the...

  • I need help solving these questions,please don’t know how to solve it by using matlab.!

    i need help solving these questions,please don’t know how to solve it by using matlab.! Solve the following questions Ol: You are required to develop a script to calculate the volume of a pyramid, which is 1/3 *base *height, where the base is length *width. Prompt the user to enter values for the length, width, and height, and then calculate the volume of the pyramid. When the user enters each value, he or she will then also be prompted to...

  • can someone help with this? need to use c++. The aim of this homework assignment is...

    can someone help with this? need to use c++. The aim of this homework assignment is to practice writing classes. This homework assignment will help build towards project I, which will be to write a program implementing Management of Rosters System. For this assignment, write a class called Student. This class should contain information of a single student. This information includes: last name, first name, standing, credits gpa, date of birth, matriculation date. For now you can store date of...

  • (C++ programming) Need help with homework. Write a program that can be used to gather statistical...

    (C++ programming) Need help with homework. Write a program that can be used to gather statistical data about the number of hours per week college students play video games. The program should perform the following steps: 1). Read data from the input file into a dynamically allocated array. The first number in the input file, n, represents the number of students that were surveyed. First read this number then use it to dynamically allocate an array of n integers. On...

  • GPA calculator: Assume the user has a bunch of courses they took, and need to calculate...

    GPA calculator: Assume the user has a bunch of courses they took, and need to calculate the overall GPA. We will need to get the grade and number of units for each course. It is not ideal to ask how many courses they took, as they have to manually count their courses. Programming is about automation and not manual work. We will create a textual menu that shows 3 choices. 1. Enter course grade and units. 2. Show GPA. 3....

  • hi i just need help with my nursing homework using DA. if anyone out there can...

    hi i just need help with my nursing homework using DA. if anyone out there can show the step by step DA that would be amazing! thank you!!!! Child's weght: 36.6 kg. Available: Vibramycin SYRUP doxycycline calcium oral suspension Pfizer Calou NDC 0009-0971-33 6188 50 mg/5 mlt 1 PINT (473m) Hach teasooonful caing daytyine calium soma ot eonytyne USUAL DOSAGE Vibramycin SYRUP doxycycine calclum aral ssgension Canum ivalent first day eo0mg ery 12 soun fo maintnnda dos Cidren aboe aight...

  • C++ Homework Help: The text file that it wants you to download is this: Name: Peter...

    C++ Homework Help: The text file that it wants you to download is this: Name: Peter Parker CSCI-261: 95 CSCI-262: 90.625 CSCI-442: 91.20 Name: Mary Smith CSCI-442: 65.0 CSCI-562: 79.1234 CSCI-580: 70.24 Name: Pat Brown CSCI-562: 95 CSCI-565: 88.0 CSCI-580: 91.20 Name: Linda Williams CSCI-262: 65.0 CSCI-306: 67.719 CSCI-562: 70.200 Name: John Miller CSCI-261: 95.281 CSCI-306: 90.625 CSCI-565: 91.20 Name: Patricia Johnson CSCI-306: 65.012 CSCI-442: 84.76 CSCI-580: 70 Name: Brian Hall CSCI-261: 65.0 CSCI-306: 84.712 CSCI-442: 75.24 Name: Sandra Nelson...

  • I need help please... Intro to Programming in C – small program 8 Project objective: To...

    I need help please... Intro to Programming in C – small program 8 Project objective: To compile, build, and execute an interactive program using character arrays and string.h functions **Submit source code (prog8.c) through Canvas • One source code file (unformatted text) will be submitted • The file name must match the assignment • The code should be tested and run on a Microsoft compiler before it is uploaded onto Canvas • The code must be submitted on time in...

  • Hi, I need help on (I), (II) and (III). Thank you. S'19 Prof. Stahl 359M Environmental...

    Hi, I need help on (I), (II) and (III). Thank you. S'19 Prof. Stahl 359M Environmental Economics HW 1 1. A small village of 1000 families in Outer Bodiva has a single coal burning factory that pollutes the air. A Peace Corps volunteer suggests a project that would install smokestack filters and significantly reduce the air pollution. The project will require 2000 hours of labor. If the project is undertaken, each family will enjoy a gross benefit of y, measured...

  • I need help for part B and C 1) Create a new project in NetBeans called...

    I need help for part B and C 1) Create a new project in NetBeans called Lab6Inheritance. Add a new Java class to the project called Person. 2) The UML class diagram for Person is as follows: Person - name: String - id: int + Person( String name, int id) + getName(): String + getido: int + display(): void 3) Add fields to Person class. 4) Add the constructor and the getters to person class. 5) Add the display() method,...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT