What Kinds of Questions are Asked During a QBurst Interview?
4.
Basic-level QBurst Coding Questions
4.1.
1. Given a string of numbers, write a program to find the Lucky Winner in the QBurst Lucky Draw contest. The person is lucky if he gets the lucky number, i.e., if the sum of the last two digits of the number is 3 or 8, print “Lucky Draw Winner”, else print “not a Lucky Draw Winner”.
2. Write a program to find the center element in the array after sorting. Print the center element if the size of the array is odd, else print the average of the two middle elements.
6.
Advanced-level QBurst Coding Questions
6.1.
3. Check whether the given password is Valid or not. Given that a string of passwords must follow the given conditions:
6.2.
4. Given a string s, perform the following operations and return the modified string.
Do you think IIT Guwahati certified course can help you in your career?
No
Introduction
QBurst is a global product development and consulting firm specializing in next-generation technology platforms. It offers a wide range of services in web and mobile development, big data analytics, cloud computing, user experience design, DevOps, and testing.
The 1300-person workforce comprises data scientists, QA specialists, business analysts, system/IT engineers, developers, designers, and UX engineers. In addition, we will go over frequently asked QBurst Interview Questions.
QBurst coding interviews are required to assess their abilities as part of the technical expert recruitment process. However, due to the difficulty of the technical interview, candidates frequently need help to pass it. The QBurst coding interview is relatively easy (covering all areas), so you must be well prepared.
What Kinds of Questions are Asked During a QBurst Interview?
The technical round of QBurst interviews consists the questions from the following categories:
Below mentioned are some of the QBurst coding questions asked during the assessment as well as in an interview.
Basic-level QBurst Coding Questions
1. Given a string of numbers, write a program to find the Lucky Winner in the QBurst Lucky Draw contest. The person is lucky if he gets the lucky number, i.e., if the sum of the last two digits of the number is 3 or 8, print “Lucky Draw Winner”, else print “not a Lucky Draw Winner”.
#include<bits/stdc++.h>
using namespace std;
int main() {
string s;
cout<<"\n Enter Number:";
cin >> s;
int sum = (s[s.size() - 1] - '0') + (s[s.size() - 2] - '0');
if (sum == 3 || sum == 8)
cout << "\n Lucky Draw Winner";
else
cout << "\n Not a Lucky Draw Winner";
}
You can also try this code with Online C++ Compiler
2. Write a program to find the center element in the array after sorting. Print the center element if the size of the array is odd, else print the average of the two middle elements.
#include<bits/stdc++.h>
using namespace std;
int main() {
int n;
cout<<"\n Enter the size of array:";
cin >> n;
int a[n];
cout<<"\n Enter array elements:";
for (auto & x: a)
cin >> x;
sort(a, a + n);
int ans;
if (n % 2)
ans = a[n / 2];
else
ans = (a[n / 2 - 1] + a[n / 2 - 1]) / 2;
cout << "\n Center Element is:"<< ans << endl;
}
You can also try this code with Online C++ Compiler
3. Check whether the given password is Valid or not. Given that a string of passwords must follow the given conditions:
The length of the String is at least 8 characters
It Should Start with a Capital Letter
It should have at least one Numeric Value (0-9)
It Should have at one Special Character from the list [@$%&]
Print true if all the conditions are true, else print false.
#include<bits/stdc++.h>
using namespace std;
int main() {
string s;
cout<<"\n Enter Password:";
cin >> s;
int valid = 1;
if (s.size() < 8)
valid = 0;
if (!(s[0] <= 'Z' && s[0] >= 'A'))
valid = 0;
int num = 0, symbol = 0;
for (auto x: s) {
if (x <= '9' && x >= '0')
num = 1;
if (x == '@' || x == '$' || x == '%' || x == '&')
symbol = 1;
}
if (num == 0 || symbol == 0)
valid = 0;
if (valid)
cout << "\n True";
else
cout << "\n False";
}
You can also try this code with Online C++ Compiler
In this article, we have gone through what QBurst is, whether it is easy to crack QBurst coding questions, and then level-wise QBurst coding questions are explained with their code.