Font size
WorksheetsRoll-a-coaster
Total questions: 30
Worksheet time: 22mins
Which company hires through STEP intern program?
Microsoft
Salseforce
Oracle
Which educational platform hires interns as "Technical Content Writter"?
Leetcode
GeeksforGeeks
Javatpoint
Work@Tech
Which company hires through NQT?
Infosys
Wipro
Cognizant
TCS
Full form of STEP in "STEP intern"?
Student Training in Engineering Program
Schedule Training of Engineers Portal
Senior Technical Engineering Program
Student Test in Engineering Process
What is full form of "NQT"?
National Quality Test
National Qualify Test
National Quest Test
National Qualifier Test
Which is a competitive coding platform ?
GeeksforGeeks
Javatpoint
Codeforces
Leetcode
Full Form of ICPC challenge?
International Collegiate Programming Contest
Inter Collegiate Programming Contest
International College Programming Contest
International Collegite Programming Contest
Which one of the following is a fintech company?
Verizon
HighRadius
Atlassian
When GSOC begins?
April - May
May - June
June - July
Aug - Sept
Which are the Cloud Computing companies?
AWS
Microsoft Azure
Capegemini
Yahoo
What is the best way to answer why should we hire you?
I have good knowledge of skills written in the job description
I am hardworking
Bragging about your achievements
Skip the question
HackWithInfy organise by _____________?
Capegemini
TCS
Cognizant
Infosys
Stratethon hackathon organize by which company anually?
Oracle
Myntra
Optum
Flipkart
Is competitive programming Compulsory for placement?
true
false
CODE JAM organise by____________?
amazon
flipkart
Which subject is most important for placements?
Data Structures & Algorithms
Computer networks
Maths
Operating System
Queue follows ________?
LIFO
FIFO
FIFI
FILO
What are the four pillars of OOPs?
Inheritance,Polymorphism,Abstraction,Encapsulation
Composition,Abstraction,Encapsulation,Association
Composition,Polymorphism,Encapsulation,Association
Scheduling,Queueing,Composition,Abstraction
Full form of ACID ?
atomicity, concurrency, isolation, and database
atomicity, consistency, isolation, and durability
atomicity, consistency, inheritence, and durability
auto, consistency, isolation, and durability
The concept of two functions with same name & different arguments is know as?
Operator Overloading
Function Overriding
Function Overloading
Function renaming
Which of the following is a keyword?
Finalize
Finally
Final
Finale
A ______class can access private and protected members of other class in which it declares as _________?
Static
Virtual
Friend
Pure Virtual
How many times PlacementReady is printed?
one
Compilation Error
Infinite
Runtime Error
Given array= {8,9,77,88,99} and key = 88; How many iterations are done until the element is found using Binary Search?
4
3
2
1
Output of Stack & queue respectively after performing following operations ?
stack : 2 10 , Queue : 17 3
stack : 2 10, Queue : 10 2
stack : 17 3 , Queue : 10 2
stack : 17 3 , Queue : 2 10
what will be in place of y if factorial
of a number is given by algorithm?
int fact(int n){
if(n==0)
return 1;
return y
}
y=(n+1)*fact(n);
y= n*fact(n-1);
y= (n)*fact(n-1)
y= (n-1)*fact(n);
What is the Time complexity of all Algorithms Given?
1.O(n^2) 2. O(nlogn) 3. O(logn) 4.O(n) 5.O(1) 6.O(logn) 7.O(1) 8.O(n)
1.O(n^2) 2. O(n^2) 3. O(logn) 4.O(n) 5.O(logn) 6.O(logn) 7.O(1) 8.O(n)
1.O(n^2) 2. O(nlogn) 3. O(logn) 4.O(n) 5.O(1) 6.O(logn) 7.O(n) 8.O(n)
1.O(n^2) 2. O(nlogn) 3. O(logn) 4.O(n) 5.O(logn) 6.O(logn) 7.O(1) 8.O(n)
DFS & BFS traversal of given graph Respectively if Source node is A?
ABDFEC , ABCDEF
ABCDFE,ABDEFC
ABDECF , ABCDEF
ABCEFD , ABDCEF
What is output of below code?
6,6
6,7
7,7
0,0
How is the 3rd element in an array accessed based on pointer notation?
*a +3
*(a+3)
*(*a+3)
&(a+3)
