Arzath Areefftechxnomad.hashnode.dev·Dec 11, 2024MCQs and Answers II - for Visual Application Programming in HNDITVisual Application Programming: MCQ Practice Questions and Answers Are you preparing for an upcoming test or just brushing up on your knowledge of visual application programming? Here’s a set of Multiple Choice Questions (MCQs) with answers to help y...1 like·99 readsC# for BeginnersSLIATE
Arzath Areefftechxnomad.hashnode.dev·Nov 20, 2024Beginner C# Array Practice for HNDIT LearnersExercise 1: Declaring and Initializing Arrays Write the code to: Declare an array of strings called fruits and initialize it with the following values: "Apple", "Banana", "Cherry", "Mango". Print the second element in the array to the console. E...1 like·109 readsC# for BeginnersC#
Arzath Areefftechxnomad.hashnode.dev·Nov 6, 2024Learn to Create Basic Windows Forms in C#: A Guide for HNDIT StudentsObjective: Create a calculator that performs basic arithmetic operations (addition, subtraction, multiplication, division). Steps: Add four Button controls for each operation. Add two TextBox controls for input numbers and one Label for displaying...1 like·140 readsC# for BeginnersHNDIT
Arzath Areefftechxnomad.hashnode.dev·Oct 30, 2024C# Switch Statement Basics: Exercises for HNDIT StudentsIn C#, the switch statement is a control flow statement that allows you to execute different blocks of code based on the value of a variable or expression. Here’s a basic example to illustrate its usage: using System; class Program { static void...1 like·83 readsC# for BeginnersC#
Arzath Areefftechxnomad.hashnode.dev·Oct 29, 2024Boost Your C# 'For Loop' Abilities: Essential Exercises for HNDIT StudentsHere are some basic for loop exercises in C# . These exercises stick to simple counting and looping tasks that help students practice the structure of for loops. Exercise 1: Print Numbers from 1 to 10 Objective: Introduce the structure of a for loop....1 like·323 readsC# for BeginnersHNDIT
Arzath Areefftechxnomad.hashnode.dev·Oct 24, 2024C# Beginner's Guide: Create a Console Message Program for HNDIT StudentsC# program for beginners that prints a message to the console: using System; class Program { static void Main(string[] args) { Console.WriteLine("Hello, World!"); Console.WriteLine("Welcome to C# programming!"); Con...1 like·166 readsC# for BeginnersC#
Arzath Areefftechxnomad.hashnode.dev·Oct 24, 2024Essential C# If-Else Questions and Answers for HNDIT StudentsQuestions Write a program that asks the user to enter a number and checks whether the number is even or odd. Write a program that checks whether a given number is positive, negative, or zero. Write a program that checks if the entered age qualifie...1 like·179 readsC# for BeginnersC#
Arzath Areefftechxnomad.hashnode.dev·May 13, 2023A Simple Guide to Passing Data between Activities in AndroidIn Android development, it’s common to have multiple activities that work together to make up a complete app. Sometimes, you’ll need to pass data between these activities. In this guide, we’ll show you how to do that with a simple example. We’ll crea...Android for BeginnersAndroid
Arzath Areefftechxnomad.hashnode.dev·May 4, 2023Interaction Modelling and Design: Exploring WIMP Components in GUI Design and Interaction ParadigmsInteraction Modelling and Design: Exploring WIMP Components in GUI Design and Interaction Paradigms Interaction Paradigms Interaction Paradigms are a set of assumptions and practices that define how users interact with software systems. In this slide...SLIATE
Arzath Areefftechxnomad.hashnode.dev·May 1, 2023Android App with Button Click Event and Toast MessageThis code is an example of an Android app that demonstrates the use of a button click event and a Toast message. The app contains a layout with a button and a text field. 🔺The onCreate() method initializes the button and text field. 🔺The setOnClick...Android for BeginnersAndroid