HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ip-172-31-18-78 6.17.0-1017-aws #17~24.04.1-Ubuntu SMP Tue May 26 21:09:53 UTC 2026 aarch64
User: ubuntu (1000)
PHP: 8.2.31
Disabled: NONE
Upload Files
File: //proc/thread-self/cwd/interest-test/test_questions.php
<?php
include_once '../wp-config.php';
// ini_set('display_errors',1);
// ini_set('display_startup_errors',1);
// error_reporting(E_ALL);
if (is_user_logged_in()) {
    global $current_user;
    get_currentuserinfo();
    $user_id = $current_user->ID;  // print session USER_ID
?>
    <?php
    global $wpdb;
    $PSY_USERS = $wpdb->prefix . PSY_USERS;
    $PSY_USERS_DETAILS = $wpdb->prefix . PSY_USERS_DETAILS;
    $PSY_INTEREST_TEST_QUES = $wpdb->prefix . PSY_INTEREST_TEST_QUES;
    $PSY_TEST_GEN_TEST_TAKEN = $wpdb->prefix . PSY_TEST_GEN_TEST_TAKEN;
    $PSY_INTEREST_TEST_QUES_OPTION = $wpdb->prefix . PSY_INTEREST_TEST_QUES_OPTION;
    $PSY_INTEREST_TEST_TAKEN_QUSTION_ANSWER = $wpdb->prefix . PSY_INTEREST_TEST_TAKEN_QUSTION_ANSWER;

    $parentExamId = $_REQUEST['exam_category_id'];
    $view = $_REQUEST['view'];
    $pending_test_id = $_REQUEST['pending_test_id'];
    $test_view_type = $_REQUEST['test_view_type'];
    $asign_ref_id = $_REQUEST['asign_ref_id'];
    $class_id = $_REQUEST['class_id'];
    $curDate = date('Y-m-d H:i:s');
    $curDateTime = date('Y-m-d H:i:s');

    if ($view == 'new') {
        //generate test id
        $insertTest = "INSERT into $PSY_TEST_GEN_TEST_TAKEN set reference_id='$asign_ref_id', test_type='INT', whitelabel_id='0', class_id='$class_id', user_id='$user_id', exam_category_id='$parentExamId', medium_id='1', total_questions='20', start_date='$curDateTime', status='N'";
        $insertTestData = $wpdb->query($insertTest);
        $sp_test_taken_id = $wpdb->insert_id;

        $getQuestions = "SELECT question_id FROM $PSY_INTEREST_TEST_QUES";
        $fetch = $wpdb->get_results($getQuestions);

        foreach ($fetch as $f) {
            $insertQuestion = $wpdb->query("INSERT into $PSY_INTEREST_TEST_TAKEN_QUSTION_ANSWER set test_taken_id='$sp_test_taken_id', test_question_id='$f->question_id', date='$curDateTime'");
        }
    } else {
        $sp_test_taken_id = $pending_test_id;
    }

    $getName = $wpdb->get_row("SELECT first_name,last_name from $PSY_USERS_DETAILS where user_id='$user_id'");
    $username = $getName->first_name . " " . $getName->last_name;
    $examName = 'Interest Test';
    $totalMinute = '60';

    /* ------------ set the timer ------------- */
    $dateFormat = "d F Y -- g:i a";
    $targetDate = time() + ($totalMinute * 60); //Change the $totalMinute to however many minutes you want to countdown
    $actualDate = time();
    $secondsDiff = $targetDate - $actualDate;
    $remainingDay = floor($secondsDiff / 60 / 60 / 24);
    $remainingHour = floor(($secondsDiff - ($remainingDay * 60 * 60 * 24)) / 60 / 60);
    $remainingMinutes = floor(($secondsDiff - ($remainingDay * 60 * 60 * 24) - ($remainingHour * 60 * 60)) / 60);
    $remainingSeconds = floor(($secondsDiff - ($remainingDay * 60 * 60 * 24) - ($remainingHour * 60 * 60)) - ($remainingMinutes * 60));
    $questionStartTime = date('H:i:s', mktime($remainingHour, $remainingMinutes, $remainingSeconds));
    
    ?>

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">


    <form id="frmMockTest" method="post">
        <input type="hidden" value="1" name="currentQuestionId" id="currentQuestionId" />
        <input type="hidden" value="<?php echo $remainingHour ?>" name="tt_hour" id="tt_hour" />
        <input type="hidden" value="<?php echo $remainingMinutes; ?>" name="tt_minute" id="tt_minute" />
        <input type="hidden" value="<?php echo $remainingSeconds; ?>" name="tt_second" id="tt_second" />
        <input type="hidden" value="<?php echo $test_taken_id; ?>" name="test_taken_id" id="test_taken_id" />
        <input type="hidden" value="" name="time_taken" id="time_taken" />
        <input type="hidden" value="<?php echo $parentExamId; ?>" name="exam_category_id" id="exam_category_id" />
        <input type="hidden" value="<?php echo $user_id; ?>" id="user_id" />
        <input type="hidden" name="totalMinute" value="<?php echo $totalMinute; ?>" id="totalMinute" />
        <!-- TOP HEADER OF TEST QUESTION -->
        <div class="container-fluid box_sho">
            <div class="chek col-md-12 col-sm-12 col-xs-12" id="contentdiv">
                <div class="col-md-4 col-sm-8 col-xs-8 p-0">
                    <h4 class="exam_title2">Test Name :
                        <span class="exam_na"><?php echo $examName; ?></span>
                    </h4>
                </div>
                <div class="col-md-4 col-sm-2 col-xs-4">
                    <h4 class="mob_font_size">
                        <input class="font_size" type="button" title="Increase Font Size" id="button1" value="A+" onclick="changeFontSize(this);">
                        <input class="font_size" type="button" title="Decrease Font Size" id="button2" value="A-" onclick="changeFontSize(this);">
                    </h4>
                </div>
                <div class="col-md-4 col-sm-4 col-xs-8">
                    <h4 class="time_left" id="tt_time_div" style="display: block;">Time Left <span id="tt_timer_run"></span></h4>
                </div>
                <h4 style="display: none;"><span id="tt_timer"></span></h4>
            </div>
        </div>
        <!-- END TOP HEADER OF TEST QUESTION -->
        <!-- ====================== -->
        <!-- ========================== -->
        <!-- MCQ QUESTIONS SECTION  -->
        <!-- QUESTION LOOP START -->
        <?php
        $getQuestions = "SELECT sq.question_id,sq.question_statement,sq.options FROM $PSY_INTEREST_TEST_TAKEN_QUSTION_ANSWER as tq INNER JOIN $PSY_INTEREST_TEST_QUES as sq on sq.question_id=tq.test_question_id WHERE tq.test_taken_id='$sp_test_taken_id'";
        $fetchAll = $wpdb->get_results($getQuestions);
        $i = 1;
        foreach ($fetchAll as $f) {
            $qID = $f->question_id;
            $question = $f->question_statement;
            $options = $wpdb->get_results("SELECT option_name, option_value FROM $PSY_INTEREST_TEST_QUES_OPTION WHERE question_id='$qID'");
            $questionAnsArray[$i] = array('q_no' => $i, 'question_id' => $qID, 'test_taken_id' => $sp_test_taken_id, 'answer' => '');
        ?>
            <div class="col-md-12 col-sm-12 col-xs-12 ques-box" style="display:<?php if ($i > 1) echo 'none;'; ?>" id="ques_<?php echo $i; ?>">
                <input type="hidden" name="q_id<?php echo $i; ?>" id="q_id<?php echo $i; ?>" value="<?php echo $qID; ?>" />
                <div class="chek col-md-12 col-sm-12 col-xs-12 p-0" id="contentdiv">
                    <div class="col-md-12 col-sm-12 col-xs-12">
                        <h4 class="que_no">Question <?php echo $i . ' of ' . sizeof($fetchAll); ?> <span class="see-more-txt" title="Click to know more about these professions..." data-toggle="modal" data-target="#glossaryModal">Glossary</span></h4>
                    </div>
                    <hr class="m-0" style="float: left;width: 100%;border: 1px solid #bdbdbd;">
                    <div class="col-md-12 col-sm-12 col-xs-12">
                        <div class="scrl">
                            <div id="myp">
                                <div class="quest col-md-1 col-xs-2 ques_div">
                                    <h4 class="fontControl ques_no"><?php echo 'Q ' . $i . '.'; ?>
                                    </h4>
                                </div>
                                <div class="col-md-11 col-xs-10">
                                    <h4 class="ques fontControl" id="question_statement_<?php echo $i; ?>"><?php echo str_replace('"../', $root_link, $question); ?>
                                    </h4>
                                    <div class="radio rad_bo fontControl">
                                        <?php
                                        foreach ($options as $f) {
                                        ?>
                                            <div class="checkbox-div">
                                                <label><?php echo $f->option_value; ?></label>
                                                <input class="tt_test_option" type="checkbox" value="<?php echo $f->option_name; ?>" name="option_<?php echo $i; ?>">
                                            </div>
                                        <?php
                                        }
                                        ?>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
                <!-- FOOTER SECTION -->
                <div class="footer">
                    <div class="col-md-3 col-sm-3 col-xs-6">
                        <a style="cursor: pointer;text-decoration:none;" id="submit_<?php echo $i ?>" class="button tet_prevoius">
                            <h4 class="clear_res button_disable" style="display: none;" id="tet_previous<?php echo $i ?>"><?php echo 'Previous' ?></h4>
                        </a>
                        <a style="cursor: not-allowed;" class="tet_prevoius">
                            <h4 class="clear_res button_disable" id="tet_previous_disable<?php echo $i ?>"><?php echo 'Previous' ?></h4>
                        </a>
                    </div>
                    <div class="col-md-3 col-sm-3 col-xs-6">
                        <a style="cursor: pointer;text-decoration:none;" id="submit_<?php echo $i ?>" class="button tet_mock_next">
                            <h4 class="tt_next_btn clear_res2" id="tet_mock_next<?php echo $i ?>"><?php echo 'Next' ?></h4>
                        </a>
                        <a id="submit_<?php echo $i ?>">
                            <h4 class="clear_res2 button_disable" style="display: none;" id="tet_mock_next_disable<?php echo $i ?>"><?php echo 'Next' ?></h4>
                        </a>
                    </div>
                    <div class="col-md-3 col-sm-3 col-xs-6">
                        <h4 class="sub_test">
                            <a href="#finishExit" id="fin_ex">Finish & Exit</a>
                        </h4>
                    </div>
                </div>
                <!-- END FOOTER SECTION -->
            </div>
            <!-- END QUESTION LOOP START -->
        <?php
            $i++;
        }
        //echo "<pre>Data:".print_r($questionAnsArray, true)."</pre>";
        if (count($questionAnsArray) > 0) {
            $questionJsonArray = json_encode($questionAnsArray, true);
            //echo $questionJsonArray;
        ?>
            <script>
                var jsonQues = <?php echo $questionJsonArray; ?>
            </script>
        <?php
        }
        ?>
        <!-----------questions loop end----------------->
        <!-- END MCQ QUESTIONS SECTION  -->
        <script src="<?php echo 'tet_assign_question.js?v=' . date('dmyhis'); ?>"></script>
        <!-- FINISH MODAL OPEN -->
        <div id="finishExit" class="overlay">
            <div class="text-center" id="finish-exit-load">
                
            </div>
            <div class="col-md-12 col-sm-12 col-xs-12">
                <div class="edit_popup text-center">
                    <h2 class="fs_title">Test Summary</h2>
                    <!-- <div class="col-md-12">
                        <div class="col-md-4 col-sm-4 col-xs-12">
                            <div class="numberCircleQuadruple" style="color: #fff;background: green;" id="pcountA">0</div>
                            <h4 class="test_details_title">Attempted</h4>
                        </div>
                        <div class="col-md-4 col-sm-4 col-xs-12">
                            <div class="numberCircleQuadruple" style="color: #fff;background: #ff1212;" id="ppcountNot">0</div>
                            <h4 class="test_details_title">Not Viewed</h4>
                        </div>
                        <div class="col-md-4 col-sm-4 col-xs-12">
                            <div class="numberCircleQuadruple" style="color: #fff;background: #ec2222;" id="ppcountNotAns">0</div>
                            <h4 class="test_details_title">UnAttempted</h4>
                        </div>
                    </div> -->
                    <div class="col-md-12">
                        <div class="col-md-4 col-sm-4 col-xs-12">
                            <h4 class="close_load">
                                <a href="#">Back To Test</a>
                            </h4>
                        </div>
                        <div class="col-md-4 col-sm-4 col-xs-12">
                            <h4 class="time_left_details">Time Left
                                <span id="tt_timerp"></span>
                            </h4>
                        </div>
                        <div class="col-md-4 col-sm-4 col-xs-12">
                            <input type="button" name="submit_diagnostic" class="load1" value="Finish & Exit" onclick="saveSubmitTest('complete');" />
                        </div>
                    </div>
                </div>
            </div>
        </div>
        <!-- END FINISH MODAL OPEN -->
        <!----Instruction modal--->
        <div id="glossaryModal" class="modal fade" style="background: #000000f2">
            <div class="modal-dialog">
                <div class="modal-content">
                    <div class="modal-header">
                        <img style="display: none;margin-left: 45%;" src="<?php echo get_bloginfo('url') . '/aptitude-test/fancybox_loading.gif'; ?>" class="img_load">
                        <h4 class="modal-title">Read Instructions</h4>
                    </div>
                    <div class="modal-body p-0">
                        <div class="col-md-12 col-sm-12 col-xs-12" id="instruction_area1">
                            <h3>Interest Glossary</h3>
                            <p>The Professions are listed in an alphabetical order.</p>
                        </div>
                        <div class="col-md-2 col-sm-2 col-xs-2"></div>
                        <div class="col-md-8 col-sm-8 col-xs-8">
                                <input class="form-control" type='text' id='search' placeholder='Search your interest related field..'>
                        </div>
                        <div class="col-md-2 col-sm-2 col-xs-2"><i class="fa fa-search"></i></div>
                        <div class="col-md-12 col-sm-12 col-xs-12" id="instruction_area1">
                            <ul class="description-ul search_content">
                                <li class="search_title">
                                    <h4 class="gen_ins">Actuarial Scientist</h4> - A person whose job is to tell insurance companies how much they should charge people for insurance based on risks.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Advertising Director</h4> - Person in-charge of creating an advertisement.Advertising directors are responsible for overseeing different media projects and campaigns launched by an organization.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Aeronautical Engineer</h4> - work with aircraft. They are involved primarily in
                                    designing aircraft and propulsion systems and in studying the aerodynamic performance of aircraft and construction materials.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Agriculture Engineer</h4> - integrate technology with farming. For example, they design new and improved farming equipment that may work more efficiently, or perform new tasks.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Agriculture Inspector</h4> - makes sure that businesses comply with federal and
                                    state laws and regulations that govern the health, quality, and safety of meat, poultry, egg products, fruits, and vegetables. They also inspect food- and meat-processing plants to ensure that the facilities meet quality standards.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Agriculture Researcher</h4> - are Researchers in the field of agricultural science who attempt to develop effective, safe and environmentally sustainable techniques for raising livestock and harvesting crops. Specialty areas in this field can include animal science, food science, bioresource science and soil science.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Agriculture Scientist</h4> - work in several specialties. Animal scientists focus on how domestic farm animals are used for food. They study reproduction, development, genetics and diseases.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Air Hostess</h4> - commonly called flight attendants or stewardesses, tend to
                                    passengers on a flight. They review safety practices before the flight, bring passengers requested items such as pillows or earpieces, serve food and drinks, and ensure that passengers are comfortable throughout the flight.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Air Marshal</h4> - is a very high rank in the Indian Air Force.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Air Warrior</h4> - a person inducted in the Indian Air Force.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Ambassador </h4> - is an official envoy, especially a high-ranking diplomat sent by a
                                    state as its permanent representative in a foreign country.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Anesthetist </h4> - are specialist doctors who are responsible for providing anesthesia
                                    to patients for operations and procedures.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Anthropologist </h4> – is a person engaged in the practice of anthropology.
                                    Anthropology is the study of aspects of humans within past and present societies.
                                    Social anthropology, cultural anthropology, and philosophical anthropology study
                                    the norms and values of societies.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Architect </h4> - is a person who plans, designs and reviews the construction of
                                    buildings.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Armored Officer </h4> – is an officer in the Armored Regiment of the Indian Army.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Artificial Intelligence Expert </h4> – is a person who is an expert at creating artificial
                                    intelligence systems.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Artist </h4> - is a person who creates art.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Assistant Professor </h4> - is an academic rank used in universities or colleges.
                                    He/She teaches in the college.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Astronomist </h4> - is a scientist in the field of astronomy who focuses their studies on
                                    a specific question or field outside the scope of Earth. They observe astronomical
                                    objects such as stars, planets, moons, comets and galaxies – in either
                                    observational (by analyzing the data) or theoretical astronomy.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Auditor </h4> - is a person authorized to review and verify the accuracy of financial
                                    records and ensure that companies comply with tax laws.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Author </h4> - is the creator or originator of any written work such as a book or play,
                                    and is also considered a writer.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Automobile Engineer </h4> - are concerned with the development of passenger cars,
                                    trucks, buses, motorcycles or off-road vehicles. They do one or more of the
                                    following: Design new products or modify existing ones. Troubleshoot and solve
                                    engineering problems.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Banquet Manager </h4> - is responsible for coordinating the delivery of all food and
                                    beverage for functions held in the Hotel and all details pertaining to functions being
                                    held in all Banquet and Meeting rooms in keeping with the standards prescribed by
                                    management.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Beautician </h4> - is a trained professional who uses cosmetology techniques to
                                    provide hair, nail, makeup, or skin care services to their clients.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Bio-chemist </h4> - study the chemical principles of living things and of biological
                                    processes, such as cell development, growth, heredity, and disease. The aim of a
                                    biochemist is to improve our quality of life by understanding living organisms at the
                                    molecular level.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Botanist </h4> - are scientists who study plants, including flowering plants, and
                                    plant-like things such as moss and seaweed. Botany is a scientific study of plants
                                    along with their growth, structure, evolution, and uses.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Budget Analyst </h4> - is someone who helps various organizations and businesses
                                    organize and allocate their financial resources by developing and executing
                                    budgets for them. They monitor spending to remain within budget and estimate
                                    future spending requirements.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Captain </h4> – is a rank in the Indian Army and also in the Indian Navy and Coast
                                    Guard.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Cardiologist </h4> – is a specialist doctor who treats Heart ailments.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Cartoonist </h4> - is an artist who creates animated cartoons manually or on the
                                    computer. This can be for magazines, newspapers, publishing companies,
                                    television and film studios, videos, gaming companies and animation studios.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Catering Manager </h4> – leads a team of chefs and catering assistants. He is
                                    responsible for running the day-to-day catering operations and services in
                                    restaurants, hotels and resorts. They are responsible for monitoring the quality of
                                    the food and service and for making sure that their outlets perform well.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">CBI Officer </h4> – works at The Central Bureau of Investigation, which is the premier
                                    investigating agency of India.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Chartered Accountant </h4> - it refers to professional accountants who are qualified
                                    to take on a number of specific activities within the spectrum of accountancy. Such
                                    tasks include auditing financial statements, filing of corporate tax returns and
                                    financial advising.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Chef </h4> - is in charge of the kitchen in restaurants or other places where food is
                                    served. They watch all activity and food preparation with any staff that would assist
                                    in the kitchen. They supervise the preparation of food for its garnishing and
                                    presentation, as well as, the seasonings for a perfect taste.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Chemical Engineer </h4> - is a professional, who is equipped with the knowledge of
                                    chemical engineering, works principally in the chemical industry to convert basic
                                    raw materials into a variety of products, and deals with the design and operation of
                                    plants and equipment.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Cinematographer </h4> - or director of photography (sometimes shortened to DP or
                                    DOP) is the chief over the camera and light crews working on a film, television
                                    production or other live action piece and is responsible for making artistic and
                                    technical decisions related to the image.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Civil Lawyer </h4> - is the branch of law which deals with matters that are non-criminal
                                    in nature relating to Family Law, Constitutional Law, Service Law, Company Law,
                                    Insolvency, Banking and Finance Law, Recovery Suit, Consumer Law, Property
                                    Suit, Wills and Probate, Enforcement of Decrees etc.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Club Manager </h4> - A Club Manager is responsible for supervising all areas and
                                    operations of a particular club. They usually have different job titles depending on
                                    the kind of club they manage. They may manage dance or nightclubs, fitness and
                                    health clubs, or country and social clubs.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Coast Guard Commander </h4> – An officer in charge of a coast guard fleet.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">College Lecturer </h4> – teaches students in a college.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Colonel </h4> - a high rank in the Indian Army.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Commanding Officer </h4> – an officer in charge of a unit in the armed forces.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Commentator </h4> - a person who commentates on a sports match or other event.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Communication Designer </h4> – a person who studies Communication design, which
                                    is the approach of reaching to people through the means of print media as well as
                                    electronic media through well designed information.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Company Secretary </h4> - is a senior position in a private sector company or public
                                    sector organization whose responsibility is to register and communicate with
                                    shareholders, to ensure that dividends are paid and to maintain company records,
                                    such as lists of directors and shareholders, and annual accounts.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Computer Engineer </h4> – is a person who studies Computer engineering which is a
                                    branch of engineering that integrates several fields of computer science and
                                    electronic engineering required to develop computer hardware and software.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Computer Teacher </h4> – teaches Computer Science in schools.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Corporate Lawyer </h4> - a lawyer who specializes in corporate law.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Corporate Strategy Planner </h4> - focuses on how to manage resources, risk and
                                    return across a firm. Strategic planning is the art of formulating business strategies,
                                    implementing them, and evaluating their impact based on organizational objectives.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Crime Reporter </h4> - is the person who analyses crime trends and statistics in order
                                    to comment on and analyze relevant issues and write about breaking crime stories.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Criminal Lawyer </h4> - represent defendants facing criminal charges in state, federal
                                    and appellate courts. Their scope of practice includes bail bond hearings, plea
                                    bargains, trial, revocation hearings (parole or probation), appeals and
                                    post-conviction remedies.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Customs Broker </h4> - Customs broker is a profession which expertise include tariff
                                    and customs laws, rules and regulations for the clearance of imported or exported
                                    goods or merchandise from customs authority, preparation of import or export
                                    documents including computation and payment of duties, taxes and other charges.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Customs Officer </h4> - is a law enforcement agent who enforces customs laws, on
                                    behalf of a government.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Cyber Law Expert </h4> – is an expert in Cyber law. he handles the cases of
                                    cyber-crime. Cyber-crimes are the illegal activities committed on the internet. Cyber
                                    lawyers handle cases of cyber-crimes against persons, property and government.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Dairy Farmer </h4> - is someone who owns or manages a farm where cows are raised
                                    for the production of milk and other dairy products. These farmers are involved in a
                                    wide range of activities for the purpose of increasing milk production.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Dancer </h4> - a person whose profession is dancing.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Defense Researcher </h4> – a person who is responsible for the development of
                                    emerging technologies and best practices for use by the military.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Dentist </h4> - also known as a dental surgeon, is a surgeon who specializes in
                                    dentistry, the diagnosis, prevention, and treatment of diseases and conditions of the
                                    oral cavity.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Director of Education </h4> - also known as instructional coordinators, direct and
                                    shape the curricula and teaching processes in a school or school district.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Disc Jockey (DJ) </h4> - a person who introduces and plays recorded popular music,
                                    especially on radio or at a club.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">District Inspector of Schools </h4> – is a person whose most important duty and
                                    responsibility is the supervision of schools of all classes in his educational district
                                    with the exception of high schools and secondary training schools.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">District Judge </h4> – is a person of judiciary who presides over civil matters at the
                                    district court.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">District Magistrate </h4> - often abbreviated to DM, is an Indian Administrative
                                    Service officer who is the senior most executive magistrate and chief in charge of
                                    general administration of a district in India.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Ecologist </h4> - study the interrelationships between organisms and their
                                    environments. For example, they may research how the creatures in forests,
                                    deserts, wetlands, or other ecosystems interact with each other, as well as their
                                    environments.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Education Officer </h4> – is in charge of learning and development, curriculum and
                                    assessment of students/employees of a particular school or department.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Electrical Engineer </h4> – is a person who is an engineering graduate concerned
                                    with the study, design and application of equipment, devices and systems which
                                    use electricity.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Electronic Engineer </h4> - is a person who studies electronics engineering which is a
                                    form of engineering associated with electronic circuits, devices and the equipment
                                    and systems.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Endangered Species Biologist </h4> - are specialists in the field that deal solely with
                                    animal and plant species presently at threat of extinction. They are involved in
                                    breeding programs, genetic research, ecological research and trying to understand
                                    the causes of the threats that these endangered species face.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Environmental Scientist </h4> - conduct research to identify, control, or eliminate
                                    sources of pollutants or hazards affecting the environment or public health. They
                                    also develop plans to prevent, control, or fix environmental problems like air
                                    pollution.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Exhibition Designer </h4> - is someone who creates displays and fixtures for large
                                    exhibitions, shows, businesses, museums, libraries, and galleries. They are
                                    specially trained in the art of layout and design, and may work exclusively for a
                                    museum, gallery, or a private firm.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Export Import Manager </h4> - manages the import/export process, and ensures
                                    compliance with Indian and foreign government laws and regulations. Expedites the
                                    flow of traffic to/from foreign destinations, including customs documentation and
                                    transportation.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Eye Specialist </h4> – a specialist doctor who treats eyes.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Farmer </h4> – a person involved in growing crops.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Fashion Designer </h4> - is responsible for creating the specific look of individual
                                    garments-including a garment's shape, color, fabric, trimmings, and other aspects of
                                    the whole.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Fertilizer Specialist </h4> – a person who is has in depth knowledge about the
                                    composition and use of various fertilizers and it’s affects.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Fighter Bomber </h4> – a person who flies a fighter aircraft that has been modified, or
                                    used primarily, as a light bomber or attack aircraft.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Fighter Controller </h4> – is a controller of fighter aircraft, such as tactical air
                                    controller and air defense controller.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Fighter Pilot </h4> – a person who flies fighter jets in the armed forces.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Film Director </h4> - a person who directs a film and is in charge of all the aspects of
                                    film making.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Film Producer </h4> - is a person who oversees film production.
                                <li class="search_title">
                                    <h4 class="gen_ins">Film Reporter </h4> – A film journalist does research on industry/movie trends, takes
                                    statistics and writes on that. They also write regarding the freedom of artists,
                                    movies, actors and other related topics.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Film Set Designer </h4> - is in charge of designing and creating the sets that appear
                                    in films and television programs as well as in the theatre.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Finance Manager </h4> - is responsible for the financial health of an organization. He
                                    produces financial reports, direct investment activities, and develop strategies and
                                    plans for the long-term financial goals of the organization.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Fishery Scientist </h4> - study fish and their habitats. It is a multidisciplinary science,
                                    which draws on the disciplines of limnology, oceanography, freshwater biology etc.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Flight Attendant </h4> - is a member of an aircrew employed by airlines aboard
                                    commercial flights, primarily to ensure the safety and comfort of passengers.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Flying Instructor </h4> - teach students how to fly aircrafts through classroom,
                                    simulator and live flight instruction. They are required to have a pilot's license for
                                    the particular plane they provide instruction for as well as instructor certification.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Flying Officer </h4> – is a rank in the Indian Air Force.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Food and Beverage Manager </h4> - is a hospitality and tourism professional
                                    specialized in forecasting, planning and controlling the ordering of food and
                                    beverages for a hospitality property. He also manages the finances related to the
                                    whole process of purchasing food and drink for the hotel premises.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Food Scientist </h4> - studies the deterioration and processing of foods by using
                                    microbiology, engineering, and chemistry. They determine nutrient levels of food by
                                    analyzing its content. They look for new nutritional food sources and investigate
                                    avenues for making processed foods taste good, safe and healthy.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Food Technologist </h4> - are responsible for the safe and efficient development,
                                    modification and manufacture of food products and processes. Food technologists
                                    plan recipes and manage their production on a large scale.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Footwear Designer </h4> - are responsible for creating the layouts, models, and
                                    depictions of what will eventually emerge as footwear. They work for work for
                                    fashion houses, footwear brands supplying High Street stores, catalogue
                                    companies and specialist manufacturers of leisure and sportswear.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Forest Officer </h4> - is a person who protects and conserves the heritage of the forest
                                    and works towards preserving the forest resources.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Front Office Manager </h4> - is the senior person in an office environment and
                                    accountable for maintaining a professional work environment, staff supervision, and
                                    administrative support.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Furniture Designer </h4> - specialize in designing furniture for manufacturers. They
                                    design couches, chairs, tables, shelves, and decorative accents for furniture pieces.
                                    They have knowledge of design trends, competitive prices and the ability to meet
                                    specific needs of manufacturers and other clients.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Game Developer </h4> - is a professional who helps create a video game from
                                    concept to actual product.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Gastrologist </h4> – a specialist doctor who treats stomach ailments.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Graphic Designer </h4> - is a professional within the graphic design and graphic arts
                                    industry who assembles together images, typography, or motion graphics to create
                                    a piece of design. A graphic designer creates the graphics primarily for published,
                                    printed or electronic media, such as brochures (sometimes) and advertising.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Homeopathic Doctor </h4> – a person who practices homeopathy for healing
                                    ailments.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Horticulturist </h4> - is someone who uses scientific knowledge to cultivate and
                                    propagate plants.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Hospitality Manager </h4> - is a person whose profession is comprised of
                                    management and supervisory roles within the restaurant and hotel industries.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Hotel Decorator </h4> – a person who looks after the aesthetics and
                                    decorations of hotels and restaurants.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Housekeeping In-charge </h4> – a person in the hospitality industry who
                                    supervises work activities of cleaning personnel to ensure clean, orderly, and
                                    attractive rooms in hotels, hospitals, educational institutions, and similar
                                    establishments.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Human Resource Manager </h4> – is the person who plans, directs, and
                                    coordinates the administrative functions of an organization. He oversees the
                                    recruiting, interviewing, and hiring of new staff; consults with top executives on
                                    strategic planning; and serves as a link between an organization's management
                                    and its employees.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Income Tax Commissioner </h4> - is a senior rank in the Income Tax
                                    Department in India. Chief Commissioners are in charge of operations of the
                                    department within a region which is usually overlapping with the territory of a state.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Indian Administrative Service </h4> - is the administrative arm of the All India
                                    Services.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Indian Economic Service </h4> – The Indian Economic Service (IES) is an
                                    organized Group ‘A’ Central Service. Its main focus is to help the government in
                                    economic analysis and render advice for designing and formulating development
                                    policies, strengthening delivery systems, and monitoring and evaluating the public
                                    programs.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Indian Foreign Service </h4> - The Indian Foreign Service (IFS) is the
                                    administrative diplomatic civil service under Group A and Group B of the Central
                                    Civil Services of the executive branch of the Government of India.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Indian Information Service </h4> - is the administrative civil service under
                                    Group A and Group B of the Central Civil Services of the executive branch of the
                                    Government of India. Indian Information Service officers are the media managers of
                                    the Government of India.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Indian Police Service </h4> - The Indian Police Service is not a force itself but a
                                    service providing leaders and commanders to staff the state police and all-India
                                    Central Armed Police Forces. Its members are the senior officers of the police.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Industrial Designer </h4> - Industrial designers combine art, business, and
                                    engineering to develop the concepts for manufactured products.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Infantry Officer </h4> – an Officer inducted in the infantry Division of the Indian
                                    Army.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Interior Decorator </h4> – practices interior decoration which is the art of
                                    decorating a residential home or commercial business according to a client's
                                    personal preferences and style. It includes selecting color schemes, flooring
                                    materials, furniture, artwork, and accessories. It transforms an area into an
                                    aesthetically pleasing and budget-friendly design.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Investment Banker </h4> - is an individual who often works as part of a financial
                                    institution and is primarily concerned with raising capital for corporations,
                                    governments or other entities.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">IT Expert </h4> – is a specialist who applies technical expertise to the
                                    implementation, monitoring, or maintenance of IT systems.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Jewelry Designer </h4> - works with precious metals, diamonds, beads and
                                    gemstones to create wearable pieces of art.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Judge </h4> - is a person who presides over court proceedings and is in charge of
                                    conducting court trials.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Lab Technician </h4> - is a person who works in a laboratory performing
                                    procedures, maintaining equipment, assisting lead scientists with their work.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Librarian </h4> - is a person who works professionally in a library, providing
                                    access to information and sometimes social or technical programming to users.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Logistics Officer </h4> – An officer in the armed forces who looks after the
                                    logistics.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Magazine Reporter </h4> - is a person who collects, writes, or distributes news
                                    or other current information to the public through a magazine.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Major </h4> – a rank in the Indian Army.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Marine Engineer </h4> - is someone who designs, builds, tests and repairs
                                    ships, boats, underwater craft, offshore platforms, and drilling equipment.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Marketing Manager </h4> - is someone who manages the marketing of a
                                    business or product.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Mathematician </h4> - is someone who uses an extensive knowledge of
                                    mathematics in their work, typically to solve mathematical problems.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Mechanical Engineer </h4> – is someone who designs power-producing
                                    machines, such as electric generators, internal combustion engines, and steam and
                                    gas turbines, as well as power-using machines, such as refrigeration and
                                    air-conditioning systems.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Microbiologist </h4> - is a scientist who studies microscopic life forms and
                                    processes. This includes study of the growth, interactions and characteristics of
                                    microscopic organisms such as bacteria, algae, fungi, and some types of parasites
                                    and their vectors.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Mineral Specialist </h4> – a person with an extensive knowledge of various
                                    minerals and techniques of extraction.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Model </h4> - is a person with a role either to promote, display or advertise
                                    commercial products (notably fashion clothing in fashion shows), or to serve as a
                                    visual aid for people who are creating works of art or to pose for photography.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Museum Curator </h4> - is a content specialist charged with a museum's
                                    collections and involved with the interpretation of heritage material.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Music Teacher </h4> – a teacher who teaches music to the students at the
                                    school level.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Musician </h4> - is a person who plays a musical instrument or is musically
                                    talented.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Naval Warrior </h4> – a person inducted in the Indian Navy.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Neuro Surgeon </h4> - is a specialist doctor who specializes in the diagnosis and
                                    surgical treatment of disorders of the central and peripheral nervous system
                                    including congenital anomalies, trauma, tumors, vascular disorders, infections of
                                    the brain or spine, stroke, or degenerative diseases of the spine.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Newspaper Editor </h4> – is someone who has the daily responsibility of
                                    deciding which news stories are printed in the paper. Long before the paper is
                                    published, the editor assigns reporters to cover the news, checks for accuracy and
                                    fairness in the newspaper's articles and writes headlines.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">News Critic </h4> – is a person who writes a column for newspapers. He is
                                    professionally engaged in the analysis and interpretation of the news.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">News Reader </h4> - is a person who reads the news on the radio or on
                                    television.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Nuclear Engineer</h4>- is someone who researches and develops the
                                    processes, instruments, and systems used to derive benefits from nuclear energy
                                    and radiation.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Para Commando </h4> – a person commissioned in the Para Commando
                                    Regiment of the Indian Army.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Pathologist </h4> - is a physician in the medical field who studies the causes,
                                    nature, and effects of disease.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">PE Teacher </h4> – is a teacher who teaches Physical Education to students at
                                    school level.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Pediatrician </h4> – is a specialist doctor who specializes in treating infants,
                                    children and adolescents.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Personal Secretary </h4> – is a job title describing a person who assists a
                                    specific person with their daily business or personal tasks.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Petroleum Engineer </h4> – is an engineer concerned with the activities related
                                    to the production of hydrocarbons, which can be either crude oil or natural gas.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Pharmacist </h4> – is a healthcare professional who practices in pharmacy.
                                    Pharmacists are involved in all aspects of medicine delivery to patients. They will
                                    prepare and package medication that a doctor has prescribed and also sell
                                    medication over the counter.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Physician </h4> – A general doctor who is a professional who practices medicine,
                                    which is concerned with promoting, maintaining, or restoring health through the
                                    study, diagnosis, prognosis and treatment of disease, injury, and other physical and
                                    mental impairments.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Physiotherapist </h4> – is someone who helps people affected by injury, illness
                                    or disability through movement and exercise, manual therapy, education and
                                    advice.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Police Inspector </h4> – is a rank in the police force.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Political Leader </h4> - is a person active in party politics, or a person holding or
                                    seeking office in government.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Press Photographer </h4> – is someone who takes photographs to record
                                    news, current events and lifestyle stories. He aims to capture the best images to
                                    document an event, tell a story or convey a message and support the printed word.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Production Manager </h4> - is responsible for budgets, shooting schedules,
                                    and managing the day-to-day business side of a production.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Professor </h4> – is an academic rank at the university. A very senior person who
                                    is an expert in his field.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Psychiatrist </h4> - are medical doctors who are experts in mental health.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Psychologist </h4> - is someone who studies the mind and behavior.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Public Relations Officer </h4> - is the head of communications, public relations,
                                    and/or public affairs in an organization.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Radio Announcer </h4> – A person who makes announcement on radio.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Radio Jockey (RJ) </h4> - is a person who hosts a radio talk show where the RJ
                                    selects the music to be played, or topic of discussion, by interacting with the
                                    audience; the interaction is often via telephone, but may also be online, or via
                                    email.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Radio Journalist </h4> – is a journalist who gathers news for the radio.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Radiologist </h4> - is a medical doctor who specializes in diagnosing and treating
                                    disease and injury, using medical imaging techniques such as x-rays, computed
                                    tomography (CT), magnetic resonance imaging (MRI), nuclear medicine, positron
                                    emission tomography (PET), fusion imaging, and ultrasound.
                                <li class="search_title">
                                    <h4 class="gen_ins">Receptionist </h4> - is an employee taking an office or administrative support
                                    position. The work is usually performed in a waiting area such as a lobby or front
                                    office desk of an organization or business.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Religious Teacher </h4> – a teacher who teaches religious practices.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Research Guide </h4> – a highly qualified person who helps a student in his
                                    research through mentoring.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Researcher </h4> –is someone who conducts research, i.e., an organized and
                                    systematic investigation into a particular topic.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Reservation Manager </h4> - are front line professionals who facilitate the
                                    promotion, sales and bookings of a company's products and services specially in
                                    the hospitality industry.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Restaurant Manager </h4> – is responsible for leading and managing
                                    restaurants. He may be responsible for different tasks such as restaurant marketing
                                    strategies, recruiting and hiring restaurant staff, training, overseeing food quality,
                                    developing menus as well as greeting and serving restaurant guests.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Risk Management Analyst </h4> - develops specific portfolios for individuals,
                                    organizations, and businesses. These portfolios contain various risk assessments
                                    for life, health, and property.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Sales Executive </h4> - is responsible for planning, implementing, managing and
                                    overseeing company's overall sales strategy. He/She may be involved in selling
                                    products, goods and services to customers and clients.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">School Principal </h4> - is in charge of keeping the school working so that
                                    teachers, students, and support staff can function and complete their respective
                                    jobs.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">School Teacher </h4> – a person who teaches students in a school.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Script Writer </h4> - is a writer who practices the craft of screenwriting, writing
                                    screenplays on which mass media, such as films, television programs and video
                                    games, are based.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Sculptor </h4> - is a person who practices the art of sculpture as a profession.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Singer </h4> – is a person whose profession is singing.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Skin Specialist </h4> – is a doctor who specializes in skin care.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Soil Specialist </h4> – a person who is extremely knowledgeable about different
                                    types of soils, its nutrients and the kind of crops that can grow in each.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Soldier </h4> - is one who fights as part of the armed forces.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Solicitor </h4> - is a legal practitioner who traditionally deals with most of the legal
                                    matters in some jurisdictions.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Sound Technician</h4>- is someone who works in the broadcasting industry
                                    and is a skilled professional who makes films, TV shows and music videos sound
                                    amazing.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Speech Therapist </h4> – is someone who is educated in the study of human
                                    communication, its development, and its disorders. He can assess speech,
                                    language, cognitive-communication, and oral/feeding/swallowing skill which helps in
                                    identifying a problem and the best way to treat it.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Sports Coach </h4> – a person knowledgeable about a particular sport and
                                    teaches it to a team.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Sports Manager </h4> – is responsible for handling the business matters of
                                    athletes and sports teams, at both the collegiate and professional levels. A sports
                                    manager may be called upon to manage relations with the media and organize
                                    promotional events.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Stage Director </h4> - is a professional in the theatre field who oversees and
                                    orchestrates the mounting of a theatre production such as a play, opera,
                                    dance-drama, musical theatre performance etc. by unifying various endeavors and
                                    aspects of production.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Statistician </h4> - is a person who works with theoretical or applied statistics.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Stock Broker </h4> - is a professional who executes buy and sell orders for
                                    stocks and other securities on behalf of clients.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Submariner </h4> – a person who works on a submarine (Indian Navy).
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Surgeon </h4> – a specialist doctor who performs surgery.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Tax Lawyer </h4> – a lawyer who specialize in the complex and technical field of
                                    tax law.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Textile designer </h4> - is a person who manages the aesthetic aspect of textile
                                    production, including texture, color, and patterns. Basically, they're in charge of the
                                    designs printed, woven, knit, or sewn into textiles.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Tour Guide </h4> - is a person who provides assistance, information on cultural,
                                    historical and contemporary heritage to people on organized tours and individual
                                    clients at educational establishments, religious and historical sites, museums, and
                                    at venues of other significant interest.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Tour Manager </h4> – is responsible for organizing, planning and conducting
                                    long distance expeditions, travel, and tours for groups or individuals. They make
                                    sure that the travel runs smoothly from venue to venue without any issue.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Tour Secretary </h4> – a person who assists in the planning of a tour, it’s
                                    itinerary and liaises with the travel agent to ensure smooth completion of the tour.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Travel Agent </h4> - is a person whose job it is to arrange travel for end clients.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">TV Announcer </h4> – a person who makes announcements on TV.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">TV Journalist </h4> – a journalist who gathers news for television.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Urologist </h4> – a specialist doctor who treats diseases of the urinary tract and
                                    the male reproductive tract.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Veterinary Doctor </h4> - is a professional who practices veterinary medicine
                                    by treating diseases, disorders, and injuries in non-human animals.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Vice Chancellor </h4> - is the principal academic and administrative officer of the
                                    University.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Water Conservationist </h4> – is a person who is knowledgeable about the
                                    policies, strategies and activities to sustainably manage the natural resource of
                                    fresh water, to protect the hydrosphere, and to meet the current and future human
                                    demand.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Wholesaler </h4> – is a Person or firm that buys large quantity of goods from
                                    various producers or vendors, warehouses them, and resells to retailers.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Wildlife Conservationist </h4> - protects and manages various environments,
                                    such as forests and grasslands, to ensure that they're safe for the species and
                                    plants that live and grow there. This involves making sure habitats are free from
                                    diseases and harmful insects, as well as working to protect them from fire.
                                </li>
                                <li class="search_title">
                                    <h4 class="gen_ins">Zoologist </h4> – is a person who studies the animal kingdom, including the
                                    structure, embryology, evolution, classification, habits, and distribution of all
                                    animals, both living and extinct, and how they interact with their ecosystems.
                                </li>
                            </ul>
                        </div>
                    </div>
                    <div class="modal-footer">
                        <button type="button" class="btn btn-primary" data-dismiss="modal">Ok</button>
                    </div>
                </div>
            </div>
        </div>
        <!----Instruction END modal---->
        <script>
            jQuery('.element').on('click', function() {
                jQuery('#testmodal-1').modal('show');
            });
            jQuery(".load").on("click", function() {
                jQuery(".img_load").css({
                    'display': 'block'
                });
            });
            jQuery(".load1").on("click", function() {
                jQuery(".img_load1").css({
                    'display': 'block'
                });
            });
            jQuery(".close_load").on("click", function() {
                jQuery(".img_load1").css({
                    'display': 'none'
                });
                jQuery(".img_load").css({
                    'display': 'none'
                });
            });
            jQuery('#search').keyup(function() {

                // Search text
                var text = jQuery(this).val().toLowerCase();

                // Hide all content class element
                jQuery('.search_title').hide();

                // Search 
                jQuery('.search_title .gen_ins').each(function() {
                    if (jQuery(this).text().toLowerCase().indexOf("" + text + "") != -1) {
                        jQuery(this).closest('.search_title').show();
                    }
                });
            });
        </script>
        <input type="hidden" value="<?php echo sizeof($fetchAll); ?>" name="MaxQuestionNo" id="MaxQuestionNo" />
    </form>
<?php
} else {
    echo "PLEASE LOGIN TO VIEW THIS PAGE";
}
?>