Coding interview preparation
5.8K subscribers
372 photos
53 files
163 links
Download Telegram
The C variables are case insensitive.
Anonymous Quiz
68%
True
32%
False
👏2
Which of the following type is provided by C++ but not C?
Anonymous Quiz
34%
Double
9%
Float
5%
Int
52%
Bool
👍3
The result of evaluating the postfix expression 5, 4, 6, +, *, 4, 9, 3, /, +, * is?
Anonymous Quiz
19%
600
36%
350
29%
650
15%
588
👍2
Which of these packages contains the exception Stack Overflow in Java?
Anonymous Quiz
25%
java.system
19%
java.lang
28%
java.util
🔥1
A character variable can store ___ character(s) at a time.
Anonymous Quiz
72%
1
8%
2
6%
0
14%
Null
👍3
By default, all the files in C++ are opened in _________ mode.
Anonymous Quiz
47%
Binary
8%
VTC
29%
Text
17%
ISCII
Convert the following infix expressions into its equivalent postfix expressions.
(A + B ⋀D)/(E – F)+G
Anonymous Quiz
34%
(A B D ⋀ + E F – / G +)
35%
(A B D +⋀ E F – / G +)
23%
(A B D ⋀ + E F/- G +)
8%
(A B D E F + ⋀ / – G +)
1😁1
Which one of the following operator is used to check weather a specific property exists or not:
Anonymous Quiz
24%
Exists
31%
exist
15%
within
30%
in
👏1
Which of these keywords are used for the block to be examined for exceptions?
Anonymous Quiz
17%
Check
22%
Throw
26%
Catch
35%
Try
Hey folks 👋,

Most of you know that we organized our Programming Quiz League where you could compete with other members of our community.
Finding sponsors which would buy valuable prizes for our winners 🏆 is going very slow 😞 so I will probably buy modest prizes by myself.
If you have any suggestions what could i buy to winners please write in comments or send me a DM.

That said, I also decided to give a chance to people who maybe didn't have time or didn't know about our quiz league. Anyone who missed some quiz round can take it now. Both old winners and potential new winner would get prizes 🎁

Here is a list of all 10 quiz rounds:

1st round General Programming Knowledge
2nd round Data Structures (beginner level)
3rd round Java Quiz
4th round Database Management System
5th round Python Quiz
6th round HTML Quiz
7th round Javascript Quiz
8th round Data structures (advanced level)
9th round Data Science
10th round C/C++/OOP

After 10-15 days I will update results in this sheet.

PS. I will send this message to few or our other channels so I make sure everybody see it, I hope you don't mind.
Good luck 😊
How would you round off a value from 1.66 to 2.0?
Anonymous Quiz
22%
floor(1.66)
44%
ceil(1.66)
24%
roundup(1.66)
9%
roundto(1.66)
👍1
What will be the output of the following C++ function?
Anonymous Quiz
19%
Runtime error may be possible
30%
Compiler error may be possible
42%
1
9%
0
🔥5
Which one of the following is an ternary operator:
Anonymous Quiz
55%
?
39%
:
1%
-
5%
+
👏4👍3
Which one of the following is known as the Equality operator, which is used to check whether the two values are equal or not:
Anonymous Quiz
4%
=
83%
==
11%
===
3%
&&
👍4
Which one of the following is not an access modifier?
Anonymous Quiz
14%
Protected
74%
Void
5%
Public
7%
Private
🥰2
Which data type cannot be checked in switch-case statement in C?
Anonymous Quiz
70%
enum
7%
character
4%
integer
18%
float