Coding Quiz Zone
1.56K subscribers
18 photos
7 links
โœจ Part Of @OfficialCodingExpert

Dive into the world of computer science, programming, and coding challenges. Sharpen your skills, expand your knowledge, and embark on a journey of continuous learning. Stay tuned for daily quizzes!
Download Telegram
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();
}
}
 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();
}
}
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
Validation is computer based.
Anonymous Quiz
73%
a) True
27%
b) False
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
Maintenance is the final phase in waterfall model.
Anonymous Quiz
77%
a) True
23%
b) False
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
๐Ÿ˜’ It's been so long since we weren't drop quiz... โ˜น๏ธ

๐Ÿ˜† From now on, quiz will be posted regularly. โœŠ

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