11 Pages

BA1306 MT2 Practice

Course: VISUAL BAS 1292, Spring 2012
School: Boğaziçi University
Rating:
 
 
 
 
 

Word Count: 1393

Document Preview

the Write output of the following program Public Class Form1 Sub p1(ByRef a As Short) a = f1(a, a) End Sub Function f1(ByVal g As Short, ByVal h As Short) As Single g=g-1 Return g + (h * 2) End Function Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As _ System.EventArgs) Handles Button1.Click Dim n1 As Short = 3 Dim n2 As Short = 9 Dim n3 As Short = 14 Dim mp As Boolean = True Do While mp...

Register Now

Unformatted Document Excerpt

Coursehero >> Other International >> Boğaziçi University >> VISUAL BAS 1292

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
the Write output of the following program Public Class Form1 Sub p1(ByRef a As Short) a = f1(a, a) End Sub Function f1(ByVal g As Short, ByVal h As Short) As Single g=g-1 Return g + (h * 2) End Function Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As _ System.EventArgs) Handles Button1.Click Dim n1 As Short = 3 Dim n2 As Short = 9 Dim n3 As Short = 14 Dim mp As Boolean = True Do While mp p1(n2) n3 = f1(n1, n3) n1 += n1 If n2 > 100 Then Select Case n1 Case 0 To 4 n3 = n3 / 2 Case Is > 4 mp = False End Select End If TextBox1.Text = TextBox1.Text & n1 & "_" & n2 & "_" & n3 & vbCrLf Loop End Sub End Class Answer 6_26_30 12_77_65 24_230_141 Write the output of the following program Public Class Form1 Sub mandm(ByVal o As Short, ByRef u As Short) Dim a, b, c As Short a=7 b=a+9 u=u*2-o o=a+b c=2*b-a End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As _ System.EventArgs) Handles Button1.Click Dim a, b, c, k, t As Short Dim stringer As String = " Hello " For k = 10 To 5 Step -3 For t = 0 To a \ 10 TextBox1.Text = TextBox1.Text & stringer & vbCrLf Next t a=k b=a c=b If a Mod 2 = 0 Then b=a*3 Else c=a*4 End If If b > c Then mandm(b, c) Else mandm(c, a) End If TextBox1.Text =TextBox1.Text & a & vbTab & b & vbTab & c & vbCrLf Next k End Sub End Class Answer: Hello 10 30 -10 7 28 Hello Hello -14 Write a program that will play the number guessing game with randomly generated 2 digit integers (based on the above screen examples). The numbers shown above are arbitrary, you will not use the numbers above. You need to count and show how many trials it takes for the user to guess the number. Each guess is entered when it is written in the textbox and the button is clicked. The line below the button is a label. Public Class Form1 Private Sub Form1_Load(ByVal sender As System.Object, _ ByVal e As System.EventArgs) Handles MyBase.Load Button1.Text=make a guess Label1.Text=make a guess to find the 2 digit integer End Sub Private Sub Button1_Click(ByVal sender As System.Object, _ ByVal e As System.EventArgs) Handles Button1.Click End Sub End Class Write a program that will start with the number provided by the user (by using an inputbox), and then count backwards down to 0. After every fifth number counted, the backward counting decrement is increased by 1. The numbers are written in the textbox. For example: If the user inputs 23 Then the program will count : 22,21,20,19,18,16,14,12,10,8,5,2 After the first five numbers (22,21,20,19,18) the decrement is increased to 2 After counting for another five numbers (16,14,12,10,8) the decrement is increased to 3 Program stops when zero is reached, or when the next number is less than zero. So the last number in the series can never be negative. Answer: Dim n, k, count As Integer n = InputBox("enter number") TextBox1.Text = TextBox1.Text & "starting number is " & n & vbCrLf Do While n - k >= 0 k=k+1 Do While count < 5 And n - k >= 0 count += 1 n=n-k TextBox1.Text = TextBox1.Text & n & vbCrLf Loop count = 0 Loop Write the output of the following program in the form given below. In the program, variable named counter counts the number of times the GCD Function is called, which is equal to the number of iterations used to find the greatest common divisor of the two numbers. Public Class Form1 Dim counter As Integer = 0 Function GCD(ByVal p As Long, ByVal q As Long) As Long counter += 1 TextBox1.Text = TextBox1.Text & "p = " & p & vbTab & "q = " & q _ & vbCrLf If q Mod p = 0 Then Return p Else Return GCD(q, p Mod q) End If End Function Private Sub Button1_Click(ByVal sender As System.Object, _ ByVal e As System.EventArgs) Handles Button1.Click Dim a, b As Integer a = 18 b = 48 TextBox2.Text = TextBox2.Text & "The GCD of " & a & " and " & b _ & " is " & GCD(a, b) & ", calculated by " & counter & "iterations" End Sub End Class Write the output of the following program in the form given below. Public Class Form1 Dim array2(5), array1(5), array3(5) As Long Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As _ System.EventArgs) Handles Button1.Click Dim i As Integer For i = 0 To 5 array1(i) = i + 10 array2(i) = 20 - i If array1(i) >= array2(i) Then array3(i) = array1(i) Else array3(i) = array2(i) End If TextBox1.Text = TextBox1.Text & array1(i) & vbTab & array2(i) _ & vbTab & array3(i) & vbCrLf Next End Sub End Class Write the output of the following program in the form given below. Public Class Form1 Sub messup(ByVal a1 As Integer, ByRef a2 As Integer, ByRef a3 As _ Single, ByVal a4 As Single) a3 = a3 + 2 a1 = a2 - 1 a4 = a2 / a1 a2 = a1 + a1 End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As _ System.EventArgs) Handles Button1.Click Dim y, z As Integer Dim k, n As Single z=0 n = 20 TextBox1.Text = TextBox1.Text & "y +++ z +++ k +++ n " & vbCrLf For k = 2.3 To 7.5 Step 0.5 For y = 8 To 5 Step -1 z += 1 messup(y, z, k, n) TextBox1.Text = TextBox1.Text & y & " +++ " & z & " +++ " _ & k & " +++ " & n & vbCrLf n=n-2 Next Next End Sub End Class Rewrite the following program by changing the function changeme into a procedure (sub). Make sure that you change the part where the function is called as well. HINT: You have to declare an additional variable. Public Class Form1 Function changeme(ByRef arg1 As Single, ByVal arg2 As Double) As _ Boolean If arg1 > arg2 Then Return True Else Return False End If End Function Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As _ System.EventArgs) Handles Button1.Click Dim answer, count As Single answer = InputBox("enter number") count = 0 If changeme(answer, 45) Then MsgBox("That is greater than 45") Else MsgBox("That is not greater than 45") End If End Sub End Class Write a program that will use the form When the button is clicked, it will roll two dices (randomly picked numbers between 1 and 6, inclusive). a. You win when the total of the two dices is greater than 7 b. You lose when the total is less than 5 c. It results in a draw otherwise a b c The values for the dice rolls and the result are shown in three separate label boxes, all of which were set to invisible at the property setting. Remember that the labelbox cannot display integer values (they need to be converted to string) 1. Trace the following program and write the output that will be seen in the textbox, when the button is clicked and the user enters 4 as input. Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As _ System.EventArgs) Handles Button1.Click Dim matrix(,), suma(), sumb() As Integer Dim n, i, j As Integer TextBox1.Clear() n = InputBox("Enter N, for NxN matrix") ReDim matrix(n - 1, n - 1) ReDim suma(n - 1) ReDim sumb(n - 1) For i = 0 To n - 1 For j = 0 To n - 1 matrix(i, j) = i + 2 * j + 1 Next j Next i For i = 0 To n - 1 For j = 0 To n - 1 TextBox1.AppendText(matrix(i, j) & " ") suma(i) = suma(i) + matrix(i, j) sumb(i) = sumb(i) + matrix(j, i) Next j TextBox1.AppendText(" " & suma(i) & vbCrLf) Next i For i = 0 To n - 1 TextBox1.AppendText(sumb(i) & " ") Next i End Sub End Class 1. Trace the following program and write the output that will be seen in the textbox, when the button is clicked. Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As _ System.EventArgs) Handles Button1.Click Dim i, j As Integer Dim numbers(9), total As Double For i = 1 To 10 If i Mod 2 = 0 Then numbers(i - 1) = 100 - i Else numbers(i - 1) = i End If Textbox1.AppendText(numbers(i-1) & vbcrlf) Next i j=0 total = 0 Do While (j <= 7) total = total + numbers(j) j += 1 Loop Textbox1.AppendText("Total is " & total) End Sub End Class Write a program that will use the following form When the button is clicked, it will generate a random number between 0 and 4 (inclusive). After generating the number, it will write the number in its word form. The textbox above shows the sample output when the number is 4. It reads as: number 4 written as four
Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

