class UnsafeCode
{
struct MyStruct
{
public int a;
public int b;
public int Sum()
{
return a / b;
}
}
unsafe static void Main()
{
MyStruct o = new MyStruct();
MyStruct* p;
p = &o;
p->a = 60;
p->b = 15;
int c = 30;
Console.WriteLine("Value is : " + p->Sum()*c);
Console.ReadLine();
}
}
Coding Quiz Zone
class UnsafeCode { struct MyStruct { public int a; public int b; public int Sum() { return a / b; } } unsafe static void Main() { MyStruct o = new MyStruct(); MyStruct* p; โฆ
What will be the output of the following C# code snippet?
Anonymous Quiz
32%
a) Compile time error
36%
b) 120
28%
c) Run time error
4%
d) 4
class UnsafeCode
{
unsafe static void Main()
{
int* p ;
int ch = 13*5;
p = &(ch);
Console.WriteLine(Convert.ToChar(*p));
if (*p == 'A')
Console.WriteLine(Convert.ToBoolean(1));
else
Console.WriteLine(Convert.ToBoolean(0));
Console.ReadLine();
}
}
Coding Quiz Zone
class UnsafeCode { unsafe static void Main() { int* p ; int ch = 13*5; p = &(ch); Console.WriteLine(Convert.ToChar(*p)); if (*p == 'A') Console.WriteLine(Convert.ToBoolean(1)); elseโฆ
What will be the output of the following C# code snippet?
Anonymous Quiz
32%
a) 65 False
41%
b) 65 1
21%
c) A True
6%
d) A 1
Locating or identifying the bugs is known as ___________
Anonymous Quiz
4%
a) Design
29%
b) Testing
65%
c) Debugging
2%
d) Coding
___________ is done in the development phase by the debuggers.
Anonymous Quiz
20%
a) Coding
20%
b) Testing
58%
c) Debugging
2%
d) Implementation
A set of activities that ensure that software correctly implements a specific function.
Anonymous Quiz
25%
a) verification
41%
b) testing
20%
c) implementation
14%
d) validation
A planned program if work that requires a definitive amount of time, effort and planning to complete.
Anonymous Quiz
15%
a) Problem
49%
b) Project
23%
c) Process
13%
d) Program
An individual who plans and directs the work.
Anonymous Quiz
18%
a) Stakeholder
56%
b) Project manager
14%
c) Team leader
12%
d) Programmer
Methodology in which project management processes were step-by step.
Anonymous Quiz
23%
a) Incremental
51%
b) Waterfall
13%
c) Spiral
13%
d) Prototyping
A step in waterfall model that involves a meeting with the customer to understand the requirements.
Anonymous Quiz
46%
a) Requirement Gathering
36%
b) SRS
12%
c) Implementation
6%
d) Customer review
What do you call a technical person who is capable of understanding the basic requirements?
Anonymous Quiz
16%
a) team leader
39%
b) analyst
21%
c) engineer
23%
d) stakeholder
The customer requirements are broken down into logical modules for ease of _______________
Anonymous Quiz
23%
a) inheritance
34%
b) design
5%
c) editing
38%
d) implementation
___________ is a step in which design is translated into machine-readable form.
Anonymous Quiz
11%
a) Design
26%
b) Conversion
20%
c) Debugging
43%
d) Coding
A model that is the demo implementation of the system.
Anonymous Quiz
24%
a) waterfall
59%
b) prototype
9%
c) incremental
9%
d) agile
An electronic document that establishes your credentials when you are performing transactions.
Anonymous Quiz
35%
a) Digital code
33%
b) OTP
13%
c) E-mail
19%
d) Digital certificate
Encryption standard that is selected by the US government to replace DES.
Anonymous Quiz
43%
a) AES
26%
b) BES
20%
c) CES
11%
d) DES
Stay tuned guys!
Please open Telegram to view this post
VIEW IN TELEGRAM
โค4๐ฅ3๐2
Which of the following is NOT a type of Artificial Intelligence?
Anonymous Quiz
40%
Weak AI
29%
Reactive AI
20%
General AI
12%
Strong AI