Coding interview preparation
5.81K subscribers
377 photos
57 files
163 links
Download Telegram
What will be the output of the following Java code snippet?
Anonymous Quiz
11%
Runtime Error
26%
EnumNotDefined Exception
33%
It runs successfully
30%
Compilation Error
Learn anything about coding
πŸ‘5
The C library function rewind() is used for re-position the file pointer at the beginning of the file.
Anonymous Quiz
83%
True
17%
False
GRC Tools
πŸ‘1
Hey hey hey πŸ‘‹

New quiz update is here!
I am sorry guys but I usually get carried away being too busy with my work so I just don't have time to update about our quiz sometimes.
5 rounds are behind us and we are at the middle of our quiz.
I summed up results by now and shared them in this document.

Each right answer gets you 3 points and additional 1-50 points is assigned to you based on your position.

Don't forget that prizes for this quiz is given by switch community so please make sure to join me in their app:
πŸ‘‰ Download button in following link - https://switch.click/bigdataspecialist

We will close HTML round (6th) tomorrow.

Keep braining 🧠

@bigdataspecialist
πŸ‘3
Consider the following definition in c programming language.
Which of the following c code is used to create new node?
Anonymous Quiz
50%
ptr = (NODE*)malloc(sizeof(NODE));
19%
ptr = (NODE*)malloc(NODE);
25%
ptr = (NODE*)malloc(sizeof(NODE*));
6%
ptr = (NODE)malloc(sizeof(NODE));
πŸ₯°2
πŸ‘1
Which one of the following code is equivalent to the following given code?

a.x(g,h);
Anonymous Quiz
19%
x (g) &&a.x (h);
42%
a [ "x" ] ( g , h );
34%
a (x )[ "g" , "h" ];
5%
x( g&&h );
Data Structure Cheat Sheet
πŸ‘2πŸ‘Œ2
Which method returns the elements of Enum class?
Anonymous Quiz
29%
getEnums()
15%
getEnumConstants()
20%
getEnumList()
36%
getEnum()
πŸ‘Ž1
Networking protocols
πŸ‘2πŸ‘¨β€πŸ’»1
Which class does all the Enums extend?
Anonymous Quiz
26%
Object
19%
Enums
26%
Enum
29%
EnumClass
πŸ‘1
Types of databases
πŸ‘1
Which header file is used for supporting the functions- malloc() and calloc().
Anonymous Quiz
29%
stdio.h
8%
math.h
48%
stdlib.h
14%
memory.h
πŸ‘2
SQL query execution order
πŸ‘1
Which of the following constructors are provided by the C++ compiler if not defined in a class?
Anonymous Quiz
10%
Copy constructor
48%
Default constructor
14%
Assignment constructor
29%
All of these
OOPS in real life
❀1
What kind of linked list is best to answer questions like β€œWhat is the item at position n?”
Anonymous Quiz
28%
Singly linked list
22%
Doubly linked list
9%
Circular linked list
40%
Array implementation of linked list