Write A Program That Will Allow Input Of Three Test Scores

Nov 25, 2010

I am working on an assignment for my Programming Logic and Design class. I also noticed a couple other similar posts but after going through them I still have an issue. I was suppose to write a program that will allow input of three test scores, average them then display a letter grade in a box. At this point the only thing that is being displayed is "F". [code]

View 3 Replies


ADVERTISEMENT

Create A Program Which Promps The User To Enter An Unlimited Number Of Test Scores

Jul 7, 2011

Create a program which promps the user to enter an unlimited number of test scores. The program should show the high score and the low score. You should use a loop of your choice within this program. The program should look similar to the one below:

View 3 Replies

Test Scores / Have An Average Score?

Dec 6, 2009

I have made it so my code will print out the average score of all the test as one. but for each student i need to have an average score.

Public Class frmMain
Structure TestScores
Public decTest1 As Decimal
Public decTest2 As Decimal

[code].....

View 5 Replies

Letter Grade Based On Test Scores?

Nov 19, 2010

I need someone with patience and can go through a solution with me from the Clearly Visual Basic book. I'm good with computers and can usually learn things relatively fast on my own time and in my own way, but I'm going to school for computer programming and, with certain things, I learn better with things explained to me rather than reading from a book. If someone has the time to go over this solution I'm doing and explain it to me in a way I'd have a better chance of understanding, I'd be truly grateful. I need a tutor, for lack of a better word. The lab I'm doing is from the Clearly Visual Basic book and the instructions are:

Code an application that displays a letter grade based on the averages of three test scores. Code the application using a function to determine and return the letter grade. If the average is at least 90, the grade is A. If the average is at least 80 but less than 90, the grade is B. If the average is at least 70 but less than 80 the grade is C. If the average is at least 60 but less than 70, the grade is D. If the average is below 60, the grade is F.

[Code]...

View 17 Replies

Create An Application That Allows A User To Enter Three Test Scores Each For Three Students?

Sep 30, 2009

I am a new user to VB and I am having difficulty with one of my assignments. The assignment states that to create an application that allows a user to enter three test scores each for three students. The application should calculate each student's average test score and assign a letter grade. The application should prompt the user for each student's name and three test scores.

[Code]...

View 3 Replies

Posting Lines From A Text File (test Scores) Into An Array?

Oct 31, 2011

I need assistance with posting lines from a text file (test scores) into an array. From there, I'll have to average the test scores, find the standard deviation (without using the built in function) and assign grades based on the test scores' deviation. I have already written the code for the user to search and upload a text file. And I should be able to do the standard deviation of the array, if someone can help give me an example of how to send the text file to array and average the lines of the array without using the built in math functions.

[Code]...

View 15 Replies

VS 2010 Test Score Calc - Let The User Add Scores To The List

Feb 8, 2012

I'm not sure where I'm going wrong with this. it's supposed to let the user add scores to the list, then calculate the total, average, and count. However, it doesn't let me add more values to the list. Any help whatsoever would be awesome! Keep in mind, I am new to VB and programming languages, and was just playing around with code hoping for any sort of positive result, and therefore some of the code may not be necessary, or make sense. Here's what I have now:

[Code]....

View 2 Replies

Numbrix Puzzle - Write And Test A Vb Program ?

Sep 9, 2009

I have to design, write and test a vb program to help the user slove the numbrix puzzle

so far I had this

[code]

View 3 Replies

VS 2008 Array - Write A Program For A User To Take A 20 Question Test

Apr 22, 2009

I have to write a program for a user to take a 20 question test (A, B, C, D). The users answers will be stored in an array and compared with a 2nd array that has the correct answers. Its then supposed to go to a 2nd form when you click show score, grade it, and display whether each answer was right or wrong. I'm missing something easy probably.

CODE:

View 5 Replies

VS 2010 Array - Small Report Card Project - Pull 5 Students With Each Student Having 5 Test Scores A Piece

Jan 13, 2012

I'm basically trying to do a small report card project. I only need to pull 5 Students with each student having 5 Test Scores a piece. The full Code of what I have for the submit button is below. I have actually 3 questions.

