Posts

How to make a vertical text box in Microsoft visio?

Image
                                   How to make a vertical text box in Microsoft visio? By A.Libin Antony Posted on 09.03.2022 @ 12:16 PM Welcome to today's blog, where we will be discussing one of the most searched questions on Google - how to make a vertical text box in Microsoft Visio. If you have been struggling to find a simple solution to this problem, you have come to the right place. Many online solutions suggest creating a rectangle and changing the direction of the text, but we will be sharing a much simpler method with you today. By the end of this blog, you will be able to create vertical text boxes in Microsoft Visio with ease. So, let's get started! STEP :1  OPEN MICROSOFT VISIO STEP :2 GO TO INSERT TAB   STEP:3 GO TO TEXT BOX AND SELECT VERTICAL BOX STEP :4 These are the steps that you can make a simple vertical text box without changing it's direction and orientation. Thank...

C# Program for Coin Vending Machine

                                                              C# Program for Coin Vending Machine Posted by Libin Antony@10-02-2023 IST : 09:12:23 The code uses the C# programming language to simulate a coin vending machine that accepts coins in increments of 0.25, 0.5, 1, and 2. The program calculates the total amount of coins inserted by the user, and compares it to the price of the item being sold by the machine. When the total amount equals or exceeds the item price, the transaction is complete and the item is dispensed.                                                                  Program using System; namespace CoinVendingMachine {     class Program...

General C# Programs for Beginners

Posted by Libin Antony on 17-01-2023   General C# Programs for Beginners In this blog we are going to discuss about the basic C# Programming., Below are the some of the programs we are going to discuss. C# Programs are as similar to javascript programming, some keywords are different from Java script. Solved C# Program Question-Answer follows after the questions. Program-1 Input a code [C|S|V] and a character .Then find a)if the code is ’C’ then find the character is capital or not b)if the code is ‘S’ then find the character is small or not c)if the code is ‘V’ then find the character is vowel or not Program-2: Check Given Number is Prime or not using C#. Program-3: Swap First and Last Elements of the Given Array Program-4 Design a program to Input a Number. Check if it is a positive three digit number or not Program-5 Write a Program to input the height of two students. Print the height of the tallest person Program-6 Input a code [a/b/c] and two numbers a)Code is a ,the...

C# Program to Find a Year Leap or not & Find odd or Even Number

Image
Posted by Libin Antony on 13/01/2023   Just sharing the C# Programs and O/P s for your reference. Kindly discuss, if any contradictions. C# Program to Find a Year Leap or not : Program:   using System; namespace Leapyearornot {     class Leapyear     {         static void Main( string [] args)         {             Console.WriteLine( "Enter Year:" );             int year = Convert.ToInt32(Console.ReadLine());             if ((year % 4 == 0) && (year % 100 != 0 || year % 400 == 0))             {                 Console.WriteLine(year + "is a leap year" ...