en
Feedback
Coding Quiz Zone

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 more
1 575
Subscribers
No data24 hours
No data7 days
-930 days
Posts Archive
___________ is done in the development phase by the debuggers.
Anonymous voting

Locating or identifying the bugs is known as ___________
Anonymous voting

What will be the output of the following C# code snippet?
Anonymous voting

 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();
     }
 }

What will be the output of the following C# code snippet?
Anonymous voting

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();
   }
}

What will be the output of the following C# code snippet?
Anonymous voting

class UnsafeCode
{
    unsafe static void Main()
    {
        int[] nums = new int[10];
        fixed (int* p = &nums[0], p2 = nums)
        {
            if (p == p2)
            Console.WriteLine("p and p2 point to same address.");
            Console.ReadLine();
        }
    }
}

Which one of the following lines need to be uncommented or added in the php.ini file so as to enable mysqli extension?
Anonymous voting

The updated MySQL extension released with PHP 5 is typically referred to as _______________
Anonymous voting

Parameter flags was added in which version of PHP?
Anonymous voting

Which one of the following preg PHP functions is used to take a string, and put it in an array?
Anonymous voting

Which one of the following preg PHP function is used to do a find and replace on a string or an array?
Anonymous voting

Which one of the following functions are used to search a string?
Anonymous voting

If $a = 12 what will be returned when ($a == 12) ? 5 : 1 is executed?
Anonymous voting

Which variable is used to collect form data sent with both the GET and POST methods?
Anonymous voting

Which one of the following is the default PHP session name?
Anonymous voting

Which PHP statement will give output as $x on the screen?
Anonymous voting

What does PDO stand for?
Anonymous voting

The developers of PHP deprecated the safe mode feature as of which PHP version?
Anonymous voting