Write the correct statement to store value of “vb programming” to label button 5 Select one: a. lbl_label5 = “vb programming” b. “vb programming” = lbl_button5 c. lbl_button5 = “vb programming”  d. lbl_button5.text = “vb programming”    What is the output of the given program below if the inputted values are both 2 #include #include void main() { int num1,num2,ans; print(“Input First number: “); scanf(“%d”,&num1); print(“Input Second number: “); scanf(“%d”,&num2); ans=num1+num2; switch(ans) { case 2:    printf(“HAHAHA”);    break; case 4:    printf(“HOHOHO”);    break; case 6:    printf(“HEHEHE”);    break; default:    printf(“INVALID”); } getch(); }

Programming with Microsoft Visual Basic 2017
8th Edition
ISBN:9781337102124
Author:Diane Zak
Publisher:Diane Zak
Chapter5: The Repetition Structure
Section: Chapter Questions
Problem 6RQ
icon
Related questions
Question

Write the correct statement to store value of “vb programming” to label button 5

Select one:
a. lbl_label5 = “vb programming”
b. “vb programming” = lbl_button5
c. lbl_button5 = “vb programming” 
d. lbl_button5.text = “vb programming” 
 

What is the output of the given program below if the inputted values are both 2


#include<stdio.h>
#include<conio.h>
void main()
{
int num1,num2,ans;
print(“Input First number: “);
scanf(“%d”,&num1);
print(“Input Second number: “);
scanf(“%d”,&num2);
ans=num1+num2;
switch(ans)
{
case 2:
   printf(“HAHAHA”);
   break;
case 4:
   printf(“HOHOHO”);
   break;
case 6:
   printf(“HEHEHE”);
   break;
default:
   printf(“INVALID”);
}
getch();
}

 

Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
ListBox
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Programming with Microsoft Visual Basic 2017
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:
9781337102124
Author:
Diane Zak
Publisher:
Cengage Learning