Mines - SYGN - 101
Snowmass Pleistocene Dig Site Objectives1) In what town of Colorado was the Denver Museum of Nature and Science (DMNS)conducting the fossil dig in this film.a. Snowmass2) In what year were the first fossils discovered in the Zeigler reservoir?a. 2010
FAU - LAW - 345
The Lacey Act administrates animal imports into the United States. It prohibits and regulatestrade of wildlife and plants that have been illegally transported or sold. It has been 111 yearssince the act was implemented. In order to prevent non-native sp
San Diego - CISC - 189A
Array ExerciseC ProgrammingBusiness Information Technology (BIT)North City / Career CenterCenters for Education &amp; Technology (CET)San Diego Community College District (SDCCD)4.19 Modify the program of Fig. 3.10 to play 1000 games of craps. The progr
San Diego - CISC - 189A
Control StatementsC ProgrammingBusiness Information Technology (BIT)North City / Career CenterCenters for Education &amp; Technology (CET)San Diego Community College District (SDCCD)Obtaining the Address of a Data Storage Identifier &quot;address of&quot; operat
San Diego - CISC - 189A
C ProgrammingIntroBusiness Information Technology (BIT)North City / Career CenterCenters for Education &amp; Technology (CET)San Diego Community College District (SDCCD)Syllabus (Sun, Fri)RegistrationBrief History C derivation from the B languagewr
San Diego - CISC - 189A
Course 7077A, Fridays C Programming Syllabus(Fall 2002)Business Information Technology (BIT)Centers for Education &amp; Technology (CET)San Diego Community College District (SDCCD)Instructor / Schedule / LocationEd Brabant / 5:30-9:30 P pm, 10/18 - 11/2
San Diego - CISC - 189A
C Programming (1 of 2)4693HEd Brabant3.0FridayA AdractasF AgbulosM AwaisM BalazsT ChanL CheungC CholakosK DaoJ DennisP DubbakaC DuenasV GouveiaP GreenP GreisenJ HaskellH HomR IobM KarwoskiR KaryodisaN LeeG LemuzJ LetostakJ Lo
San Diego - CISC - 189A
C Programming (2 of 2)4693HEd Brabant3.0Friday6P9PH NeubauerD NguyenJ OatesO OskayM PasschierZ PetrovicH PhungJ PhungM PruittA RajapanzyA RaugustP ReillyR RimandoK RossC SampankanpanichH TeferraT TranK TruongZ TunC WatsonT Wen
San Diego - CISC - 189A
C ProgrammingSummer, 20036/13/036/20/036/27/037/11/037/18/037/25/038/1/038/8/038/15/03Total TotalFirstLastSh. Rw. Hrs. Sh. Rw. Hrs. Sh. Rw. Hrs. Sh. Rw. Hrs. Sh. Rw. Hrs. Sh. Rw. Hrs. Sh. Rw. Hrs. Sh. Rw. Hrs. Sh. Rw. Hrs. Classes HoursAnas
San Diego - CISC - 189A
/ Fig. 14.13: fig14_13.cpp/ Writing to a random access file.#include &lt;iostream&gt;using std:cerr;using std:endl;using std:cout;using std:cin;using std:ios;#include &lt;iomanip&gt;using std:setw;#include &lt;fstream&gt;using std:ofstream;#include &lt;cstdlib&gt;#i
San Diego - CISC - 189A
/ Fig. 14.14: fig14_14.cpp/ Reading a random access file.#include &lt;iostream&gt;using std:cout;using std:endl;using std:ios;using std:cerr;using std:left;using std:right;using std:fixed;using std:showpoint;#include &lt;iomanip&gt;using std:setprecision;
San Diego - CISC - 189A
/ Fig. 14.15: fig14_15.cpp/ This program reads a random access file sequentially, updates/ data previously written to the file, creates data to be placed/ in the file, and deletes data previously in the file.#include &lt;iostream&gt;using std:cout;using s
San Diego - CISC - 189A
/ printf_largest_int_if-else.cpp : Defines the entry point for the console application.#include &lt;stdio.h&gt;#include &lt;limits.h&gt;int main( void )cfw_int int1, int2, int3, largest_int = INT_MIN;printf( &quot;Enter three integer values, with whitespace betwee
San Diego - CISC - 189A
/ text_file.cpp : Defines the entry point for the console application./#include &quot;stdafx.h&quot;#include &lt;stdio.h&gt;#include &lt;stdlib.h&gt;#include &lt;direct.h&gt;int _tmain( void )cfw_char filech;FILE *fp;char filename[] = &quot;testANSI_C_text_file_views.txt&quot;;
Concordia CA - PSYC - 450
Abolition and reversal of strain differences in behavioural response to drugs of abuseafter a brief experience.Cabib et alDBA/2D rats are less prone to addiction. They show aversion to the drug.C57 rats are more prone to addiction, they show preferenc
Concordia CA - PSYC - 354
What does theWason Selection Taskhave to do withevolutionary psychology?Rule Structures -1 Propositional Calculus: If P, then Q The Rule is true if P is true AND Q is true The Rule is untrue (violated): If P is true and Q is NOT true i.e., P and
Concordia CA - PSYC - 354
The Faces of Emotion1) Waller, Cray &amp; Burrows (2008) Selection for universal facial emotion.Emotion,8(3), 435-439.2) Wicker et al. (2003) Both of us disgusted in my insula: The commonneural basis of seeing and feeling disgust. Neuron, 40(3), 655-664.
Concordia CA - PSYC - 354
Chapter 4 Foundations of Evolutionary PsychologyJust So Storiesby Rudyard KiplingOriginally published 1902Panglossiancharacterized by or given to extreme optimismAn adaptation is a characteristicthat has arisen through and been shaped byeither nat
Concordia CA - PSYC - 354
Psyc 354/2Foundations of Evolutionary PsychologyJan 19, 2011Mechanisms of inheritanceMendel worked with different varieties of peas(pea plants with particular characters).When peas reproduce, if the new generationof pea plants always has the samec
Concordia CA - PSYC - 354
Psyc 354 EvolutionaryFoundations of PsychologyLECTURE J. Cartwright, Chapter 7: Modularity,Cognition, and ReasoningPresented by: Linda Cochrane (lcochrane@aretaic.net)Date: 14 March 2011Agenda Introduction What does philosophy have to do withpsyc
Concordia CA - PSYC - 354
Chapter 6EncephalizationThe enlargement of the brain relative to body size over the course of evolutionMacLeansTriune BrainMacLeans Triune Model of the Brain1) Reptilian2) Old mammalian (limbic)3) Neomammalian (neocortex)AllometryThe relationshi
Concordia CA - PSYC - 354
Chapter 7Modularity, Cognition and ReasoningPatternicity: a cognitive error or advantage?Proximate cause: priming effect in which our brainand senses are prepared to interpret stimuliaccording to an accepted modelUltimate Cause: the tendency to find
Concordia CA - PSYC - 354
Agenda for Jan 5, 2011:Agenda scientific theoryscientific defining evolutionary psychologydefining fraudulence and misconceptionfraudulence basic terminologybasicThere is nothing so practical as a good theory.A theory is a set of variables and
BC - ECON - 717
Chapter 17 - Macroeconomic and Industry AnalysisChapter 17Macroeconomic and Industry AnalysisMultiple Choice Questions1. A top down analysis of a firm starts with _.A. the relative value of the firmB. the absolute value of the firmC. the domestic e
BC - ECON - 717
Financial Statement AnalysisMultiple Choice Questions1. A firm has a higher quick (or acid test) ratio than the industry average, which implies.A. the firm has a higher P/E ratio than other firms in the industry.B. the firm is more likely to avoid ins
DeVry NY - ACCOUNTING - 2401
CHAPTER 13Current Liabilities and ContingenciesASSIGNMENT CLASSIFICATION TABLE (BY TOPIC)TopicsQuestionsBriefExercisesExercisesProblemsConceptsfor Analysis1, 161, 211, 21, 21. Concept of liabilities;definition and classificationof curren
Polytechnic University of Puerto Rico - MGM - MGM6600
1. Whatarethetotalnumberofvisitors,shoppers,attemptedbuyers,andbuyersatyour Websiteforthisperiod?Accordingtothemarketingtrendsreportswehadatotalof2,047visitors,262shoppers, 104attemptedbuyersand42buyers.Seeappendixfordistributionperwebsite.2. Whichsou
Alabama - ECON - 242
Alabama - ECON - 242
Alabama - ECON - 242
Alabama - ECON - 242
Alabama - ECON - 242
Alabama - ECON - 242
Alabama - ECON - 242
Alabama - ECON - 242
Alabama - ECON - 242
Alabama - ECON - 242
In Marvells To His Coy Mistress the narrator is reasoning with the woman he loves.He declares his love for the woman, and the woman responds in a hesitant manner. The manresponds saying that if he had the time, he would declare is love in many different
Alabama - ECON - 242
Andrew VamosMrs. DianichCollege English 1217 October 2010Concussions: Not Just Getting Your Bell RungGo! Go! a woman shouts as two young, eight year old youth football players run ateach other in a one on one tackling drill. The children each lower
Alabama - ECON - 242
Well, there may be something we have overlooked. The fist sized tumor that crushedthe lobes of my right lung did not crush who I am; it shaped me. Two years prior to thediscovery of the tumor I was diagnosed with pneumonia. Not quite. The first trip to
Alabama - ECON - 242
Name:_Allusions In Frankenstein1. _ A titan in Greek Mythologywho created Man from clay.2. _ A famous 2nd Generation writerwho was referenced a lot in theintroduction of Frankenstein.3. _ Prometheus stole this and gaveit to man.4. _ In both Frank
Alabama - ECON - 242
Allusions in FrankensteinCatie HarrisAndrew VamosOr, the Modern Prometheus Prometheus was a titan in GreekMythology He created man from clay Stole fire and gave it to man Zeus punished him by chaininghim to a rockvideo on PrometheusFrankenstein
Alabama - ECON - 242
Anthro 102 - Lecture 10: Agricultural RevolutionMain topicsDomestication of plants and animalsCase studies from SW Asia and E AsiaSedentismLack of mobilityPermanent settlementLocal resources sufficientPrecludes need to move around constantlySeden
Alabama - ECON - 242
Lectures 13 and 14: SE Asian Prehistory, Angkorian Civilization, and Early African CitiesBronze Age of Mainland SE AsiaBronze-working: after c. 1500 BCVillage settlementsMany near rivers, streams, coastsSome social rankingBronze Age SubsistenceMixe
Alabama - ECON - 242
The Apogee and Collapse of the Classic MayaClassic Period, A.D. 300-900 Teotihuacan and Maya Large regional states and cities Writing &amp; Calendrics Religious/Political MonumentsDivine RulersKuhulAjaw Power based in elaborate religious ideologyMono
Alabama - ECON - 242
Andrew VamosAnthro 102Wednesday 10AM Discussion w/ Kurt GronEvaluating a Reconstruction Drawing of CahokiaCahokia was an ancient Native American city home to a group frequently called theMound Builders. The site of Cahokia is located in modern day Il
Alabama - ECON - 242
Andrew Vamos2nd hourDystopian style and structure assignmentIn 1984, Orwells use of dystopian style is phenomenal. If one were to make a check listof the various dystopian characteristics, the society in 1984 contains nearly every trait. Thethemes Or
Alabama - ECON - 242
Andrew Vamos2nd hourDystopian style and structure assignmentIn 1984, Orwells use of dystopian style is phenomenal. If one were to make a check listof the various dystopian characteristics, the society in 1984 contains nearly every trait. Thethemes Or
Alabama - ECON - 242
Andrew VamosHeavy water is used extensively in nuclear research. (A) What is heavy water? (B) What is itspurpose in nuclear devices? (C) What was the significance of the Norsk Hydro plant? (D) TheAllies twice sabotaged the heavy water supply. Describe
Alabama - ECON - 242
PlayersGive me some light. Away! Claudius during The Mouse TrapThe effect that the players in the play have on Claudius reveals to Hamlet that he did in factmurder his father.HoratioI did very well note him.Horatio is Hamlets only true friend and al
Alabama - ECON - 242
Question of the Week 4Q1. How did Professor Martins talk possibly change your perspective on the nature of work youmay pursue?His talk made me really think about how fortunate I am to be receiving a good education and tohave been brought up in a good
Alabama - ECON - 242
Q1. One of the goals of the poster session was to give you the opportunity tolearn about different projects other teams are working on. Give the titles of three(3) posters that most interested you and describe what was intriguing about themand the proj
Alabama - ECON - 242
InterEgr 160 Poster Design Guidelines Fall 20111. Location and operating hours of CAE (Computer-Aided Engineering) Labs(http:/www.cae.wisc.edu/cae-labs)CAE labs are open 24/7 (except for official university holidays). Most buildingslock their doors at
Alabama - ECON - 242
Question of the Week - 3Dr. Grossenbacher mentioned many things that should be included in the start ofeach lab entry. First, it is important to have a heading/goal for the day. Thisobviously helps your notebook stay organized, but at the same time it
Alabama - ECON - 242
InterEGR 160Andrew VamosTable of ContentsContact Info: Located on Back of Calendar inside of CoverLab Section: Pages 1-171Client Visit2First Day of Small Group3-4Brainstorming/Feasibility Assessment5-6Forming a Presentable Idea/Evaluation of Desig
Alabama - ECON - 242
Andrew VamosMedical Terminology2nd hourMedical MalpracticeI swear to fulfill, to the best of my ability and judgment, this covenant (Lasagna).Doctors all around the world swear an oath in which they promise to perform their various dutiesin the prop
Alabama - ECON - 242
http:/guides.library.jhu.edu/content.php?pid=23699&amp;sid=190964 written by Louis LasagnaLasagna, Louis. Johns Hopkins University. 1964. Web. 23 May 2011.&lt;http:/guides.library.jhu.edu&gt;.&quot;negligence.&quot; Collins English Dictionary - Complete &amp; Unabridged 10th
Alabama - ECON - 242
Works Cited&quot;Doctor Who Cut Off Wrong Leg Is Defended by Colleagues.&quot; New York Times. 17 Sept. 1995.Web. 22 May 2011. &lt;NYTimes.com&gt;.&quot;The Four Elements Of A Medical Malpractice Tort.&quot; Pennsylvaniamalpractice.com. Lowenthaland Abrams, P.C. Web. 22 May 20
Alabama - ECON - 242
Question of the Week 8Q1. Testing of aerospace systems is very expensive, based on Mr. Gustafsons lecture. Give ashort description of why it still has to be done. (i.e., whats the cost of not testing, even if itsexpensive?)Extensive testing of aerospa
Alabama - ECON - 242
Question of the Week 9Q1. Professor Van Veen described signal processing and the human brain. Otherthan ailments of the brain, where else could signal processing pay significantdividends in improving human health?Signal processing is currently used in
Alabama - ECON - 242
This song correlates with Hamlet rejecting Ophelia in Act III. He is telling her that he indeeddoesnt need her anymore, and it would be in her best interest to leave him and join a nunnery.The song essentially is saying the same thing. The artist doesnt
Alabama - ECON - 242
PrintingaPosterfromthePlotterin2324EngineeringHall,or1235MechanicalEngineeringBuilding1. PosterformatshouldbeaPowerPointslideorAdobePhotoshopfile.2. Whenreadytoprint,gotoFILEPRINT.3. SelectPrinterName\ENGR\engr2324plotter.4. Selecttheseconddropdownme