Our C# Online test helps recruiters and hiring managers to hire job-fit candidates for the C# Developer role. This pre-employment test contains questions on Class, Method, Object, Encapsulation, Inheritance, and Constructor. By filtering out irrelevant candidates, the C# technical test can reduce technical screening time by up to 80%.
The C# Test (Medium Level) helps Recruiters and Hiring Managers assess and hire C# Developers by measuring medium-level C# coding skills. The best way to evaluate a talented C# developer for a job is to give them a coding test. The candidate must write a code that uses the concepts of C# and error handling to solve real-world problems. If a developer also writes comments for his code, then he is considered a good C# developer.
So, to check the C# coding skills of a C# developer, this online C# test is designed and validated as per industry standards. It has been developed and reviewed by our qualified and experienced Subject Matter Experts (SMEs) to hire a C# developer by evaluating one’s C# coding skills. Using powerful reporting, you can have a detailed analysis of the test results to help you make better hiring decisions and predict the candidate’s performance.
This C# technical test (Medium Level) enables employers and recruiters to identify & hire C# developers by evaluating working skills and job readiness. For this reason, the emphasis is laid upon evaluating the knowledge of applied skills gained through real work experience rather than theoretical knowledge. The C# test may contain AI-LogicBox & Coding Simulators, etc.
One day, Alex was going through some old books and he finds something scribbled on the corner of a page.
He decides to find if the scribbled text exists in the given string.
Print YES or NO if the scribbled text exists in the given string.
Input Format
The first line contains scribbled text and
Next line contains a text string. All characters in both the strings are in lowercase only [a-z].
Output Format
Print YES or NO if the scribbled text exists in the given string.
Sample Input use -- Scribbled text
question -- Text string
Sample Output
YES
Explanation
use
question ==> u e and s ==> u,s,e (All the three characters are available in the Text either as it is or in scribbled form.)
Hence, Answer is YES