Today, we are providing you the Visual Programming NEB Class 12 Question Paper 2080-2023 Code-9341 which examination was held on the year 2080/2023 and you can download the neb grade xii (12) Visual Programming NEB Class 12 Question Paper 2080-2023 subject question paper of the year 2080-2023 in PDF format which is only for technical stream’s regular students whose first two digits of registration number start from 79. Please check and download pdf file grade 12 Visual Programming NEB Class 12 Question Paper 2080-2023 Exam question paper of the year 2023-2080 Nepal. The Exam Question provided below – Visual Programming NEB Class 12 Question Paper 2080-2023 Code-9341 is for the board exam 2079 and onwards. And it is based on the latest NEB Syllabus for 2079 and so on. We will be adding more Exam Question Papers of grade xii-class 12 later on. Scroll down to Download Visual Programming NEB Class 12 Question Paper 2080-2023 Code-9341 in pdf format which is 291 KB in size. Enjoy!
Visual Programming NEB Class 12 Question Paper 2080-2023.
NATIONAL EXAMINATIONS BOARD [NEB]
Visual Programming – Grade XII-Class 12
Examination – 2080 (2023)
(New Course)
For technical stream’s regular students.
Subject Code: 9341
Time – 2 hrs
Full Marks – 50
Check this …
NEB Class 12 Exam Model Question Papers 2079-2023 for All Subjects | Download in PDF.
Download | All Question Papers | Faculty Of Management | Class 12 | 2079 [2022] | NEB.
Compulsory English | NEB-Grade XII (12) 2079-2022 Question Paper Subject Code: 0041’E’ | PDF.
Grade 12 Physics Exam Question Paper of the year 2080-2023 (New Course) | PDF Download.
Candidates are required to give their answers in their own words as far as practicable. The figures in the margin indicate full marks.
Also Check …
2080-2023 NEB Class 12 All Exam Question Papers Collection.
History NEB Class 12 Question Paper 2080-2023 (Sub. Code: 256) (Old Course) | PDF Download.
Culture NEB Class 12 Question Paper 2080-2023 (Sub. Code: 266) (Old Course) | PDF Download.
Gender Studies NEB Class 12 Question Paper 2080-2023 (Sub. Code: 1241) (New Course) | PDF Download.
Psychology NEB Class 12 Question Paper 2080-2023 (Sub. Code: 1201) (New Course) | PDF Download.
History NEB Class 12 Question Paper 2080-2023 (Sub. Code: 1221’A’) (New Course) | PDF Download.
Sociology NEB Class 12 Question Paper 2080-2023 (Sub. Code: 272) (Old Course) | PDF Download.
Physics NEB Class 12 Question Paper 2080-2023 (Old Course) (Sub. Code: 210) | PDF Download.
Mathematics NEB Class 12 Question Paper 2080-2023 (Sub. Code: 0081 ‘H’) (New Course) | PDF Download.
Marketing NEB Class 12 Question Paper 2080-2023 (Sub. Code: 910) (Old Course) | PDF Download.
Hotel Management NEB Class 12 Question Paper 2080-2023 (Sub. Code: 270) (Old Course) | PDF Download.
General Law NEB Class 12 Question Paper 2080-2023 (Sub. Code: 296) (Old Course) | PDF Download.
Business Studies NEB Class 12 Question Paper 2080-2023 (Sub. Code: 628) (Old Course) | PDF Download.
Biology NEB Class 12 Question Paper 2080-2023 (Sub. Code: 9101) (New Course) | PDF Download.
Accounting NEB Class 12 Question Paper 2080-2023 (Sub. Code: 1041’Q’) (New Course) | PDF Download.
Physics Exam Question Paper Class 12 of 2080-2023 (New Course) | PDF Download.
Attempt all questions.
Group ‘A’
Rewrite the correct options of each questions in your answer sheet. 9×1=9
1. What is the Common Language Runtime (CLR)?
A) A compiler for C#
B) An integrated development environment
C) A virtual machine for executing .NET code
D) A database management system
2. Which of the following is the root of the hierarchy of all .NET types?
A)System.Object
B) System.Parent
C) System.Base
D) System.Root
3. What is the syntax for a for loop in C#?
A) for (initializer; condition; iterator) { // code block }
B) for (condition; initializer; iterator) { // code block }
C) for (condition; iterator; initializer) { // code block }
D) for (iterator; condition; initializer) { // code block }
4. How do you declare an array in C#?
A) int array = new int[];
B) int array = new int();
C) int array = new array int[];
D) int[] array = new int[];
5. Which of the following methods is used to convert a string to uppercase in C#?
A) ToUpper()
B) ToLower()
C) Trim()
D) Replace()
6. Which of the following is NOT a feature of a structure in C#?
A) Can implement interfaces
B) Cannot inherit from other structures or classes
C) Can have properties and methods
D) Can have a destructor
7. Which keyword is used to pass a pointer as a parameter by reference in C#?
A) var
B) ref
C) out
D) unsafe
8. Which namespace is used to connect to a database in C#?
A) System.Data.SqlClient
B) System.Data.OracleClient
C) System.Data.OleDb
D) All of the above
9. Which of the following statement is true for a structure in C# ?
A) It can hold similar data types only
B) It can hold dissimilar data type
C) It can hold integer only
D) All of above
Group ‘B’
Short Answer Questions 5 x 5=25
10. Describe the .NET framework and its features.
11. How do you declare a variable in C#? What are the different data types of variables in C#?
OR
Describe a namespace in C#. How is it used in programming?
12. Write a program to find the greatest number among three user input numbers in C#.
OR
Explain Concat() and Trim() string functions with examples in C#.
13. How do you use an array in C#? Explain with an example.
14. What is a pointer in C#? Give an example of passing pointer as a parameter to methods.
Group ‘C’
Long Answer Questions 2 x 8=16
15. Differentiate between the while and for loop in C#. Explain with an example.
16. Explain the database connection procedure in C# to develop the application with an example.
OR
Write a C# program to enter the details of three employees (ID and name) and display them using structure.