- 87
- 22 374
Shelly Sachdev
เข้าร่วมเมื่อ 20 ก.ย. 2013
Tech related videos
วีดีโอ
Customizing Fonts in Illustrator - Part 2
มุมมอง 2114 วันที่ผ่านมา
Customizing Fonts in Illustrator - Part 2
Adding wooden texture to a chair in Blender
มุมมอง 712 หลายเดือนก่อน
Adding wooden texture to a chair in Blender
Modifying basic shapes and adding color
มุมมอง 303 หลายเดือนก่อน
Modifying basic shapes and adding color
Styling the Sticky Notes on sticky.html
มุมมอง 710 หลายเดือนก่อน
Styling the Sticky Notes on sticky.html
I am Zhihao I was here
I would like to learn Python for my IGCSEs do you reccommend any courses?
Yes, this course is really good www.udemy.com/share/101Wai3@YgJcGh32Jo8gjAkOTst6B4rE2HextOcG6lz9fPoUuCuKRb7qZH1iRY3fA_8xyf_U/
@@shellysachdev Thank You, so much!❤
awesome explanation
Thank you!
Thank you, it was really helpful, a video with the pseudocode would be really helpful too, thank you!
Task 1-3 (Pascal) {Prerelease 2022 - 0478-21 SeaView Pier} program Pier; var FNameList, LNameList: array [1..100] of string;//FName - first name;//LName - last name VolunteerList:array [1..100] of integer;//Volunteer:0-no,1-yes entrance gate,2 - yes gift shop,3-yes painting and decorating DateOfJoinList:array [1..100] of string[10];//Date of joining: ZZ/LL/AAAA FeePaydList:array [1..100] of char;//y/n - paid/unpaid fee 75$ NoOfMembers,i,option,listoption:integer; FName,LName,DateOfJoin:string; FeePayd:char; Volunteer:integer; //For task 3 SponsorFNameList,SponsorLNameList, SponsorMessageList:array[1..100] of string; SponsorFName, SponsorLName,SponsorMessage:string; NoOfSponsors:integer; begin //Initializare Date FNameList[1]:='Ion'; LNameList[1]:='Popa'; VolunteerList[1]:=0; DateOfJoinList[1]:='23/01/2021'; FeePaydList[1]:='y'; FNameList[2]:='Dana'; LNameList[2]:='Ionescu'; VolunteerList[2]:=1; DateOfJoinList[2]:='23/05/2022'; FeePaydList[2]:='y'; FNameList[3]:='Dorin'; LNameList[3]:='Popescu'; VolunteerList[3]:=2; DateOfJoinList[3]:='23/05/2022'; FeePaydList[3]:='n'; FNameList[4]:='Laura'; LNameList[4]:='Sava'; VolunteerList[4]:=3; DateOfJoinList[4]:='21/07/2022'; FeePaydList[4]:='n'; FNameList[5]:='Alina'; LNameList[5]:='Vladescu'; VolunteerList[5]:=2; DateOfJoinList[5]:='23/05/2021'; FeePaydList[5]:='y'; FNameList[6]:='Daniela'; LNameList[6]:='Ganea'; VolunteerList[6]:=3; DateOfJoinList[6]:='23/05/2021'; FeePaydList[6]:='n'; NoOfMembers:=6; //Task 1 NoOfSponsors:=0; //Task 3 repeat repeat writeln ('ENTER YOUR OPTION:'); writeln('1.Add member'); writeln('2.Show membership information'); //Task 2 writeln('3.Add sponsor');//Task 3 writeln('4.Exit'); readln(option); until (option in [1..4]); if option=1 then begin writeln('Enter new member first name:'); readln(FName); writeln('Enter new member last name:'); readln(LName); repeat writeln('Do you want to work as a volunteer?'); writeln('0 - No'); writeln('1 - Yes -the pier entrance gate'); writeln('2 - Yes -the gift shop'); writeln('3 - Yes -painting and decorating'); readln(Volunteer); if not(Volunteer in [0..3]) then writeln ('You must enter an option between 0 and 3!'); until (Volunteer in [0..3]); writeln('Is fee payd(y/n)?'); repeat readln(FeePayd); if (FeePayd<>'y') and (FeePayd<>'Y') and (FeePayd<>'n') and (FeePayd<>'N') then writeln('Press y or n!') until (FeePayd='y') or (FeePayd='Y') or (FeePayd='n') or (FeePayd='N'); writeln('Enter the date of joining:(DD/MM/YYYY):'); repeat readln(DateOfJoin); if Length(DateOfJoin)<>10 then writeln('Incorrect format date.Try again!'); until(Length(DateOfJoin)=10); //Insert date in arrays NoOfMembers:=NoOfMembers+1; FNameList[NoOfMembers]:=FName; LNameList[NoOfMembers]:=LName; VolunteerList[NoOfMembers]:=Volunteer; DateOfJoinList[NoOfMembers]:=DateOfJoin; FeePaydList[NoOfMembers]:= FeePayd; end; {Task 2} if option=2 then begin repeat writeln('Choose an option:'); writeln('1.Members who have chosen to work as volunteers'); writeln('2.Volunteers who would like to work at the pier entrance gate'); writeln('3.Volunteers who would like to work in the gift shop'); writeln('4.Volunteers who would like to help with painting and decorating tasks'); writeln('5.Members whose membership has expired (they have not re-joined this year)'); writeln('6.Members who have not yet paid their $75 fee'); read(listoption); case (listoption) of 1: begin writeln('Members who have chosen to work as volunteers:'); for i:=1 to NoOfMembers do if VolunteerList[i]>0 then writeln(FNameList[i],' ',LNameList[i]); end; 2: begin writeln('Volunteers who would like to work at the pier entrance gate:'); for i:=1 to NoOfMembers do if VolunteerList[i]=1 then writeln(FNameList[i],' ',LNameList[i]); end; 3: begin writeln('Volunteers who would like to work in the gift shop:'); for i:=1 to NoOfMembers do if VolunteerList[i]=2 then writeln(FNameList[i],' ',LNameList[i]); end; 4: begin writeln('Volunteers who would like to help with painting and decorating tasks:'); for i:=1 to NoOfMembers do if VolunteerList[i]=3 then writeln(FNameList[i],' ',LNameList[i]); end; 5: begin writeln('Members whose membership has expired (they have not re-joined this year):'); for i:=1 to NoOfMembers do if Copy(DateOfJoinList[i],7,4)<>'2022' then//Copy - extract substring from 7 to 10 writeln(FNameList[i],' ',LNameList[i]); end; 6: begin writeln('Members who have not yet paid their $75 fee:'); for i:=1 to NoOfMembers do if FeePaydList[i]='n' then writeln(FNameList[i],' ',LNameList[i]); end; end; until (listoption in [1..6]); end; if option=3 then begin writeln('Enter the first name of sponsor:'); readln(SponsorFName); writeln('Enter the last name of sponsor:'); readln(SponsorLName); writeln('Enter the message:'); readln(SponsorMessage); repeat writeln('You entered:'); writeln('First name: ',SponsorFName); writeln('Last name: ',SponsorLName); writeln('Message: ',SponsorMessage); writeln('Choose an option:'); writeln('1.Modify first name'); writeln('2.Modify last name'); writeln('3.Modify message'); writeln('4.Save data'); readln(listoption); case listoption of 1:begin writeln('Enter first name:'); readln(SponsorFName); end; 2:begin writeln('Enter last name:'); readln(SponsorLName); end; 3:begin writeln('Enter message:'); readln(SponsorMessage); end; end; until (listoption=4); SponsorFNameList[NoOfSponsors]:=SponsorFName; SponsorLNameList[NoOfSponsors]:=SponsorLName; SponsorMessageList[NoOfSponsors]:=SponsorMessage; end; until (option=4); end.
thanks aloootttttt
Code link: drive.google.com/file/d/19UhbPsudAmyAyIKh5KeLB0MwtR-_q_Ag/view
thanks for sharing the code shelly, but when i run the code there are no options for areas to volunteer, can you please check and share the one you used to create the video?
th-cam.com/video/cUYOYScNGY8/w-d-xo.html Please watch this. Code is in the comment section.
can you make a video explaining the code
can you share the code please??
drive.google.com/file/d/19UhbPsudAmyAyIKh5KeLB0MwtR-_q_Ag/view?usp=sharing
thank you so much, if you please can you share the Code
drive.google.com/file/d/19UhbPsudAmyAyIKh5KeLB0MwtR-_q_Ag/view?usp=sharing
Can you share the code?
Will do this week
@@shellysachdev have you shared it yet??
@@gilgahart5926 drive.google.com/file/d/19UhbPsudAmyAyIKh5KeLB0MwtR-_q_Ag/view?usp=sharing
drive.google.com/file/d/19UhbPsudAmyAyIKh5KeLB0MwtR-_q_Ag/view?usp=sharing
Where are the codes, Miss Shelly?????
Will send you. Can you share your email id?
drive.google.com/file/d/19UhbPsudAmyAyIKh5KeLB0MwtR-_q_Ag/view?usp=sharing
@@shellysachdev the codes don't match all the video program.
@@shellysachdev these codes don't match all the video program.
@@hodaabbas4988 I refined it to make the code shorter and cleaner
Thank you for your work. Would you please share the code to help us to follow you?
drive.google.com/file/d/19UhbPsudAmyAyIKh5KeLB0MwtR-_q_Ag/view?usp=sharing
Thank you for your efforts Nice vedio Please i want the code
drive.google.com/file/d/19UhbPsudAmyAyIKh5KeLB0MwtR-_q_Ag/view?usp=sharing
hey
hello
This person just saved my whole career.
Thanks!!!
Thank you !
It’s too helpful
Thank you this helped a lot
This save my exams i got 71 out of 80 thank you so much
Many Congratulations to you
My exam is tommorow thanks loads!!! the video helped a lot 👍👍
Thank you soo muchhh.. without you I’d be toast
Thank you sooo much😭😭you deserve a award for this💕💕
Good video, But Chikasa Evans is D BEST
Amazing
Thank you so much , it saved my day
This is a very Helpful video ! And the explantion is so good! Thank you so much :)
Thanks
ありがと
Thanks. This helped a lot!
The reason for the graph not working properly The excel sheet is in compatibilatity mode ...that is the file extension is not xlsx but some other file extension for example .csv(comma seperated values) the simple solution is go to file click save as and while saving,save as excel workbook .it will convert it to .xlsx so it will get out of compatibality mode. People use compatility mode while saving because it takes less space .rtf is for word
My exam is tommorow thanks loads!!! the video helped a lot 👍👍
3:34 What should I do if I want to find the mode, but want the name of the individual to be displayed instead of the number?
Can you be more specific? Didnt get your question.
Can u please help me with about the formula lookup
Thank you so much ma'am. This video helped a lot. The only problem is that this video does not include the vlookup and hlookup formulae. So, if you could help..
I have my exam in few hours, thanks a ton for this video.
Thankyou Mam
Thanks Anjali :)
Thanks Harshita...would love to train all of us...its fairly simple and super engaging..
Great Video Shelly! I know many of us can benefit a lot from this. It does feel simple they way your video puts it. Would please share how to map students to one note pages in order to share work with them. I believe this is the need of the hour.