Success Forge C# Assignment 1

Success Forge C# Assignment 1

Professional Development

17 Qs

quiz-placeholder

Similar activities

DECI - Week 9 - round

DECI - Week 9 - round

Professional Development

12 Qs

DECI - Week 6 - round

DECI - Week 6 - round

Professional Development

12 Qs

C++ Programming

C++ Programming

Professional Development

20 Qs

DECI - Week 10 - round

DECI - Week 10 - round

Professional Development

13 Qs

Javascript

Javascript

Professional Development

17 Qs

flow charts

flow charts

Professional Development

12 Qs

python loop practice

python loop practice

Professional Development

12 Qs

Anits Sample Mock Test-I

Anits Sample Mock Test-I

Professional Development

20 Qs

Success Forge C# Assignment 1

Success Forge C# Assignment 1

Assessment

Quiz

Computers

Professional Development

Hard

Created by

Aniket Molke

Used 2+ times

FREE Resource

17 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is the correct syntax for an if statement in C#?

if condition { ... }

if (condition) { ... }

if [condition] { ... }

if {condition} [ ... ]

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following is NOT an arithmetic operator in C#?

+

*

--

&&

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is the output of this code?
int a = 10, b = 20;
if (a < b) { Console.WriteLine("a is less than b"); }

a is less than b

No output

Compilation error

b is less than a

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which loop guarantees execution at least once?

for

while

do-while

foreach

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is the output of this code?
int a = 5, b = 3;
Console.WriteLine(a % b);

1

2

0

3

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is the correct way to increment a variable by 1?

x++;

x =+ 1;

x += 1;

Both A and C

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Media Image

What is the output of this code?

0 1 2

1 2 3

0 1 2 3

Infinite loop

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?