Coding Quiz Zone
Open in Telegram
✨ 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!
Show more1 575
Subscribers
No data24 hours
No data7 days
-930 days
Posts Archive
1 575
class UnsafeCode
{
unsafe static void Main()
{
int* ptrs = stackalloc int[3];
ptrs[0] = 1;
ptrs[1] = 2;
ptrs[2] = 3;
for (int i = 2; i >=0; i--)
Console.WriteLine(ptrs[i]);
Console.ReadLine();
}
}1 575
unsafe struct FixedBankRecord
{
public fixed byte Name[80];
public double Balance;
public long ID;
}
class UnsafeCode
{
unsafe static void Main()
{
Console.WriteLine("Size of FixedBankRecord is " + sizeof(FixedBankRecord));
Console.ReadLine();
}
}1 575
Which operator is commonly used to find the size of the type of C#?
1 575
What will be the output of the following Python statement?(python 3.xx)
1 575
>>>print(format("Welcome", "10s"), end = '#')
>>>print(format(111, "4d"), end = '#')
>>>print(format(924.656, "3.2f"))1 575
>>>print("D", end = ' ')
>>>print("C", end = ' ')
>>>print("B", end = ' ')
>>>print("A", end = ' ')1 575
The format function, when applied on a string returns ___________
1 575
Which of the following statement prints hello\example\test.txt?
1 575
What will be the output of the following Python statement?
>>>print(chr(ord('b')+1))
1 575
Which of the following media type is used for computer screens?
1 575
Which value specifies the number of colors the device can display?
