Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

BrowserStack Interview Experience | Set 4 (On-Campus)

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Online coding 3hrs
2 questions
20 marks each.

Problem 1:
Write a program which takes JSON as input and gives prettified JSON
a) You need to read JSON from STDIN. Input gives one line of uglified JSON.
b) Output should be formatted JSON.
Given two JSON objects, find the values of fields. whose values are different.
Eg. Input
{“Geeks”:”Test1″,”Are”:”hey”,”Cool”:”yeah”}
{“Geeks”:”Test1″,”Are”:”20″,”Cool”: [‘B’,’C’] }
Ans: Are:Cool
Answer should be in above format ..

Problem 2:
Given a string and a Regular Expression pattern, give the number of the times the pattern occurs in the string. RegEx symbols mean as follows:
. – 2 occurrences of the previous character, + – 4 occurrences of previous character, * – more than 5 occurrences of the previous character

Sample Input (Plaintext Link)
5
aaaaaannndnnnnnnfffhfhhgjjjwkkkllclc
a.
n+
a*
an.
a.d.

Sample Output (Plaintext Link)
5
3
2
1
0

If you like GeeksforGeeks and would like to contribute, you can also write an article and mail your article to review-team@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.

My Personal Notes arrow_drop_up
Last Updated : 02 Dec, 2021
Like Article
Save Article
Similar Reads