1. I always seem to have trouble with them unless I initialize them when I dim them. Is there a better way than below

2. The below code works really well for Student 1 and all 5 test scores. Rather than do that code 5 times though, what is the best way for me to basically state that IF dblStudent1(intMax) = 4 Then Change dblStudent1(intMax) to dblStudent2(intMax) etc.

3. Would this be better suited towards a multidimensional array ?

Private Sub btnEnterGrades_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnEnterGrades.Click

Dim strStudentNames() As String = {" ", " ", " ", " ", " "} ' Holds the 5 Students Names
Dim intMax As Integer = (4) ' Place Holder for Student Number

[CODE]...

View 8 Replies

Prompt User For # Of Quiz Scores To Input?

Mar 1, 2011

Am to prompt user for # of quiz scores to input, should then create an array large enough to hold those number of scores, set up loop that allows user to enter approp. # of scores, all scores will be integers, each score should be placed in the array.

[Code]...

View 1 Replies

Write A Program That Allows User Input Information?

Jan 30, 2012

I am trying to write a program that allows user input information and plot a bifurcation diagram that looks like this:I haven't program in 2 years:sick: so I am all rusty and such. Here is what I have got so far and more information about what I am doing.

Bifurcation:
f(x) = kx(1-x)
and k = xL + i * (xR-xL) / 500

