File: //proc/thread-self/cwd/interest-test/test-report.php
<?php
/**
*
* Title : Test Report
* Developer : Rohit Kashyap
* Date : 22 Mar,2020
* Description : User test report and their sten score with highchart.
*/
include_once('../wp-config.php');
if (is_user_logged_in()) {
$user_id = $current_user->ID;
global $wpdb;
$PSY_USERS_DETAILS = $wpdb->prefix . PSY_USERS_DETAILS;
$PSY_TEST_GEN_TEST_TAKEN = $wpdb->prefix . PSY_TEST_GEN_TEST_TAKEN;
$PSY_INTEREST_TEST_TAKEN_QUSTION_ANSWER = $wpdb->prefix . PSY_INTEREST_TEST_TAKEN_QUSTION_ANSWER;
$PSY_INTEREST_TEST_OPTION_MEAN = $wpdb->prefix . PSY_INTEREST_TEST_OPTION_MEAN;
$PSY_ABILITY_CLASS = $wpdb->prefix . PSY_ABILITY_CLASS;
$testID = $_REQUEST['testId'];
$curDate = date('Y-m-d H:i:s');
if (is_numeric($testID) && strlen($testID) <= 5) {
$checkTest = $wpdb->get_var("SELECT count(test_taken_id) FROM $PSY_TEST_GEN_TEST_TAKEN where test_taken_id='$testID' and user_id='$user_id' and test_type='INT' and status='Y'");
if ($checkTest != '0') {
$userData = $wpdb->get_row("SELECT ud.first_name,ud.last_name,ud.date_of_birth,cl.class_name FROM $PSY_USERS_DETAILS as ud left join $PSY_ABILITY_CLASS as cl on cl.class_id=ud.current_education_level where user_id='$user_id'");
$studentName = $userData->first_name . ' ' . $userData->last_name;
$dob = date('d F, Y', strtotime($userData->date_of_birth));
$class = $userData->class_name;
$getTestDetails = $wpdb->get_row("SELECT tt.start_date,tt.class_id FROM $PSY_TEST_GEN_TEST_TAKEN as tt where tt.test_taken_id='$testID' and tt.status='Y'");
$class_id = $getTestDetails->class_id != '0' ? $getTestDetails->class_id : '9';
$dateAttempt = date('d F, Y', strtotime($getTestDetails->start_date));
$testDate = date('Y-m-d H:i:s', strtotime($getTestDetails->start_date));
$date1 = str_replace('-', '/', $testDate);
$tomorrow = date('Y-m-d H:i:s', strtotime($date1 . '+1 days'));
$getOption = $wpdb->get_var("SELECT GROUP_CONCAT(answer) FROM $PSY_INTEREST_TEST_TAKEN_QUSTION_ANSWER where test_taken_id='$testID'");
$answers = explode(",", $getOption);
$countValues = array_count_values($answers);
//sort array value in alphabetical order
ksort($countValues);
//remove value of k string in array which is define None
unset($countValues['k']);
unset($countValues['']);
//create data array to show in line graph
$data = array();
foreach ($countValues as $key => $val) {
// if ($key == '') {
// $key_find = 'k';
// } else {
// $key_find = $key;
// }
$getOptionMean = $wpdb->get_row("SELECT option_name, field_name FROM $PSY_INTEREST_TEST_OPTION_MEAN where status='1' and option_name='$key'");
$data[] = array("y" => $val, "name" => $getOptionMean->field_name);
}
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<title>Interest Test Report - Selfanalyse</title>
<link rel="stylesheet" href="/aptitude-test/css/bootstrap.min.css">
<link rel="icon" type="image/png" sizes="32x32" href="/wp-content/themes/psychometrics/images/favicon.png">
<script src="/aptitude-test/js/jquery.min.js"></script>
<script src="/aptitude-test/js/bootstrap.min.js"></script>
<script src="/aptitude-test/js/highcharts.js"></script>
<script src="/aptitude-test/js/exporting.js"></script>
</head>
<body>
<style>
body {
background: rgb(204, 204, 204);
}
.coverA4 {
margin: 0 auto;
margin-bottom: 20px;
box-shadow: 0 0 0.5cm rgba(0, 0, 0, 0.5);
width: 50%;
background-image: url('pdf-image/bg-cover.jpg');
background-repeat: no-repeat;
background-size: 100% 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: space-between;
flex-direction: column;
}
.cover-footer {
background-color: #fac237a6;
color: #000;
font-family: arial;
text-align: center;
padding: 16px 0;
font-weight: 700;
font-style: italic;
font-size: 20px;
width: 100%;
margin-bottom: 20px;
}
.pageA4 {
margin: 0 auto;
margin-bottom: 20px;
box-shadow: 0 0 0.5cm rgba(0, 0, 0, 0.5);
width: 50%;
height: 100%;
background-image: url('pdf-image/bg-page-cover.jpg');
display: flex;
justify-content: space-between;
flex-direction: column;
}
.footer {
background-color: #fac237a6;
color: #000;
font-family: arial;
text-align: center;
padding: 16px 20px;
font-weight: 700;
font-style: italic;
font-size: 16px;
margin-bottom: 20px;
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 20px;
}
.header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 20px;
}
@media print {
body,
.coverA4 {
margin: 0;
box-shadow: 0;
}
.pageA4 {
margin: 0;
box-shadow: 0;
}
}
.cover-logo img {
background: #fdf3de;
width: 70%;
padding: 30px;
margin: 0 auto -10em;
display: block;
}
.cover-title {
font-family: arial;
color: #fac237;
text-align: center;
font-size: 36px;
margin: 0;
padding-bottom: 10px;
}
.cover-subtitle {
font-family: arial;
color: #01516a;
text-align: center;
font-size: 30px;
margin: 0;
letter-spacing: 1.9px;
}
.cover-mid {
text-align: center;
padding: 20px 0;
}
.cover-brand {
background-color: #fdf3de;
padding: 20px;
width: 80px;
height: auto;
border-radius: 80px;
overflow: initial;
}
.cover-brand-title {
font-family: arial;
font-weight: 700;
margin: 0;
font-size: 14px;
padding: 10px 0;
}
.page-body {
padding: 0 20px;
}
.page-title {
font-family: arial;
color: #fac237;
font-size: 28px;
margin: 0;
}
.page-content {
font-family: arial;
line-height: 24px;
font-size: 14px;
margin-top: 10px;
}
.page-title-blue {
font-family: arial;
color: #01516a;
font-size: 20px;
margin: 0;
margin-top: 20px;
}
.VerbalAptitudeFlexBox {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 40px;
}
.VerbalAptitudeFlexBox .section-left-yellow {
border-radius: 0px 10px 10px 0px;
background: #fff2d7;
padding: 10px 20px;
margin-left: -20px;
margin-top: 10px;
margin-bottom: 10px;
font-size: 13px;
line-height: 20px;
font-weight: 500;
}
.section-right-yellow-image {
width: 150px;
object-fit: contain;
margin-left: 20px;
}
.section-left-blue {
border-radius: 10px 0px 0px 10px;
background: #cbdde1;
width: 70%;
padding: 10px 20px;
margin-right: -20px;
margin-top: 0;
margin-bottom: 10px;
font-size: 13px;
line-height: 20px;
font-weight: 500;
}
.section-right-blue-image {
width: 140px;
height: 140px;
object-fit: contain;
margin-left: 20px;
}
.section-title {
font-size: 16px;
color: #01516a;
margin: 0;
margin-top: 30px;
}
.CareerGuidanceProgramFlex {
display: flex;
justify-content: space-between;
/* margin-top: 10px; */
}
.CareerGuidanceProgramFlex .page-content-footerimg img {
width: 80%;
margin: 0 auto;
display: block;
}
.page-body .StenScoresRangeBox h2 {
font-family: arial;
color: #303030;
font-size: 28px;
margin: 0;
}
.page-body .StenScoresRangeBox .StenScoresRangeheaderflex {
display: flex;
align-items: center;
justify-content: space-between;
background: rgb(0 0 0 / 8%);
border-radius: 20px;
padding: 30px;
margin-top: 10px;
margin-bottom: 30px;
}
.page-body .StenScoresRangeBox .StenScoresRangeheaderflex .StenScoresheaderbox {
background: linear-gradient(270deg, #ffca69, rgb(255 245 226 / 61%));
border-left: 8px solid #ee9f10;
width: 22%;
padding: 10px 14px;
border-radius: 0 6px 6px 0;
}
.page-body .StenScoresRangeBox .StenScoresRangeheaderflex .StenScoresheaderbox h3 {
font-family: arial;
color: #303030;
font-size: 14px;
margin: 0;
}
.page-body .StenScoresRangeBox .StenScoresRangeheaderflex .StenScoresheaderbox h4 {
font-family: arial;
color: #dea133;
font-size: 12px;
margin: 0;
padding-top: 4px;
}
.page-body .StenScoresRangeBox .StenScoresRangeheaderflex span {
display: block;
line-height: normal;
font-size: 30px;
font-weight: 800;
color: #0ece0e;
}
.page-body .StenScoresRangeBox h3 {
font-family: arial;
color: #303030;
font-size: 18px;
margin: 0;
}
.page-body .StenScoresRangeBox table {
margin-top: 10px;
margin-bottom: 30px;
}
.page-body .StenScoresRangeBox table tr th {
background: #3f76b2;
color: #fff;
font-family: arial;
padding: 10px;
font-size: 14px;
}
.page-body .StenScoresRangeBox table tr td {
background: #e8e8e8;
color: #656565;
font-family: arial;
padding: 10px;
font-size: 13px;
font-weight: 700;
line-height: 18px;
}
.YourStenScoreBox {
padding: 20px;
background: rgb(0 0 0 / 8%);
border-radius: 4px;
margin: 20px auto;
}
.YourStenScoreBox h2 {
margin: 0;
text-align: center;
font-size: 18px;
font-family: arial;
}
.YourStenScoreBox h2 b {
font-weight: 700;
color: #446282;
}
.YourStenScoreBox p {
margin: 0;
font-family: arial;
font-size: 12px;
line-height: 20px;
background: rgb(9 88 146 / 22%);
padding: 10px 20px;
border-radius: 10px;
margin-top: 10px;
font-weight: 600;
color: #535353;
}
.download-btn {
background-color: #005067;
border: none;
padding: 8px 12px;
border-radius: 4px;
color: #fff;
position: absolute;
top: 2em;
right: 32em;
}
</style>
<!-- TOP TABLE SECTION -->
<?php
if ($curDate >= $tomorrow) {
?>
<!-- Cover -->
<div class="coverA4">
<div class="cover-logo">
<img src="/wp-content/themes/psychometrics/images/shine-logo.png">
</div>
<div class="cover-body">
<h2 class="cover-title">PSYCHOMETRIC TEST</h2>
<h2 class="cover-subtitle">REPORT</h2>
<form method="post" action="pdf.php">
<input type="hidden" name="test" value="<?php echo $testID; ?>" />
<button class="download-btn">Download</button>
</form>
<div class="cover-mid">
<img class="cover-brand" src="/wp-content/themes/psychometrics/images/per-assessment.png" width="75" height="75">
<h2 class="cover-brand-title">Interest Test Report</h2>
</div>
</div>
<div class="cover-footer">
<div>www.selfanalyse.com</div>
</div>
</div>
<!-- Page-1 -->
<div class="pageA4">
<div class="header">
<div class="headerlogo-left"><img src="/wp-content/themes/psychometrics/images/shine-logo.png" width="150" /></div>
<div class="headerlogo-right"><img src="pdf-image/second-logo.png" width="120" /></div>
</div>
<div class="page-body">
<h1 class="page-title">PERSONAL DETAILS</h1>
<h4 style="color:#005068;font-size: 18px;font-family: arial;border-left: 5px solid #005068;margin: 40px 0;font-weight: 500;"> Name : <span style="font-weight: bold;"> <?php echo $studentName; ?> </span></h4>
<h4 style="color:#005068;font-size: 18px;font-family: arial;border-left: 5px solid #005068;margin: 40px 0;font-weight: 500;"> Gender : <span style="font-weight: bold;"> <?php echo $gender; ?> </span></h4>
<h4 style="color:#005068;font-size: 18px;font-family: arial;border-left: 5px solid #005068;margin: 40px 0;font-weight: 500;"> Date of Birth : <span style="font-weight: bold;"> <?php echo $dob; ?> </span></h4>
<h4 style="color:#005068;font-size: 18px;font-family: arial;border-left: 5px solid #005068;margin: 40px 0;font-weight: 500;"> Current Level of Education : <span style="font-weight: bold;"> <?php echo $class; ?> </span></h4>
<h4 style="color:#005068;font-size: 18px;font-family: arial;border-left: 5px solid #005068;margin: 40px 0;font-weight: 500;"> Test Taken on : <span style="font-weight: bold;"> <?php echo $dateAttempt; ?> </span></h4>
<h4 style="color:#005068;font-size: 18px;font-family: arial;border-left: 5px solid #005068;margin: 40px 0;font-weight: 500;"> Email Address : <span style="font-weight: bold;"> <?php echo $email; ?> </span></h4>
<h4 style="color:#005068;font-size: 18px;font-family: arial;border-left: 5px solid #005068;margin: 40px 0;font-weight: 500;"> Phone No : <span style="font-weight: bold;"> <?php echo $mobileno; ?> </span></h4>
</div>
<div class="footer">
<div class="footer-text-left">www.selfanalyse.com</div>
<div class="footer-text-right">source : PsyCom Sevices, New Delhi</div>
</div>
</div>
<!-- Page-2 -->
<div class="pageA4">
<div class="header">
<div class="headerlogo-left"><img src="/wp-content/themes/psychometrics/images/shine-logo.png" width="150" /></div>
<div class="headerlogo-right"><img src="pdf-image/second-logo.png" width="120" /></div>
</div>
<div class="page-body">
<h1 class="page-title">ABOUT US</h1>
<div class="page-content">
We are a team of working professionals with diverse Work experience in the fields of teaching, training, communication and Career Guidance counselling, spanning over six decades. We wanted to do what we love and believe in. We strongly believe that every human being is intelligent. Intelligence is the ability to acquire knowledge and skills. Infact the reare multiple inteligence and everyone can find theirs. than based on societal pressures and preconceived notions. Knowing and understanding our true potential and capability, helps to find a profession which is just right for us. Most Importantly it helps us to find inner peace, which leads to happiness and helps us to accept ourselves. work towards the happiness of youth, society and nation at large
</div>
<h1 class="page-title-blue">Career Guidance Program</h1>
<div class="CareerGuidanceProgramFlex">
<div class="page-content">
Relevant information to the students at the right time of the development cycle helps them move from crystallization of career choices to specification and implementation. Informed career choices help them make smart and correct choices that lead to success in life.
<br>
The aim of our career guidance program is not only to provide suitable career choices but also to help an individual to increase selfawareness about his/her strength and weaknesses and provide opportunity for assessment of aptitude and interests. Relating one’s aptitude and interests to choice of subjects and streams can help one carve out his/ her career path.
</div>
<div class="page-content-footerimg"><img src="pdf-image/career-guidance.png" width="300"></div>
</div>
</div>
<div class="footer">
<div class="footer-text-left">www.selfanalyse.com</div>
<div class="footer-text-right">source : PsyCom Sevices, New Delhi</div>
</div>
</div>
<!-- Page-3 -->
<div class="pageA4">
<div class="header">
<div class="headerlogo-left"><img src="/wp-content/themes/psychometrics/images/shine-logo.png" width="150" /></div>
<div class="headerlogo-right"><img src="pdf-image/second-logo.png" width="120" /></div>
</div>
<div class="page-body">
<h1 class="page-title">ABOUT PSYCHOMETRIC TEST</h1>
<div class="page-content">
Psychometric testing are scientific instruments for measurement and study of individual differences, intelligences, aptitudes and interests. The tool used for measuring the aptitude/abilities of a student is a standardized test which measures and assesses the abilities along seven different domains. The abilities are quantified and analyzed. The scores are interpreted and represented graphically to present a picture of one's individual abilities.
<br><br>
The interest is assessed using an inventory that brings out the interest along ten different areas. This reveals the main interest areas of the individual which if pursued are likely to lead to success.
<br><br>
A good understanding of one's interest and aptitude and matching it up with credible and authentic career information can help student carve his/her own career path towards success.
</div>
<div class="CareerGuidanceProgramFlex">
<div class="page-content">
Psychometric test report should be viewed in totality. Co-relation between different areas of aptitude and interest is important to obtain a complete picture of the areas of strength and areas for improvement.
<br>
Aptitude test scores alone are not indicative of a candidate's success in a particular area. Practice, effort, skill development and interest along with aptitude will help a candidate actualize his/her true potential.
<br>
Correct interpretation of the test report is important to pave the correct pathway. The counselor plays an important role in helping the candidate increase his/her self -awareness and make informed choices of subjects, streams and courses.
<br>
<strong>This helps turn dreams to success stories!</strong>
</div>
<div class="page-content-footerimg"><img src="pdf-image/psychometric-tests.png" width="300"></div>
</div>
</div>
<div class="footer">
<div class="footer-text-left">www.selfanalyse.com</div>
<div class="footer-text-right">source : PsyCom Sevices, New Delhi</div>
</div>
</div>
<!-- Page-5 -->
<div class="pageA4">
<div class="header">
<div class="headerlogo-left"><img src="/wp-content/themes/psychometrics/images/shine-logo.png" width="150" /></div>
<div class="headerlogo-right"><img src="pdf-image/second-logo.png" width="120" /></div>
</div>
<div class="page-body">
<h4 class="page-title" style="font-size: 24px;margin: 0px;text-align: center;color: #0c4e8d;">Interest Test</h4>
<div class="page-content" style="margin: 20px auto;width: 70%;background: rgb(33 105 156 / 25%);padding: 20px;border-radius: 20px;text-align: center;font-size: 16px;color: #005482;font-weight: 600;">
The various fields of career can be divided into 10 broad areas. Different areas require different set of abilities to be able to do well and succeed. It is to be kept i nmind that if one is focused and passionate about a particular field then with enough hard work and training it can be achieved.
</div>
<div class="page-content-footerimg"><img src="pdf-image/InterestTestPeople.png" style="margin: 0 auto;width: 60%;display: block;"></div>
</div>
<div class="footer">
<div class="footer-text-left">www.selfanalyse.com</div>
<div class="footer-text-right">source : PsyCom Sevices, New Delhi</div>
</div>
</div>
<!-- Page-5 -->
<div class="pageA4">
<div class="header">
<div class="headerlogo-left"><img src="/wp-content/themes/psychometrics/images/shine-logo.png" width="150" /></div>
<div class="headerlogo-right"><img src="pdf-image/second-logo.png" width="120" /></div>
</div>
<div class="page-body">
<h4 class="page-title" style="font-size: 20px; margin: 0px;">DESCRIPTION OF INTEREST AREAS</h4>
<!-- 1 -->
<div class="page-content section-div">
<h4 class="section-title">Mass Media and Journalism (MMJ)</h4>
<div class="VerbalAptitudeFlexBox">
<div class="section-left-yellow">
Mass media can be categorized under two areas. A) Print media B) electronic media. Print media includes newspapers, journals, magazines, etc. Whereas electronic media includes tv and radio, film making, etc. Newspapers, tv, broadcasting and films are medium for mass communication which have revolutionized modern living. The various vocation included in this area are Radio, Tv, Journalist, Film producer, Film director, Radio and Tv announcer, Magazine reporter, Cable operator, Commentator, Newspaper editor, News reader critics, Script writer, Press photographer, Film reporter, Cameraman etc.
</div>
<div class="section-right-yellow">
<img class="section-right-yellow-image" src="pdf-image/mmj.png">
</div>
</div>
</div>
<!-- 2 -->
<div class="page-content section-div">
<h4 class="section-title" style="text-align: right;margin-bottom: 10px;">Artistic and Designing (AD)</h4>
<div class="VerbalAptitudeFlexBox">
<div class="section-right-blue">
<img class="section-right-blue-image" src="pdf-image/ad.png">
</div>
<div class="section-left-blue">
Performing artists are creative people. Adaptability, ability work with a team and discipline are essential characteristics for creative pursuits. An imagination to understand and express the emotion of the characters they are asked to portray is required. Design applied to any field requires creativity, artistic and technical and precision. The ability for sketching, communication of ideas through art form and visual imagination are pre requisites for designers. Design is divided into a number of areas - graphic design, textile design, industrial design, product design, furniture design, fashion, jewelry, interior, etc. Vocations included in this field are Dancer, Singer, Musician, Fashion, Furniture, Textile, Jewelry designer, Beautician, Model, Painter, Advertising directors, Exhibition designer, Footwear designer, Interior decorator, Graphic designer, Sculptor, Artist, Industrial designer
</div>
</div>
</div>
</div>
<div class="footer">
<div class="footer-text-left">www.selfanalyse.com</div>
<div class="footer-text-right">source : PsyCom Sevices, New Delhi</div>
</div>
</div>
<!-- Page-6 -->
<div class="pageA4">
<div class="header">
<div class="headerlogo-left"><img src="/wp-content/themes/psychometrics/images/shine-logo.png" width="150" /></div>
<div class="headerlogo-right"><img src="pdf-image/second-logo.png" width="120" /></div>
</div>
<div class="page-body">
<!-- 1 -->
<div class="page-content section-div">
<h4 class="section-title">Science and Technology (SCT)</h4>
<div class="VerbalAptitudeFlexBox">
<div class="section-left-yellow">
Individuals interested in this field of technology/engineering need to have a good background in mathematics, physics and chemistry. Scientific and numerical aptitude, mechanical aptitude, good mental ability, logical reasoning and problem solving skills are essential attributes for engineer and scientist. The area includes jobs like Electronic engineer, Electrical engineer, Chemical engineer, Computer engineer, Software programmer, Food technologist, Astronomist, Agriculture engineer, Architect, Microbiologist, Automobile engineer, Marine engineer, Environmental scientist, Aeronautical engineer, Biochemist, Petroleum engineer, Mathematician
</div>
<div class="section-right-yellow">
<img class="section-right-yellow-image" src="pdf-image/sct.png">
</div>
</div>
</div>
<!-- 2 -->
<div class="page-content">
<h4 class="section-title" style="text-align: right;margin-bottom: 10px;">Agriculture (AG)</h4>
<div class="VerbalAptitudeFlexBox">
<div class="section-right-blue">
<img class="section-right-blue-image" src="pdf-image/Agriculture.png">
</div>
<div class="section-left-blue">
Agriculture now includes in its fold farming, farm management, businesses and industries producing goods and services used for maintaining livestock and growing crops and industries selling raw and processed farm products to the consumers. Vocations included in this area are Poultry farmers, Soil specialist, Farmers, Gardeners, Plant breeder, Fishing scientist, Mineral specialist, Agro teacher, Rural manager, Food inspector, Agriculture scientist, Veterinary doctor, Horticulturalist, Dairy farmer, Fertilizer shopkeeper, Forest officer, Agriculture inspector, Fertilizer specialist, Agriculture engineer, Agriculture researcher.
</div>
</div>
</div>
<!-- 1 -->
<div class="page-content section-div">
<h4 class="section-title">Commerce and Management(CM)</h4>
<div class="VerbalAptitudeFlexBox">
<div class="section-left-yellow">
This cluster deals with chartered accountancy, cost and work accounts, financial management, banking, stock broking, insurance and company secretaryship, etc. Management in hotels and the various sectors of the hospitality industry, travel and tourism, healthcare facilities, education institutes, public utilities and service sector offer challenging opportunities in management. Jobs included in this area are Chartered accountant, Company secretary, Finance manager, Customer broker, Surveyor, Insurance agent, Transporter, Production manager, Personal secretary, Marketing manager, Stock broker, Sales executive, Cashier, Salesman, Bank manager
</div>
<div class="section-right-yellow">
<img class="section-right-yellow-image" src="pdf-image/cm.png">
</div>
</div>
</div>
</div>
<div class="footer">
<div class="footer-text-left">www.selfanalyse.com</div>
<div class="footer-text-right">source : PsyCom Sevices, New Delhi</div>
</div>
</div>
<!-- Page-7 -->
<div class="pageA4">
<div class="header">
<div class="headerlogo-left"><img src="/wp-content/themes/psychometrics/images/shine-logo.png" width="150" /></div>
<div class="headerlogo-right"><img src="pdf-image/second-logo.png" width="120" /></div>
</div>
<div class="page-body">
<!-- 2 -->
<div class="page-content">
<h4 class="section-title" style="text-align: right;margin-bottom: 10px;">Medicine (M)</h4>
<div class="VerbalAptitudeFlexBox">
<div class="section-right-blue">
<img class="section-right-blue-image" src="pdf-image/Medicine.png">
</div>
<div class="section-left-blue">
Patience, commitment for service to mankind, and tenacity are essential qualities needed by doctors. The major branches of this medical and health care sector are obstetrics and gynaecology, paediatrics, radiology, cardiology, psychiatry and many others. There are a number of non-clinical branches of study such as anatomy and physiology, biochemistry, microbiology. After completion of basic degree (MBBS) doctors have to choose their area of specialization. The various specialists are physician, Urologists, Eye specialist, Psychiatrist, Homeopathic Doctor, Cardiologist, Child specialist, Neuro-surgeon, Gynaecologist, Physio-Therapist etc. people interested in medical sciences and health care may also pursue homeopathy, Ayurveda and alternative medicine related areas.
</div>
</div>
</div>
<!-- 1 -->
<div class="page-content section-div">
<h4 class="section-title">Defence (D)</h4>
<div class="VerbalAptitudeFlexBox">
<div class="section-left-yellow">
This cluster includes information about armed forces - Army, Navy, Air force and the Paramilitary Forces. Entry to the different branches of the Armed Forces are open for students from humanities, commerce and science streams and they can enter the service at several points- after 10+ 2, graduation, post-graduation, receiving professional qualification. Promotion to a certain position is time bound. There are doctors, engineers, pilots, sailors, computer professionals, accountants, paramedics, dentists, educationists, legal experts, administrative and logistic officers in the armed forces. Women have also gained entry into all the three services of the armed forces.
</div>
<div class="section-right-yellow">
<img class="section-right-yellow-image" src="pdf-image/Defence.png">
</div>
</div>
</div>
<!-- 2 -->
</div>
<div class="footer">
<div class="footer-text-left">www.selfanalyse.com</div>
<div class="footer-text-right">source : PsyCom Sevices, New Delhi</div>
</div>
</div>
<!-- Page-8 -->
<div class="pageA4">
<div class="header">
<div class="headerlogo-left"><img src="/wp-content/themes/psychometrics/images/shine-logo.png" width="150" /></div>
<div class="headerlogo-right"><img src="pdf-image/second-logo.png" width="120" /></div>
</div>
<div class="page-body">
<!-- 2 -->
<div class="page-content section-div">
<h4 class="section-title" style="text-align: right;margin-bottom: 10px;">Tourism & Hospitality (TH)</h4>
<div class="VerbalAptitudeFlexBox">
<div class="section-right-blue">
<img class="section-right-blue-image" src="pdf-image/th.png">
</div>
<div class="section-left-blue">
The tourism sector offers entry into travel agencies, tour operation, guides, training, publicity and travel promotion, adventure sports, transport organization, human resource development and hospitality sector jobs. The minimum qualification for all the travel sector is graduation. The prime requirement for success in the field of travel and tourism is a genuine interest in travel. Various jobs are Banquet Manager, Hotel Decorator, Food and Beverage Manager, Receptionist, Chief Reservation Manager, Restaurant Manager, House keeper, Historian, Museum Curator, Tour Secretary, Travel Agent, Archeologist, P.R.O etc.
</div>
</div>
</div>
<!-- 1 -->
<div class="page-content section-div">
<h4 class="section-title">Law, Order and Administrative Services (LO)</h4>
<div class="VerbalAptitudeFlexBox">
<div class="section-left-yellow">
Civil services and law are careers which deal with governance and justice and give the country and its people stability and confidence. There are two types of entry into the legal profession. The 5 year law courses after class XII and an alternative entry is after graduation which is a three year course. People in civil services as well as in legal practice need to possess clear perception, sound judgement, an ability to carry ideological convictions and most importantly a genuine interest in people and fair dealing. The jobs included in this cluster are Tax Lawyer, Solicitor, Notary, D.M., I.F.S., I.A.S., Custom Officer, Civil Lawyer, Political Leader, Judge, S.D.M., S.S.P., Police Inspector, R.T.O, C.B.I. Officer, Income Tax Commissioner, Police Commissioner, Criminal Lawyer, District Judge.
</div>
<div class="section-right-yellow">
<img class="section-right-yellow-image" src="pdf-image/lo.png">
</div>
</div>
</div>
<!-- 2 -->
</div>
<div class="footer">
<div class="footer-text-left">www.selfanalyse.com</div>
<div class="footer-text-right">source : PsyCom Sevices, New Delhi</div>
</div>
</div>
<!-- Page-9 -->
<div class="pageA4">
<div class="header">
<div class="headerlogo-left"><img src="/wp-content/themes/psychometrics/images/shine-logo.png" width="150" /></div>
<div class="headerlogo-right"><img src="pdf-image/second-logo.png" width="120" /></div>
</div>
<div class="page-body">
<!-- 2 -->
<div class="page-content ">
<h4 class="section-title" style="text-align: right;margin-bottom: 10px;">Academia - Education (E)</h4>
<div class="VerbalAptitudeFlexBox">
<div class="section-right-blue">
<img class="section-right-blue-image" src="pdf-image/ae.png">
</div>
<div class="section-left-blue">
School and college teachers, special educators, language teachers, art/craft/music/dance/physical education instructors, librarians, educational psychologists, vocational trainers, educational administrators, planners and researchers are professionals working in the field of education. Beyond school education in the higher education sector are colleges, universities, deemed universities, professional institutions, private and autonomous colleges, etc. Therefore, teaching is one of the largest of all professions in India. This profession requires dedication, perseverance and patience. It is for people who aspire to play a role in molding society and can influence the thoughts, personality of children and youth.
</div>
</div>
</div>
<div>
<img class="section-right-blue-image" style="margin: 0;width: 100%;height: 250px;margin-bottom: -40px;" src="pdf-image/hardwaretools.png">
<p style="border-radius: 10px;background: rgb(255 240 212 / 78%);padding: 50px 50px 20px;font-size: 16px;line-height: 22px;color: #115392;font-weight: 700;text-align: center;font-family: arial;margin: 0;">Interest also plays a major role in our career. As weall know, we are willing to work hard at a job that we find interesting. We do not want to do any thing that we feel is boring. <br><br>
These tests measure and quantify an individual’s abilities, interest and personality traits to figure out the best options in terms of field of study and career.</p>
</div>
<!-- 2 -->
</div>
<div class="footer">
<div class="footer-text-left">www.selfanalyse.com</div>
<div class="footer-text-right">source : PsyCom Sevices, New Delhi</div>
</div>
</div>
<!-- Page-13 -->
<div class="pageA4">
<div class="header">
<div class="headerlogo-left"><img src="/wp-content/themes/psychometrics/images/shine-logo.png" width="150" /></div>
<div class="headerlogo-right"><img src="pdf-image/second-logo.png" width="120" /></div>
</div>
<div class="page-body">
<div class="page-content">
<!-- chart-box -->
<div class="chart-box">
<figure class="highcharts-figure">
<div id="container" style="height: 500px;"></div>
<div class="belowChartDiv" style="display: flex;align-items: center;justify-content: space-between;margin-top: 10px;">
<div class="chrtDiv1" style="font-weight: 700;color: #0a61bf;">Below Average Interest Area (0-4)</div>
<div class="chrtDiv2" style="font-weight: 700;color: #d83434;">Average Interest Area (5-15)</div>
<div class="chrtDiv3" style="font-weight: 700;color: #12ab12;">High Interest Area (16-20) </div>
</div>
<!-- <img id="image" alt=""> -->
</figure>
</div>
<!-- chart-box -->
<table style="width: 100%;margin-top: 50px;">
<tr>
<th style="text-align: left;background: #088e9b;color: #fff;font-family: arial;padding: 10px;font-size: 14px;">Interest Area</th>
<th style="width: 100px;text-align: left;background: #088e9b;color: #fff;font-family: arial;padding: 10px;font-size: 14px;">Score</th>
</tr>
<?php foreach ($data as $d) { ?>
<tr>
<td style="text-align: left;color: #088e9b;font-family: arial;padding: 10px;font-size: 13px;font-weight: 600;line-height: 18px;"><?= $d['name'] ?></td>
<td style="color: #088e9b;font-family: arial;padding: 10px;font-size: 13px;font-weight: 600;line-height: 18px;"><?= $d['y'] ?></td>
</tr>
<?php } ?>
</table>
<p style="margin: 0;border-top: 2px solid #cbcbcb;margin-top: 20px;padding-top: 20px;font-size: 14px;line-height: 20px;">
The above scores are indicative of student’s interest in 10 interest areas related to different professions.
The above scores should not be viewed as independent quantitative measures and should be mapped
with aptitude to find the way forward.</p>
</div>
</div>
<div class="footer">
<div class="footer-text-left">www.selfanalyse.com</div>
<div class="footer-text-right">source : PsyCom Sevices, New Delhi</div>
</div>
</div>
<?php
} else {
?>
<div class="row">
<div class="chart-header-box" style="background: #d8e6f1;text-align: center;">
<h6>Thank you for taking test. You will get your reports within next 24 hours. Keep checking for the updates. In case you wish to schedule an oline counselling session with one of the counsellors you may book one through book appointment.</h6>
<a href="/test">
<h3 class="back-home-btn"><i class="fas fa-angle-double-left"></i> Back to Home</h3>
</a>
</div>
</div>
<?php
}
?>
<script type="text/javascript">
function popOut(pageURL, pageTitle,
popupWinWidth, popupWinHeight) {
var left = (screen.width - popupWinWidth) / 2;
var top = (screen.height - popupWinHeight) / 4;
var myWindow = window.open(pageURL, pageTitle,
'resizable=yes, width=' + popupWinWidth +
', height=' + popupWinHeight + ', top=' +
top + ', left=' + left);
}
// Load the fonts
Highcharts.createElement('link', {
href: 'https://fonts.googleapis.com/css?family=Ubuntu:400,700',
rel: 'stylesheet',
type: 'text/css'
}, null, document.getElementsByTagName('head')[0]);
// Add the background image to the container
Highcharts.addEvent(Highcharts.Chart, 'afterGetContainer', function() {
// eslint-disable-next-line no-invalid-this
this.container.style.background =
'url(https://www.highcharts.com/samples/graphics/sand.png)';
});
Highcharts.theme = {
chart: {
backgroundColor: '#607D8B',
style: {
color: '#fff',
fontFamily: 'Ubuntu, sans-serif'
}
},
title: {
style: {
color: '#FFEB3B',
fontSize: '20px',
fontWeight: 'bold'
}
},
tooltip: {
borderWidth: 0
},
legend: {
itemStyle: {
color: '#FFEB3B',
}
},
xAxis: {
labels: {
style: {
color: '#FFEB3B',
fontSize: '14px',
fontWeight: 'bold',
}
}
},
yAxis: {
labels: {
style: {
color: '#FFEB3B',
fontWeight: 'bold',
}
},
max: 20,
min: 0,
tickInterval: 1
},
};
// Apply the theme
Highcharts.setOptions(Highcharts.theme);
var options = {
title: {
text: 'Interest Test'
},
xAxis: {
type: 'category',
title: {
text: ''
},
},
tooltip: {
pointFormat: 'Score: <b>{point.y}</b>'
},
series: [{
data: <?php echo json_encode($data); ?>,
name: 'Interest Area',
pointStart: 1,
color: '#FFEB3B',
}]
}
var chart = Highcharts.chart('container', options);
$("#share_line").click(function() {
var data = {
options: JSON.stringify(options),
width: 800,
height: 500,
filename: 'test.png',
type: 'image/png',
async: true
};
var exportUrl = 'https://export.highcharts.com/';
$.post(exportUrl, data, function(data) {
var imageUrl = exportUrl + data;
console.log(imageUrl)
var urlCreator = window.URL || window.webkitURL;
//document.querySelector("#image").src = imageUrl;
//window.location = "https://wa.me/?text=" + encodeURIComponent(imageUrl);
window.open('https://www.facebook.com/sharer/sharer.php?u=' + imageUrl,
'facebook-share-dialog',
'width=800,height=600'
);
return false;
// fetch(imageUrl).then(response => response.blob()).then(data => {
// console.log(data)
// });
});
});
</script>
<?php
$image_name = $testID . '-line.png';
$path = '/var/www/selfanalyse/interest-test/chart_images/' . $image_name;
if (file_exists($path)) {
echo "";
} else {
?>
<script>
var options_for_image = {
infile: {
"title": {
"text": 'Interest Test'
},
"xAxis": {
"type": 'category',
"title": {
"text": ''
},
},
"tooltip": {
"pointFormat": 'Score: <b>{point.y}</b>'
},
"plotOptions": {
"series": {
"dataLabels": {
"enabled": true,
"inside": true
}
}
},
"series": [{
"data": <?php echo json_encode($data); ?>,
"name": 'Interest Area',
"pointStart": 1,
}]
},
width: 650,
height: 900,
b64: true
}
//save image
var exportUrl = 'https://export.highcharts.com/';
$.ajax({
type: 'POST',
data: JSON.stringify(options_for_image),
url: exportUrl,
headers: {
'Content-Type': 'application/json'
},
success: function(data) {
saveImageforserver(data);
},
error: function(err) {}
});
function saveImageforserver(data_image) {
$.ajax({
type: "POST",
url: "/interest-test/save_image.php",
dataType: 'JSON',
data: {
"type": "bar",
"test_id": <?php echo $testID ?>,
"image": data_image
},
success: function(data) {
}
});
}
</script>
<?php } ?>
</body>
<div style="display: none;">
<?php
$path = '/var/www/selfanalyse/interest-test/pdf-html/pdf-' . $testID . '.html';
if (file_exists($path)) {
echo "";
} else {
ob_start();
include_once('interest-test-report-html.php');
$html = ob_get_contents();
file_put_contents('/var/www/selfanalyse/interest-test/pdf-html/pdf-' . $testID . '.html', $html);
ob_flush();
}
?>
</div>
<?php
} else {
echo "Error : No test id found.";
}
} else {
echo "Error : Invalid Test Id.";
}
} else {
echo "Error : Please login to view report.";
}
?>