PoshCode Archive  Artifact [e9de63717d]

Artifact e9de63717dbde018d12ad3d6f3d9e922f9909d0037dc256a63274e5419f203b2:

  • File Simple-Test-with-Speech.ps1 — part of check-in [e4f2d8c938] at 2018-06-10 14:05:01 on branch trunk — This is a fun script to take test with the help of input boxes. (user: Naveen Sharma size: 2634)

# encoding: ascii
# api: powershell
# title: Simple Test with Speech
# description: This is a fun script to take test with the help of input boxes.
# version: 0.1
# type: script
# author: Naveen Sharma
# license: CC0
# x-poshcode-id: 5967
# x-archived: 2016-05-17T12:47:31
# x-published: 2016-08-06T13:14:00
#
# And the best part is  it ueses the system Speech to speak the 
# questions as well
#
# ####################################################################
# This is a fun script to take test with the help of input boxes.
# And the best part is  it ueses the system Speech to speak the 
# questions as well
#
# Author  Naveen Sharma 
# Date  Aug 06, 2015 
######################################################################
[Reflection.Assembly]::LoadWithPartialName('System.Speech') | Out-Null
$S = New-Object System.Speech.Synthesis.SpeechSynthesizer
$IQq= gc .\IQQ.txt
$i=1
$correct=0
$Incorrect=0
$per=0
$S.SpeakAsync("HELLO THERE, HOW ARE YOU Today, I AM GOING TO TAKE YOUR TEST. ")
$S.RATE= 2
function CustomInputBox([string] $title, [string] $message, [string] $defaultText) 
{
   [void][System.Reflection.Assembly]::LoadWithPartialName('Microsoft.VisualBasic')
   $s.SpeakAsync($message) 
   $_userInput = [Microsoft.VisualBasic.Interaction]::InputBox($message, $title)
   return $_userInput
}

$name = CustomInputBox "User Name" "Please enter your name." ""
$Age = CustomInputBox "Age" "Please enter Age." ""

foreach($t in $IQq)
{
   $Question=$t.Split("*")
   $Ans = CustomInputBox "Question No $i" $Question[0] ""
   if( $Ans -eq $Question[1]){$correct++} else {$incorrect++}
   $i++
}

if($correct -ne 0) {$per=$correct*100/($correct+$incorrect)}
$S.SpeakAsync(" $name Your Result $per %")

########################## END OF SCRIPT ########################
#################################################################
################### Input File ##################################
<#
Which one of the five is least like the other four?  A Dog B Mouse C Lion D Snake E Elephant*d
Which number should come next in the series?  1 - 1 - 2 - 3 - 5 - 8 - 13  A 8 B 13 C 21 D 26 E 31*C
Which one of the five choices makes the best comparison? PEACH is to HCAEP as 46251 is to:    A 25641  B 26451  C 12654  D 51462  E 15264*e
Mary, who is sixteen years old, is four times as old as her brother. How old will Mary be when she is twice as old as her brother? A 20  B 24  C 25  D 26  E 28*B
Which one of the numbers does not belong in the following series? 2 - 3 - 6 - 7 - 8 - 14 - 15 - 30   A THREE  B SEVEN  C EIGHT  D FIFTEEN  E THIRTY*C
#>