when i runs from 0 to 500, it plots (i, f(seed)), (i, f(f(seed)), .... up to the boundary number.Here is what I have got so far. Everything seems normal, however, I am really confused when it comes to plotting.

[Code]...

View 1 Replies

Write A Program In .net Take Some Input From User And Then Generate Hex File?

Oct 24, 2010

My project is GUI based. I want to write program in vb.net take some input from user and then i hav to genarate hex file so that it can be run on microcontroller. I just want to know weather hex file generation in vb.net is possible or not?

View 2 Replies

Write A Program Using A For Next Loop To Accept A Word As Input?

Apr 28, 2012

I need to write a program using a For Next loop to accept a word as input and determine if its letters are in alphabetical order.

This is the code I came up with but am getting the error "Index and length must refer to a location within the string. Parameter name: length" at run time when I click the button.

Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

[Code].....

View 14 Replies

Write A Program To Request Positive Numbers One At A Time From The User In An Input Dialog Box

May 12, 2009

I'm currently in VB class at my highschool and we just got chapter 6.1 to read on this online textbook that we follow. Anyway, we are doing loops now and the problem reads "Write a program to request positive numbers one at a time from the user in an input dialog box. The user should be instructed to enter -1 after all the positive numbers have been supplied. At that time, the program should display the sum of the numbers." So far I know this much

[Code]...

Now I know this isn't right But I can't find out how I'd pull out the numbers the user entered to get the sum of them and not include -1 because as it stands, when I hit ENTER with -1 the label just shows -1.

View 22 Replies

Write A Unit Test Assembly In C# To Test Against An Assembly Written In VB?

Sep 20, 2011

Probably a dumb question, but can you write a unit test project in one language to test against another project in a different language?I'd like to translate one of our VB assemblies into C#, but want to build unit tests to verify the results. I've tried to set a unit test project up to do this, but I can't seem to access the VB code within a unit test... I can't figure out if I'm just missing/doing something stupid, or it really isn't allowed.

View 2 Replies

Program That Fills A 2D Array With Quiz Scores?

Jan 27, 2011

I want to write a quick program that fills a 2D array with quiz scores. Consider there is 5 Students and each have completed 3 Quizes. I want the program to display a class average as well as a student average.

I've gotten as far as a nested for/next loop but I am stumbling over the language for accumulating and displaying the average.[code]...

View 2 Replies

Test An Answer To A Simple Addition Sum That Is Input From The User To One Have Stored For The Question?

May 22, 2009

i am trying to make a simple Vb program for children to do simple maths, now im not sure im going about it the right way, i have stored all the questions in a database and have called them up to the form and that is working fine, i cant seem to get the right code to check the answer from the user against my stored answer, i am using txtBox to store my answer and a txtbox for the input

View 5 Replies

Write A Unit Test That Verifies A Subroutine Is Called?

Dec 20, 2010

Public Class Class1[code]...

Granted this example is pretty weak, but how could I write a test method that to prove that CallThis() gets called everytime that the input parameter s = "S"?

View 5 Replies

Asp.net - Write Use Case(s) & Test Driven Development For Binding A Gridview?

Mar 9, 2011

I'm still trying to understand and use Use Cases and Test Driven Development, but having a hard time crossing the line. I'm hoping someone can provide a good example of how setting a datasource and/or databinding a gridview could be accomplished using Test Driven Development. Here is my pseudo approach at it.

[Code]...

View 3 Replies

Program Files Are All Mixed Up - In Class Saved Program In With Load Of Other Test Programs For The Same Assignment

Jan 8, 2010

In class i saved my program in with load of other test programs for the same assignment and got everything mixed up i finally figured out what was what and loaded the program in Visual Basic. Now my program doesn't recognize one of my forms when i try to access the design view of it. I hit run for the hell of it and the program runs with errors of course but the form1 "the missing one" shows up with all the buttons etc and i can use it.

Heres the link to the files. [URL]

View 3 Replies

Open "C:/Test.txt" For Input As #iFileN String?

Jan 25, 2010

i'm making a program for may computer project. Our teacher hasn't taught us about reading/writing a file yet. I tried running the code but VS underlines the string

Open "C:Test.txt" For Input As #iFileN

like so. and details as follows.

Open: Not declared. File I/O functionality is available in 'Microsoft.VisualBasic' namespace

C:Test.txt: Method arguments must be enclosed in parenthesis

For: Comma ,')' or a valid expression continuation expected.

I've tried adding Microsoft.VisualBasic reference but VS says it will be loaded automatically.Here's the whole code

Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim sFileText As String[code]....

Edit: I tried enclosing the C:... in parenthesis but the following statements becomes a FOR statement and is asking for an END for the FOR statement

View 14 Replies

Write Input Values To A File?

Dec 3, 2011

I have several textboxes and one combobox in which I would like them to have them placed in a file, but I have run into several problems while doing it. I am taking a beginning course and the book doesn't seem to explain things to well.

1. How can I let the user enter a file name after the data and button has been clicked

2.How do get I get a information from the combobox to grab the text within the selected item to the file

3.How to I write the entered text value to the file like using the notepad file?[code]..

View 7 Replies

Test If A Program Is Closed?

Dec 27, 2011

in my Application Prime95 is opened for 60 seconds. i want to know how to make the test end if the user closes prime95.

* how to detect if prime95 is not running in short *

View 15 Replies

Test When I Am Connected To Sql DB Through Program?

Aug 2, 2009

I have the following module and i would like to test connection.[code]...

View 2 Replies

Calculation Program For Test Score

Feb 24, 2009

I'm new to VB and I'm doing a calculations program for test scores. I got everything setup for my clear and exit buttons but not sure what I have to put in the calculate button code for it to calculate. Here is what I have so far.

Public Class Form1
Private Sub Label5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles lblTestScore5.Click
End Sub
Private Sub btnExit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnExit.Click
[Code] .....

View 13 Replies

Importing My Classes Into A Test Program

Jun 23, 2009

I have a project named Mapstuff which contains several class modules. I have created a console app called TestMapstuff where I would like to test several of the classes that I have created in Mapstuff. All of this is under development. The files are stored like this:[code]How do I import the Mapstuff classes into the TestMapstuff app?

View 8 Replies

Make A Program To Test A Speed Of Mac?

Feb 10, 2012

are there any way we can make a program to test a speed of mac even if you are not using it?

like for instance
64:16:F0:003:9A

how can i test this without using it?

View 1 Replies

Test My Codes Efficiency In Program?

Jun 25, 2011

How can I test my codes efficiency in vb.net?

View 1 Replies

Test When Web Site Is Available From Batch Program?

Nov 5, 2011

I have a 'health check' program that I have scheduled to run every 10 minutes. When it detects a problem, it sends a message to my cell phone.

Right now I have it checking databases by connecting to them, and trying to open them - that seems to work fairly well. I also have it checking web sites but all I'm doing to test them is[code]....

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved