Q1:Write a Menu driven program in C# to perform following functionality: Addition, Multiplication, Subtraction, Division. */ using System; using System.Collections.Generic; namespace Program { class Program { staticvoid Main( string [] args) { int Num1, Num2, result, option; Console.Write( "Enter the First Number : " ); Num1 = int .Parse(Console.ReadLine()); Console.Write( "Enter the Second Number : " ); Num2 = int .Parse(Console.ReadLine()); Console.WriteLine( "Main Menu" ); Console.WriteLine( "1. Addition" ); Console.WriteLine( "2. Subtraction" ); Console.WriteLine( "3. Multiplication" ); Console.WriteLine( "4. Division" ); Console.Write( "Enter the Operation you want to perform : " ); option = int .Parse(Console.Re...
A research problem is like a puzzle that scientists or researchers want to solve. To pick a good problem, think about what you like, look at what others have done, and find a question that nobody has fully answered. Consider if the question is important and if you have the time and tools to figure it out. Talk to people who know about the topic and get their advice. Make sure the problem matches your goals and what you want to achieve with your research.
**Research Design:** Research design is like a plan for a research project. It's how scientists decide to collect and analyze information to answer their questions. A good plan makes sure the study is organized and can give useful answers. **Survey Design Method:** Imagine you want to ask a bunch of people about something. Survey design is the way you plan how to do it: 1. **Say What You Want:** First, be clear about what you want to find out. What questions do you have? 2. **Choose How to Ask:** Decide if you'll use written questions (like a form) or talk to people (interviews). 3. **Pick People to Ask:** Choose a group of people that represents the larger group you're interested in. 4. **Ask Good Questions:** Create questions that are easy to understand and not tricky. Avoid questions that might make people answer in a certain way. 5. **Order Your Questions:** Put your questions in a logical order. Start with simple ones before asking more personal stuff. 6. **Test Your ...
Comments
Post a Comment