Coding for using Nullable Types in C#?
c# code to Count number of 1's in a given range of integer (0 to n)
program for straight line(y=mx+c)
Can you declare an array of mixed Types?
Write a function which accepts list of nouns as input parameter and return the same list in the plural form. Conditions: i) if last letter is r then append s ii) if word ends with y then replace it by ies iii) call this function in main() and produce the required output. for eg:- if chair is input it should give chairs as output.
Give the code for Handling Mouse Events?
IS Array list is generic or non generic
Write a program. there are 1..n numbers placed in an array in random fashion with one integer missing. find the missing number.
How to Link Different Data Sources Together?
how does the below eqation proceed to be solved: x*=y+z options: x=x*y+z or x=x*(y+z)
Write a program to count the number of characters, number of words, number of line in file.
how do i copy textbox contents of 1 form to another form
Create a class called Accounts which has data members like ACCOUNT no, Customer name, Account type, Transaction type (d/w), amount, balance D->Deposit W->Withdrawal If transaction type is deposit call the credit(int amount) and update balance in this method. If transaction type is withdraw call debit(int amt) and update balance. Pass the other information like Account no,name,Account Type through constructor. Call the show data method to display the values.